* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --deep-black: #080808;
  --charcoal: #111118;
  --border: rgba(201,168,76,0.18);
  --border-hover: rgba(201,168,76,0.45);
  --text-primary: #F5F0E8;
  --text-muted: #9E9E9E;
}

body {
  background: var(--deep-black);
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* Shared header/footer styles from index */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,0.98), transparent);
  backdrop-filter: blur(4px);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled { border-color: var(--border); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--text-primary); font-weight: 400; font-style: italic; font-size: 0.9rem; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:link { color: var(--text-muted); }
.nav-links a:visited { color: #a89f8a; }
.nav-links a:visited:hover { color: var(--gold); }

.nav-links > li { position: relative; list-style: none; }

.nav-dropdown { position: relative; }
/* Bridge hover gap between label and dropdown */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: 10rem;
  height: 0.75rem;
  z-index: 1099;
}

/* Same typography as .nav-links a; inline label + arrow */
.nav-links .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  cursor: default;
}
.nav-links .nav-dropdown-trigger:hover,
.nav-links .nav-dropdown-trigger:focus-visible,
.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown.nav-dropdown--open > .nav-dropdown-trigger { color: var(--gold); }
.nav-dropdown:has(.nav-dropdown-menu a.active) > .nav-dropdown-trigger { color: var(--gold); }

.nav-dropdown-caret {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 0.65em;
  line-height: 1;
  font-weight: 400;
  vertical-align: 0.08em;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown.nav-dropdown--open .nav-dropdown-caret {
  opacity: 1;
  transform: translateY(1px);
}

/* Submenu: hidden unless row is hovered (mouse) or .nav-dropdown--open (keyboard / programmatic) */
.nav-links > li.nav-dropdown > .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.65rem;
  min-width: 17.5rem;
  max-width: min(22rem, 92vw);
  max-height: min(70vh, 26rem);
  overflow-y: auto;
  list-style: none;
  background: rgba(14, 14, 20, 0.98);
  border: 1px solid var(--border);
  padding: 0.4rem 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  z-index: 1100;
}
.nav-links > li.nav-dropdown:hover > .nav-dropdown-menu,
.nav-links > li.nav-dropdown.nav-dropdown--open > .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: none;
  line-height: 1.35;
  white-space: normal;
  color: var(--text-muted);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--gold); }

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 22rem;
  padding: 0.65rem 0 0.85rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu a.mobile-nav-sub {
  font-size: 1.05rem;
  line-height: 1.3;
  text-align: center;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { color: var(--deep-black); background: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--gold); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4.5rem 1.25rem 2rem;
  overflow-y: auto;
  gap: 1.15rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-primary);
  text-decoration: none;
}
.mobile-menu a:visited { color: #d8d0c4; }
.mobile-menu a:hover { color: var(--gold); }
.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

footer {
  background: var(--deep-black);
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}
.footer-brand p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-top: 0.3rem;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links a:hover,
.footer-links a.active { color: var(--gold); }
.footer-links a:link { color: var(--text-muted); }
.footer-links a:visited { color: #9a917c; }
.footer-links a:visited:hover { color: var(--gold); }
.footer-copy { font-size: 0.7rem; color: rgba(158,158,158,0.45); letter-spacing: 0.08em; }

/* Sticky bar (shared) */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(8,8,8,0.95);
  border-top: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.sticky-bar strong { color: var(--gold); font-weight: 500; }
.sticky-btns { display: flex; gap: 0.8rem; }
.btn-primary {
  background: var(--gold);
  color: var(--deep-black);
  border: none;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Shows page */
.page-shows {
  min-height: 100vh;
}

.shows-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(6.5rem, 14vw, 9rem) clamp(1.25rem, 5vw, 2.5rem) clamp(3.5rem, 8vw, 5.5rem);
  box-sizing: border-box;
}

.shows-intro {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 3.25rem;
  padding: 0 0.5rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.shows-heading {
  margin-bottom: 1rem;
}

.shows-intro .section-label {
  margin-bottom: 1.25rem;
}

.shows-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.shows-lead {
  margin: 0 auto;
  max-width: 34rem;
  text-align: center;
  line-height: 1.85;
}

.shows-table-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}

.shows-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
  font-size: 0.94rem;
}

.shows-table thead th {
  background: linear-gradient(180deg, #1e1e2d 0%, #15151f 100%);
  color: #f0ebe3;
  font-weight: 600;
  padding: 1.15rem 1.35rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 2px solid var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.shows-table thead th:first-child {
  border-right: 1px solid rgba(201,168,76,0.28);
  width: 46%;
}

.shows-table tbody td {
  padding: 1.1rem 1.35rem;
  min-height: 3.25rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  color: #ebe6dc;
  line-height: 1.5;
}

.shows-table tbody td:first-child {
  border-right: 1px solid rgba(201,168,76,0.1);
  font-weight: 500;
  color: #f5f0e8;
}

/* Clear alternating rows */
.shows-table tbody tr:nth-child(odd) td {
  background: #16161f;
}

.shows-table tbody tr:nth-child(even) td {
  background: #1f1f2c;
}

.shows-table tbody tr:last-child td {
  border-bottom: none;
}

.shows-table tbody tr:hover td {
  background: #2a2633;
}

.shows-table tbody tr:hover td:first-child {
  box-shadow: inset 3px 0 0 0 var(--gold);
}

.shows-back {
  margin-top: 3.5rem;
  padding-top: 2rem;
  width: 100%;
  max-width: 760px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.shows-back-link {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.35);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

/* Strong contrast on black — visited stays readable, not browser purple */
.shows-back-link:link {
  color: #e8d4a0;
  background: rgba(201,168,76,0.06);
}

.shows-back-link:visited {
  color: #c9b078;
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.25);
}

.shows-back-link:hover {
  color: #1a1508;
  background: var(--gold);
  border-color: var(--gold);
}

.shows-back-link:active {
  color: var(--deep-black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.shows-back-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .shows-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .shows-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
  }

  .shows-table {
    font-size: 0.82rem;
  }

  .shows-table thead th {
    padding: 0.9rem 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .shows-table tbody td {
    padding: 0.85rem 0.65rem;
  }
}

/* SEO / service landing pages (Mahabharat, versatile singer, etc.) */
.page-content {
  min-height: 100vh;
}

.content-page {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(6.5rem, 12vw, 8.75rem) clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 6vw, 5rem);
}

.seo-article {
  color: var(--text-primary);
}

.seo-hero {
  margin: 0 0 2.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.seo-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.seo-article h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}

.seo-block {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.seo-block strong {
  color: var(--gold-light);
  font-weight: 600;
}

.seo-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.seo-list {
  margin: 0.5rem 0 1.5rem 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.seo-list li {
  margin-bottom: 0.35rem;
}

.content-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.content-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-black);
  text-decoration: none;
  padding: 1rem 1.75rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}

.content-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.content-cta a:visited {
  color: var(--deep-black);
  background: #b89d52;
}

.content-cta a:visited:hover {
  background: var(--gold-light);
  color: var(--deep-black);
}

.seo-back {
  margin-top: 2rem;
  text-align: center;
}

.seo-back a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}

.seo-back a:hover {
  color: var(--gold);
}

@media (max-width: 640px) {
  .content-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .seo-hero img {
    aspect-ratio: 4 / 3;
  }
}

/* Gallery page layout */
.gallery-main {
  padding: 7rem 0 3rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title .italic { font-style: italic; font-weight: 400; color: var(--gold); }

.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.scene {
  width: 100%;
  height: 72vh;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 2000px;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.a3d {
  position: relative;
  width: 300px;
  height: 420px;
  transform-style: preserve-3d;
}

.img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  backface-visibility: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  will-change: transform;
}

@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  footer { padding: 2rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .scene { min-height: 460px; height: 62vh; }
  .sticky-bar { flex-direction: column; padding: 1rem; gap: 0.6rem; text-align: center; }
  .sticky-bar p { font-size: 0.75rem; }
}