/* teacher_curriculum.css */

/* Page Hero Override */
.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--ivory);
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
}

/* Curriculum Section */
.curriculum-section {
    padding: 80px 0;
    background: #fff;
}

.curriculum-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.curriculum-intro h2 {
    color: var(--deep-blue);
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.curriculum-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.curriculum-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.curriculum-card:hover {
    transform: translateY(-8px);
}

.card-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.card-header.art {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.card-header.dance {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.card-header.music {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Merriweather', serif;
}

.card-header .icon {
    font-size: 2rem;
    opacity: 0.8;
}

.card-body {
    padding: 25px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.card-body li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.card-body li:last-child {
    border-bottom: none;
}

.card-body .level {
    display: block;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 5px;
}

.card-body .desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.card-body .link {
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.card-body .link:hover {
    text-decoration: underline;
}

.btn-full-curriculum {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #f8f9fa;
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.btn-full-curriculum:hover {
    background: var(--deep-blue);
    color: #fff;
    border-color: var(--deep-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}