/* ===================================================================
   SHRUTI VIDHYA MUSIC ACADEMY — Redesigned Stylesheet
   Coffee Brown / Maroon + Cream Light Theme
   =================================================================== */

:root {
    --primary: #752121;
    --primary-light: #9B4444;
    --primary-dark: #5A1818;
    --secondary: #8B5E3C;
    --secondary-light: #B07D5A;
    --secondary-dark: #6B4830;
    --accent: #C9956B;
    --accent-light: #E0B992;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --cream-medium: #FAF3EA;
    --gold: #C4943A;
    --gold-light: #E8C96E;
    --bg-dark: #2A1810;
    --bg-hero: #1C0F0A;
    --text-dark: #2D1B12;
    --text-muted: #7A6B60;
    --border-brown: #D4B896;
    --border-light: #E8D5C0;
    --gradient-hero: linear-gradient(135deg, #1C0F0A 0%, #3D1E14 40%, #2A1810 100%);
    --gradient-brown: linear-gradient(135deg, #752121, #8B5E3C);
    --gradient-warm: linear-gradient(135deg, #C9956B, #C4943A);
    --shadow-sm: 0 2px 8px rgba(44,27,18,0.06);
    --shadow-md: 0 8px 30px rgba(44,27,18,0.10);
    --shadow-lg: 0 20px 60px rgba(44,27,18,0.14);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(117,33,33,0.08), rgba(139,94,60,0.08));
    color: var(--primary); font-weight: 600; font-size: 0.85rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 8px 20px; border-radius: 50px; margin-bottom: 16px;
    border: 1px solid rgba(117,33,33,0.1);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--text-dark);
    margin-bottom: 16px; line-height: 1.2;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.highlight { color: var(--secondary); }
.highlight-brown { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px; font-weight: 600;
    font-size: 1rem; text-decoration: none; border: none;
    cursor: pointer; transition: all 0.3s ease;
}
.btn-primary { background: var(--gradient-brown); color: #fff; box-shadow: 0 4px 20px rgba(117,33,33,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(117,33,33,0.4); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 0; transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,248,240,0.97); backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(44,27,18,0.08); padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

/* LOGO */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: #fff; letter-spacing: 2px;
}
.navbar.scrolled .nav-logo-text,
.navbar-light .nav-logo-text { color: var(--primary); }
.nav-logo-img { height: 44px; width: auto; }
.nav-logo .logo-dark { display: none; }
.nav-logo .logo-light { display: block; }
.navbar.scrolled .nav-logo .logo-dark,
.navbar-light .nav-logo .logo-dark { display: block; }
.navbar.scrolled .nav-logo .logo-light,
.navbar-light .nav-logo .logo-light { display: none; }
.footer .nav-logo .logo-dark { display: none; }
.footer .nav-logo .logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    text-decoration: none; color: rgba(255,255,255,0.85);
    font-weight: 500; font-size: 0.93rem; padding: 8px 14px;
    border-radius: 8px; transition: all 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar.scrolled .nav-links a:hover { background: rgba(117,33,33,0.06); color: var(--primary); }
.nav-links a.active { background: rgba(255,255,255,0.2); color: #fff; }
.navbar.scrolled .nav-links a.active { background: rgba(117,33,33,0.08); color: var(--primary); }
.nav-cta { background: var(--gradient-brown) !important; color: #fff !important; border-radius: 50px !important; padding: 10px 22px !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #fff; cursor: pointer; }
.navbar.scrolled .mobile-toggle { color: var(--text-dark); }

/* Light navbar (inner pages) */
.navbar-light { background: rgba(255,248,240,0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(44,27,18,0.08); padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.navbar-light .nav-links a { color: var(--text-dark); }
.navbar-light .nav-links a:hover { background: rgba(117,33,33,0.06); color: var(--primary); }
.navbar-light .nav-links a.active { background: rgba(117,33,33,0.08); color: var(--primary); }
.navbar-light .mobile-toggle { color: var(--text-dark); }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    background: var(--gradient-hero); padding: 140px 0 80px;
    text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,148,58,0.1) 0%, transparent 70%);
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700; color: #fff; margin-bottom: 12px; position: relative;
}
.page-header p { font-size: 1.15rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; position: relative; }
.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--accent-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== HERO (Landing Page) ===== */
.hero {
    min-height: 100vh; background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,148,58,0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(117,33,33,0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}
.hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 800px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 18px; border-radius: 50px; color: var(--gold-light);
    font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 24px;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero Logo Animation Container */
.hero-logo-container {
    position: relative; width: 240px; height: 240px;
    margin: 0 auto 40px; display: flex; align-items: center; justify-content: center;
}
.hero-logo-circle {
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(196,148,58,0.25);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(196,148,58,0.1), inset 0 0 40px rgba(196,148,58,0.05);
}
.hero-logo-circle img { height: 80px; width: auto; }
.hero-logo-circle::before {
    content: ''; position: absolute; inset: -20px; border-radius: 50%;
    border: 1px dashed rgba(196,148,58,0.15);
    animation: spin 30s linear infinite; pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Floating Music Notes */
.music-notes-container {
    position: absolute; inset: -60px; pointer-events: none; z-index: 1; overflow: visible;
}
.music-note {
    position: absolute; font-size: 1.4rem; opacity: 0;
    color: var(--gold-light); animation: notefall linear infinite;
}
@keyframes notefall {
    0% { transform: translateY(-80px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    80% { opacity: 0.5; }
    100% { transform: translateY(320px) rotate(360deg); opacity: 0; }
}
.music-note:nth-child(1) { left: 10%; animation-duration: 4s; animation-delay: 0s; font-size: 1.2rem; }
.music-note:nth-child(2) { left: 25%; animation-duration: 3.5s; animation-delay: 0.8s; font-size: 1.6rem; }
.music-note:nth-child(3) { left: 45%; animation-duration: 4.2s; animation-delay: 1.5s; font-size: 1rem; }
.music-note:nth-child(4) { left: 65%; animation-duration: 3.8s; animation-delay: 0.3s; font-size: 1.4rem; }
.music-note:nth-child(5) { left: 80%; animation-duration: 4.5s; animation-delay: 2s; font-size: 1.1rem; }
.music-note:nth-child(6) { left: 15%; animation-duration: 3.2s; animation-delay: 2.5s; font-size: 1.3rem; }
.music-note:nth-child(7) { left: 55%; animation-duration: 4s; animation-delay: 1s; font-size: 1.5rem; }
.music-note:nth-child(8) { left: 90%; animation-duration: 3.6s; animation-delay: 1.8s; font-size: 1.2rem; }
.music-note:nth-child(9) { left: 35%; animation-duration: 4.3s; animation-delay: 3s; font-size: 1rem; }
.music-note:nth-child(10) { left: 75%; animation-duration: 3.4s; animation-delay: 0.5s; font-size: 1.6rem; }

.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); justify-content: center; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; }
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.about-image { position: relative; border-radius: var(--radius); overflow: visible; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 2px solid var(--border-brown); }
.about-image-placeholder {
    width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--cream-dark), var(--cream-medium));
    border-radius: var(--radius); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px; font-size: 4rem;
    border: 2px solid var(--border-brown);
}
.about-image-placeholder span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.about-accent-card {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gradient-brown); color: #fff;
    padding: 20px 28px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); z-index: 2;
}
.about-accent-card .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; }
.about-accent-card .label { font-size: 0.85rem; opacity: 0.9; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 16px; color: var(--primary); }
.about-text p { color: var(--text-muted); margin-bottom: 24px; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feature {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: var(--cream-dark); border-radius: var(--radius-sm); font-weight: 500; font-size: 0.95rem;
    border: 1px solid var(--border-light);
}
.about-feature i { color: var(--primary); font-size: 1.1rem; }

/* Guru Info */
.guru-section { margin-top: 32px; padding: 24px; background: var(--cream-dark); border-radius: var(--radius); border: 1px solid var(--border-light); }
.guru-section h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 12px; }
.guru-section p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* ===== COURSES ===== */
.courses-section { background: #fff; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.course-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border-light); transition: all 0.4s ease; }
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-brown); }
.course-card-header { height: 8px; }
.course-card:nth-child(1) .course-card-header { background: var(--gradient-brown); }
.course-card:nth-child(2) .course-card-header { background: var(--gradient-warm); }
.course-card:nth-child(3) .course-card-header { background: linear-gradient(135deg, #8B5E3C, #6B4830); }
.course-card:nth-child(4) .course-card-header { background: linear-gradient(135deg, #752121, #9B4444); }
.course-card:nth-child(5) .course-card-header { background: linear-gradient(135deg, #C4943A, #8B5E3C); }
.course-card:nth-child(6) .course-card-header { background: linear-gradient(135deg, #5A1818, #752121); }
.course-card-body { padding: 28px; }
.course-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
}
.course-card:nth-child(1) .course-icon { background: rgba(117,33,33,0.08); color: var(--primary); }
.course-card:nth-child(2) .course-icon { background: rgba(201,149,107,0.15); color: var(--secondary-dark); }
.course-card:nth-child(3) .course-icon { background: rgba(139,94,60,0.1); color: var(--secondary); }
.course-card:nth-child(4) .course-icon { background: rgba(117,33,33,0.08); color: var(--primary); }
.course-card:nth-child(5) .course-icon { background: rgba(196,148,58,0.12); color: var(--gold); }
.course-card:nth-child(6) .course-icon { background: rgba(90,24,24,0.08); color: var(--primary-dark); }
.course-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; }
.course-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.course-tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; background: rgba(117,33,33,0.06); color: var(--primary); border: 1px solid rgba(117,33,33,0.1); }

/* ===== PRACTICE LESSONS ===== */
.lessons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.lesson-folder-card {
    background: #fff; border-radius: var(--radius); padding: 28px 24px;
    border: 2px solid var(--border-light); display: flex; align-items: center;
    gap: 18px; text-decoration: none; color: var(--text-dark);
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.lesson-folder-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-brown); opacity: 0; transition: opacity 0.3s; }
.lesson-folder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-brown); }
.lesson-folder-card:hover::before { opacity: 1; }
.lesson-folder-icon {
    width: 56px; height: 56px; min-width: 56px; border-radius: 14px;
    background: rgba(196,148,58,0.12); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; transition: all 0.3s;
}
.lesson-folder-card:hover .lesson-folder-icon { background: var(--gradient-brown); color: #fff; }
.lesson-folder-text h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.lesson-folder-text p { font-size: 0.85rem; color: var(--text-muted); }
.lesson-folder-arrow { margin-left: auto; color: var(--text-muted); font-size: 0.9rem; transition: all 0.3s; }
.lesson-folder-card:hover .lesson-folder-arrow { color: var(--primary); transform: translateX(4px); }
.lesson-info-banner {
    background: linear-gradient(135deg, var(--cream-dark), var(--cream-medium)); border-radius: var(--radius);
    padding: 32px 36px; display: flex; align-items: center; gap: 24px;
    margin-top: 48px; border: 2px solid var(--border-light);
}
.lesson-info-banner i { font-size: 2.5rem; color: var(--primary); }
.lesson-info-banner h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 4px; }
.lesson-info-banner p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; border: 2px solid var(--border-light); }
.gallery-item:hover { border-color: var(--border-brown); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    font-size: 2.5rem; transition: transform 0.4s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-placeholder span { font-size: 0.85rem; font-weight: 500; }
.gallery-item:nth-child(odd) .gallery-placeholder { background: linear-gradient(135deg, var(--cream-dark), var(--cream-medium)); color: var(--primary); }
.gallery-item:nth-child(even) .gallery-placeholder { background: linear-gradient(135deg, #F5EDE3, #E8D5C0); color: var(--secondary-dark); }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,27,18,0.7), transparent 60%);
    opacity: 0; transition: opacity 0.3s; display: flex;
    align-items: flex-end; padding: 20px; color: #fff; font-weight: 500;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.event-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border-light); transition: all 0.4s ease; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-brown); }
.event-date-strip { padding: 16px 24px; display: flex; align-items: center; gap: 16px; }
.event-card:nth-child(1) .event-date-strip { background: linear-gradient(135deg, rgba(117,33,33,0.06), rgba(117,33,33,0.03)); }
.event-card:nth-child(2) .event-date-strip { background: linear-gradient(135deg, rgba(139,94,60,0.08), rgba(139,94,60,0.03)); }
.event-card:nth-child(3) .event-date-strip { background: linear-gradient(135deg, rgba(196,148,58,0.1), rgba(196,148,58,0.04)); }
.event-date-box { text-align: center; min-width: 54px; }
.event-date-box .day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; color: var(--primary); }
.event-date-box .month { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary); }
.event-date-info h4 { font-size: 1rem; color: var(--text-dark); }
.event-date-info p { font-size: 0.85rem; color: var(--text-muted); }
.event-card-body { padding: 20px 24px; }
.event-card-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 2px solid var(--border-light); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border: 2px solid var(--border-light);
    border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
    font-size: 1rem; transition: border-color 0.3s; background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-light); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    display: flex; gap: 16px; align-items: flex-start; padding: 24px;
    background: #fff; border-radius: var(--radius); border: 2px solid var(--border-light); transition: all 0.3s;
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-brown); }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-info-card:nth-child(1) .contact-info-icon { background: rgba(117,33,33,0.08); color: var(--primary); }
.contact-info-card:nth-child(2) .contact-info-icon { background: rgba(139,94,60,0.1); color: var(--secondary); }
.contact-info-card:nth-child(3) .contact-info-icon { background: rgba(196,148,58,0.12); color: var(--gold); }
.contact-info-card:nth-child(4) .contact-info-icon { background: rgba(117,33,33,0.06); color: var(--primary-light); }
.contact-info-text h4 { font-weight: 600; margin-bottom: 4px; }
.contact-info-text p { color: var(--text-muted); font-size: 0.95rem; }
.contact-info-text a { color: var(--primary); text-decoration: none; }
.contact-info-text a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 24px; border-top: 3px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.06); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.3); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    .about-grid { grid-template-columns: 1fr; }
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: var(--cream);
        padding: 20px; box-shadow: var(--shadow-md); border-radius: 0 0 var(--radius) var(--radius);
        border: 1px solid var(--border-light); border-top: none;
    }
    .nav-links.active a { color: var(--text-dark) !important; }
    .mobile-toggle { display: block; }
    .courses-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .about-features { grid-template-columns: 1fr; }
    .lessons-grid { grid-template-columns: 1fr; }
    .page-header { padding: 120px 0 60px; }
    .lesson-info-banner { flex-direction: column; text-align: center; }
    .hero-logo-container { width: 200px; height: 200px; }
    .hero-logo-circle { width: 160px; height: 160px; }
    .hero-logo-circle img { height: 60px; }
}
