/* =============================================
   SHIVARANJINI SCHOOL OF MUSIC — Main Styles
   ============================================= */

:root {
  --saffron: #E8650A;
  --deep-saffron: #C4520A;
  --gold: #C9963F;
  --gold-light: #F0C060;
  --maroon: #7A1C1C;
  --cream: #FFF8EE;
  --cream-dark: #F5ECD6;
  --dark: #1A0A00;
  --text: #3A2010;
  --text-light: #7A5C3A;
  --white: #FFFFFF;
  --youtube-red: #FF0000;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(26, 10, 0, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 38px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(160deg, #2C0A0A 0%, #7A1C00 40%, #1A0800 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(232,101,10,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,150,63,0.12) 0%, transparent 50%);
}

.hero::after {
  content: '𝄞';
  position: absolute;
  font-size: 40vw;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-subtitle strong {
  color: var(--gold-light);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}

.btn-primary:hover {
  background: var(--deep-saffron);
  border-color: var(--deep-saffron);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,101,10,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-youtube {
  background: var(--youtube-red);
  color: var(--white);
  border-color: var(--youtube-red);
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid var(--youtube-red);
  margin-top: 12px;
}

.btn-youtube:hover {
  background: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,0.35);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-ornament {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 6px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--maroon);
  margin-bottom: 12px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  margin: 14px auto;
  border-radius: 2px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text p em {
  color: var(--saffron);
  font-style: normal;
  font-weight: 700;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.highlight-icon {
  font-size: 1.1rem;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  background: linear-gradient(135deg, #7A1C1C 0%, #3A0A00 100%);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(122,28,28,0.3);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.raaga-title {
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-family: 'Lato', sans-serif;
}

.swara-display {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.swara-display span {
  font-size: 1.4rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.swara-malayalam span {
  color: var(--gold-light) !important;
  opacity: 0.85;
}

.swara-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-quote {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-bottom: 6px;
}

.about-quote-translation {
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 4px;
}

.about-quote-source {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.tala-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.tala-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   MISSION BAND
   ============================================= */
.mission-band {
  background: linear-gradient(135deg, var(--maroon) 0%, #4A0C0C 100%);
  padding: 56px 24px;
}

.mission-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
}

.mission-item {
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.mission-number {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.mission-item h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.mission-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.mission-divider {
  color: rgba(255,255,255,0.15);
  font-size: 2rem;
  align-self: center;
}

/* =============================================
   COURSES
   ============================================= */
.courses {
  background: var(--cream);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.course-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.course-card.featured {
  border-color: var(--saffron);
  background: linear-gradient(160deg, #FFF8EE 0%, #FFF 100%);
  box-shadow: 0 8px 40px rgba(232,101,10,0.12);
}

.course-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.course-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.course-card h3 {
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.course-level {
  font-size: 0.78rem;
  color: var(--saffron);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.course-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.course-card ul li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--cream-dark);
  padding-left: 16px;
  position: relative;
}

.course-card ul li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.course-footer {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
  font-style: italic;
}

.courses-note {
  background: linear-gradient(135deg, var(--maroon), #4A0C0C);
  border-radius: 10px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.courses-note span {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.courses-note strong {
  color: var(--gold-light);
}

/* =============================================
   TEACHERS
   ============================================= */
.teachers-section {
  background: var(--white);
}

.teachers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.teacher-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}

.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.teacher-photo {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--maroon) 0%, #4A0C0C 100%);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.teacher-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.teacher-initials {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 3px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.teacher-info {
  padding: 32px 28px 36px;
}

.teacher-name {
  font-size: 1.7rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.teacher-credential {
  font-size: 0.82rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.teacher-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  margin-bottom: 16px;
  border-radius: 2px;
}

.teacher-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.teacher-detail-section {
  margin-bottom: 18px;
}

.teacher-detail-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.teacher-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-tag {
  background: var(--cream-dark);
  color: var(--text);
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.lang-tag em {
  font-style: normal;
  color: var(--text-light);
  font-weight: 400;
}

.teacher-education {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
}

.edu-college {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3px;
}

.edu-degree {
  font-size: 0.82rem;
  color: var(--text-light);
}

.teacher-address {
  font-size: 0.88rem;
  color: var(--text-light);
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.teacher-tags span {
  background: var(--white);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--cream-dark);
}

/* =============================================
   CLASSES
   ============================================= */
.classes-section {
  background: var(--cream);
}

.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.class-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  border: 2px solid var(--cream-dark);
  transition: all 0.3s;
  position: relative;
}

.class-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.class-card.featured-class {
  background: linear-gradient(160deg, #FFF8EE 0%, var(--white) 100%);
  border-color: var(--saffron);
  box-shadow: 0 8px 40px rgba(232,101,10,0.1);
}

.class-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.class-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.class-card h3 {
  font-size: 1.7rem;
  color: var(--maroon);
  margin-bottom: 6px;
}

.class-type {
  font-size: 0.82rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.class-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.class-features {
  list-style: none;
  margin-bottom: 30px;
}

.class-features li {
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--cream-dark);
  padding-left: 20px;
  position: relative;
}

.class-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--white);
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all 0.3s;
}

.why-card:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   YOUTUBE SECTION
   ============================================= */
.youtube-section {
  background: var(--cream);
}

.yt-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.yt-channel-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  border: 2px solid var(--cream-dark);
  position: relative;
  transition: all 0.3s;
}

.yt-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.11);
}

.yt-channel-card.featured-yt {
  border-color: var(--youtube-red);
  background: linear-gradient(160deg, #FFF8EE 0%, var(--white) 100%);
}

.yt-channel-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--youtube-red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.yt-logo {
  margin-bottom: 16px;
}

.yt-channel-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 4px;
}

.yt-channel-tag {
  font-size: 0.78rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.yt-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.yt-channel-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.yt-channel-features span {
  font-size: 0.88rem;
  color: var(--text);
  padding: 7px 12px;
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h3,
.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.social-btn.yt {
  background: var(--youtube-red);
  color: var(--white);
}

.social-btn.yt:hover {
  background: #CC0000;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
}

.form-note {
  text-align: center;
  color: #2E7D32;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0F0400;
  color: rgba(255,255,255,0.7);
  padding: 0;
}

.footer-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 44px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-top: 3px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer-music-note {
  color: var(--gold) !important;
  opacity: 0.6;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid,
  .courses-grid,
  .teachers-grid,
  .classes-grid,
  .why-grid,
  .yt-channels-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

  .mission-content {
    flex-direction: column;
    align-items: center;
  }

  .mission-divider {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 4, 0, 0.98);
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    background: rgba(15, 4, 0, 0.95);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-grid {
    gap: 40px;
  }
}
