/*
Theme Name: We Rock LMS Theme
Theme URI: http://werocklanguages.com
Author: Régis-Marie Y.
Author URI: http://werocklanguages.com
Description: A custom LMS theme built from scratch.
Version: 1.0
*/

/* Reset and base styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    color: #0066cc;
    text-decoration: none;
}

/* Header */
.site-header {
    background-color: #f8f8f8;
    padding: 1rem 0;
}

/* Main content area */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Course styles */
.course-meta {
    background-color: #f0f0f0;
    padding: 1rem;
    margin-bottom: 1rem;
}

.lesson-list {
    list-style-type: none;
    padding: 0;
}

.lesson-list li {
    margin-bottom: 0.5rem;
}

.enroll-button {
    background-color: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

/* Lesson styles */
.lesson-video {
    margin-bottom: 1rem;
}

.lesson-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-area {
        padding: 1rem;
    }
}

.course-preview {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}