/* Course Page Specific Styles */

.course-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/botox-fillers.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 80px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.course-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-meta-large {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 20px;
}

.meta-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 15px;
}

.meta-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--secondary);
    font-weight: 400;
}

.meta-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.course-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-overview {
    padding: 80px 0;
}

.course-section {
    margin-bottom: 60px;
}

.course-section h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.course-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.learning-module {
    background-color: var(--secondary);
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    margin-bottom: 30px;
}

.learning-module h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.learning-module ul {
    padding-left: 20px;
}

.learning-module li {
    margin-bottom: 10px;
}

.schedule {
    margin-top: 30px;
}

.schedule-day {
    margin-bottom: 40px;
}

.schedule-day h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.schedule-item {
    display: flex;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.time {
    min-width: 120px;
    font-weight: 600;
    color: var(--primary);
}

.schedule-item .content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.schedule-item .content p {
    margin-bottom: 0;
    color: var(--gray);
}

.course-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.booking-widget {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.upcoming-dates {
    margin-bottom: 25px;
}

.upcoming-dates h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.upcoming-dates ul {
    list-style: none;
    padding: 0;
}

.upcoming-dates li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.status {
    font-weight: 600;
    font-size: 0.9rem;
}

.status.available {
    color: #27ae60;
}

.status.full {
    color: #e74c3c;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: var(--accent);
    margin-right: 10px;
}

.related-courses {
    background-color: var(--secondary);
    padding: 80px 0;
}

.related-courses h2 {
    margin-bottom: 50px;
    color: var(--primary);
}

.related-courses h2:after {
    background-color: var(--accent);
}

.related-courses .course-card {
    height: 100%;
}

@media (max-width: 992px) {
    .course-header {
        padding: 140px 0 60px;
        text-align: center;
    }
    
    .course-meta-large {
        justify-content: center;
    }
    
    .course-image {
        margin-top: 40px;
    }
    
    .course-sidebar {
        position: static;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .course-header h1 {
        font-size: 2.2rem;
    }
    
    .schedule-item {
        flex-direction: column;
    }
    
    .time {
        margin-bottom: 10px;
    }
} 