/* ======================================
   K A L A A H   —   Bharatanatyam Theme
   ====================================== */

/* ---------- Color System ---------- */
:root {
  --color-primary: #4b002c;        /* Deep maroon */
  --color-secondary: #1a0f0f;      /* Rich dark background */
  --color-accent: #d4af37;         /* Gold */
  --color-accent-light: #f3da8f;   /* Lighter gold for hover */
  --color-text: #ffffff;           /* White */
  --color-text-light: #e0cfa4;     /* Warm light gold */
  --color-bg: #120909;
  --color-border: #5d3a3a;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 0 25px rgba(212, 175, 55, 0.25);
  --transition: 0.3s ease;
}

/* ---------- Global Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-light);
  background: var(--color-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-weight: 600;
}

p {
  color: var(--color-text-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-accent);
  text-transform: uppercase;
  color: var(--color-accent);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.btn:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  box-shadow: var(--shadow-soft);
}

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(18, 9, 9, 0.95);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 1px;

  color: #d4af37;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  color: var(--color-accent);
  font-size: 28px;
  border: none;
  cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 120px 24px 80px;

   background-image:
    linear-gradient(
      90deg,
      rgba(18,6,6,0.05) 0%,
      rgba(18,6,6,0.12) 10%,
      rgba(18,6,6,0.45) 30%,
      rgba(18,6,6,0.75) 100%
    ),
    url("/images/ornament.png");

  background-repeat: no-repeat;
  background-position: center 125px;
  background-size: 800px;
  background-color: #120606;
}


/* ---------- Section Base ---------- */
section {
  padding: 80px 0;
  background: var(--color-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* ---------- Focus Areas ---------- */
.focus {
  background: linear-gradient(rgba(18,9,9,0.9), rgba(18,9,9,0.9)),
    url('https://images.unsplash.com/photo-1618680045095-4e5f8d08795c?w=1600') center/cover;
}

.focus-areas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.focus-item {
  flex: 1 1 300px;
  background: rgba(75,0,44,0.7);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.focus-item:hover {
  background: rgba(212,175,55,0.1);
}

.focus-item h3 {
  color: var(--color-accent);
  margin-bottom: 12px;
  font-size: 22px;
}

/* ---------- Schedule ---------- */
.schedule {
  text-align: center;
}

.schedule-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.schedule-grid .class-card {
  border: 1px solid var(--color-accent);
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  box-shadow: var(--shadow-soft);
  min-width: 250px;
  transition: var(--transition);
}

.schedule-grid .class-card:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  transform: translateY(-4px);
}

.schedule-grid h3 {
  color: var(--color-accent);
  margin-bottom: 8px;
}

.schedule-grid p {
  color: var(--color-text);
}

.location {
  margin-top: 40px;
  color: var(--color-text-light);
  font-size: 18px;
}

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(180deg, #1a0f0f, #4b002c);
  text-align: center;
  color: var(--color-text);
}

.contact h2 {
  color: var(--color-accent);
  margin-bottom: 16px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.contact strong {
  color: var(--color-accent-light);
}

/* ---------- Footer ---------- */
.footer {
  background: #0e0707;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--color-border);
}

.footer h3 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.footer p {
  color: var(--color-text-light);
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .focus-areas {
    flex-direction: column;
  }
  .schedule-grid {
    flex-direction: column;
  }
}
/* --- Trial Modal --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: flex-start;
  z-index: 2000;
  overflow-y: auto;
  padding: 100px 20px 40px;
}
.modal.active { display:flex; }
.modal-content {
  background:#1a0f0f;
  border:1px solid var(--color-accent);
  padding:40px;
  width:90%;
  max-width:520px;
  border-radius:var(--radius-lg);
  color:#fff;
  box-shadow:0 0 20px rgba(212,175,55,0.3);
}
.modal-content form {
  display:flex;
  flex-direction:column;
}

.modal-content label {
  display:block;
  margin-top:12px;
  margin-bottom:6px;
  font-weight:600;
  color:#f3da8f;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(212,175,55,0.35);
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:15px;
  box-sizing:border-box;
}

.modal-content textarea {
  resize:vertical;
  min-height:80px;
}

.modal-content .btn {
  margin-top:28px;
  width:100%;
}
.modal-close {
  position:absolute;
  top:12px;
  right:18px;
  background:none;
  border:none;
  color:var(--color-accent);
  font-size:28px;
  cursor:pointer;
}
/* --- Hero Ornament --- */

/* Content */
.hero-content {
  max-width: 1100px;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1.05;
  color: #d4af37;

  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* Subtitle */
.hero-subtitle {
  color: #e6c56d;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 22px;
}

/* Tagline */
.hero-tagline {
  color: #f3da8f;
  font-size: 24px;
  font-style: italic;
  font-family: "Playfair Display", serif;

  margin-bottom: 42px;
}

/* Button */
.hero-btn {
  padding: 15px 38px;
  border-radius: 10px;
  border: 1px solid #d4af37;

  color: #d4af37;
  background: transparent;

  font-weight: 700;
  letter-spacing: 1px;

  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #d4af37;
  color: #120606;

  box-shadow:
    0 0 18px rgba(212,175,55,0.35);
}

/* Tablet */
@media (max-width: 900px) {
  .hero-ornament {
    width: 180px;
    top: 90px;
    left: 20px;
    opacity: 0.85;
  }

  .hero-tagline {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding-top: 180px;
  }

  .hero-ornament {
    width: 140px;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-content {
  padding-top: 120px;
}
.page-content section:first-child {
  border-top: 0;
}
.enquiry-form {
  max-width: 520px;
  margin: 35px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-form label {
  color: #f3da8f;
  text-align: left;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}
.required {
  color: #ff5c5c;
  margin-left: 4px;
  font-weight: bold;
}
iframe {
  border: none;
  border-radius: 14px;
  margin-top: -110px;
}
.student-card {
  max-width: 520px;
  margin: 30px auto;
  padding: 28px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  text-align: left;
}

.student-card h3 {
  color: #d4af37;
  margin-bottom: 18px;
}

.student-card p {
  margin-bottom: 10px;
}

.details-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
}

.details-table th,
.details-table td {
  padding: 8px 0;
  text-align: left;
  vertical-align: top;
}

.details-table th {
  width: 90px;
  color: #d4af37;
  font-weight: 700;
}

.details-table td {
  color: #f3da8f;
}

.details-table tr {
  line-height: 1.4;
}

.fee-item {
  margin-top: 20px;
}

.fee-item h4 {
  margin-bottom: 12px;
  color: #f3da8f;
}
.about-page {
  background: #160707;
  min-height: 100vh;
  padding: 120px 24px 90px;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
  color: #e8dcc0;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 45px;
}

.about-content p {
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.about-content h3 {
  color: #d4af37;
  font-size: 1.6rem;
  margin: 45px 0 15px;
}

.about-content blockquote {
  border-left: 3px solid #d4af37;
  padding-left: 24px;
  margin: 0 0 40px;
  font-style: italic;
  font-size: 1.25rem;
  color: #f3da8f;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 40px 0 50px;
}

.about-highlights div {
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: #f3da8f;
  background: rgba(255,255,255,0.04);
}

.focus-content {
    max-width: 950px;
    margin: 0 auto;
}
.focus-section {
    margin-bottom: 50px;
}
.focus-section {
    border-bottom: 1px solid rgba(212,175,55,0.15);
    padding-bottom: 35px;
}
.focus-section h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}
.focus-section p {
    line-height: 1.9;
    font-size: 1.08rem;
    color: #e8dcc0;
}