:root {
  --maroon: #7a0c14;
  --gold: #d4a017;
  --gold-light: #e8c06a;
  --vermillion: #c1121f;
  --ivory: #fff8e7;
  --bg: #fff8e7;
  --dark: #1a0400;
  --warm-dark: #2c0a00;
  --text-body: #2c1810;
  --card-bg: #fff3dc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cormorant Garamond", serif;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 4, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin-bottom: 0;
}
.nav-links a {
  color: rgba(255, 248, 231, 0.75);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  transition: color 0.25s;
  cursor: pointer;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 4, 0, 0.98);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-top: 2px solid var(--gold);
  min-width: 160px;
  z-index: 2000;
  list-style: none;
  padding: 0;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-family: "Cinzel", serif;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 248, 231, 0.75);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}
.nav-dropdown-menu li:last-child a {
  border-bottom: none;
}
.nav-dropdown-menu li a:hover {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
  padding-left: 1.4rem;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    border: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    background: rgba(212, 160, 23, 0.06);
    min-width: 100%;
  }
  .nav-dropdown-menu li a {
    padding-left: 2rem;
  }
}

/* PAGES */
.page {
  display: none;
  min-height: 100vh;
  padding-top: 68px;
}
.page.active {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(122, 12, 20, 0.25) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 20%,
      rgba(212, 160, 23, 0.12) 0%,
      transparent 60%
    );
}
.mandala-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sanskrit {
  font-family: "Noto Serif Devanagari", serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--ivory);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.hero-title .accent {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 248, 231, 0.65);
  margin-top: 0.8rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.hero-divider {
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
}
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 248, 231, 0.58);
  letter-spacing: 0.06em;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}
.button-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.button-primary:hover {
  color: var(--dark);
}
.button-primary:hover::before {
  transform: scaleX(1);
}
.btn-dark {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--ivory);
}
.btn-dark:hover {
  color: var(--ivory);
}
.btn-dark::before {
  background: rgba(0, 0, 0, 0.2);
}

/* STATS */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  background: var(--warm-dark);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}
.stat-item {
  padding: 2rem 0.8rem;
  text-align: center;
  border-right: 1px solid rgba(212, 160, 23, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(255, 248, 231, 0.45);
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}

/* FEATURES */
.features-strip {
  background: var(--card-bg);
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  border-bottom: 2px solid rgba(212, 160, 23, 0.2);
}
.feature-title {
  font-family: "Cinzel", serif;
  color: var(--maroon);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.feature-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.82;
}

/* SECTIONS */
.dance-styles {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-kicker {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--maroon);
  font-weight: 400;
  line-height: 1.2;
}
.section-rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.section-intro {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  opacity: 0.82;
}
.section-rule-left {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}

.style-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.style-card {
  background: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.style-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}
.style-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(122, 12, 20, 0.12);
}
.style-card-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 0.9rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
}
.style-card-text {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.85;
}

.testimonial-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--warm-dark) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-band::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}
.testimonial-text {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--ivory);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}

/* PAGE HERO */
.page-hero {
  background: #745550;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-kicker {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--ivory);
  font-weight: 400;
}
.page-hero-sub {
  color: #ffffff;
  font-style: italic;
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

/* CONTENT */
.content-section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.body-text {
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--text-body);
  margin-bottom: 1.3rem;
}
.pull-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.7;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--maroon));
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
}
.timeline-year {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.timeline-text {
  font-size: 1rem;
  line-height: 1.78;
  opacity: 0.86;
}

/* WORK CARDS */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.work-card {
  padding: 2rem;
  border: 1px solid rgba(212, 160, 23, 0.22);
  background: var(--card-bg);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.3s;
}
.work-card:hover {
  box-shadow: 0 8px 30px rgba(122, 12, 20, 0.1);
}
.work-card-title {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.work-card-text {
  font-size: 0.98rem;
  line-height: 1.82;
  opacity: 0.84;
}

/* IMPACT */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.impact-card {
  padding: 2rem;
  background: var(--card-bg);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.impact-title {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.impact-text {
  font-size: 0.96rem;
  line-height: 1.78;
  opacity: 0.83;
}

/* AWARDS */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.award-card {
  background: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 1.8rem;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122, 12, 20, 0.12);
}
.award-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid rgba(212, 160, 23, 0.25);
  margin-bottom: 0;
}
.award-tab {
  padding: 0.85rem 1.3rem;
  font-family: "Cinzel", serif;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(44, 24, 16, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.award-tab.active,
.award-tab:hover {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}
.award-tab.active {
  background: rgba(212, 160, 23, 0.06);
}
.award-tab-panel {
  display: none;
}
.award-tab-panel.active {
  display: block;
}
.cert-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.cert-placeholder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  background: var(--card-bg);
  border: 1px dashed rgba(212, 160, 23, 0.4);
  border-radius: 4px;
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s;
  font-size: 2rem;
}
.cert-placeholder-item:hover {
  box-shadow: 0 6px 24px rgba(122, 12, 20, 0.1);
}
.cert-placeholder-item div {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--maroon);
  line-height: 1.6;
}
.cert-placeholder-item div span {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.88rem;
  letter-spacing: 0;
  color: var(--text-body);
  opacity: 0.7;
  display: block;
  margin-top: 0.3rem;
  font-style: italic;
}
.cert-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .award-tabs {
    overflow-x: auto;
  }
  .award-tab {
    font-size: 0.58rem;
    padding: 0.7rem 0.9rem;
  }
}
.award-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: rgba(212, 160, 23, 0.15);
  font-weight: 600;
}
.award-title {
  font-family: "Cinzel", serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--maroon);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
}
.award-text {
  font-size: 0.96rem;
  line-height: 1.78;
  opacity: 0.84;
}

/* GALLERY */
.gallery-tabs {
  display: flex;
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
  margin-bottom: 3rem;
}
.gallery-tab {
  padding: 0.9rem 2rem;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(44, 24, 16, 0.45);
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.gallery-tab.active,
.gallery-tab:hover {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.photo-item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--maroon), var(--warm-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.photo-item:hover {
  transform: scale(1.02);
}
.photo-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 4, 0, 0.88));
  color: var(--gold-light);
  padding: 1rem 0.8rem 0.7rem;
  font-family: "Cinzel", serif;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.photo-item:hover::after {
  transform: translateY(0);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
}
.video-item:hover {
  border-color: var(--gold);
}
.play-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  transition: background 0.3s;
}
.video-item:hover .play-btn {
  background: rgba(212, 160, 23, 0.18);
}
.video-label {
  font-family: "Cinzel", serif;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  color: rgba(255, 248, 231, 0.55);
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
}

/* APPRECIATIONS */

.appr-card {
  background: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.appr-card:hover {
  box-shadow: 0 10px 36px rgba(122, 12, 20, 0.1);
}
.appr-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.appr-text {
  font-size: 1.05rem;
  line-height: 1.85;
  font-style: italic;
  color: var(--text-body);
  flex: 1;
}
.appr-footer {
  border-top: 1px solid rgba(212, 160, 23, 0.18);
  padding-top: 0.9rem;
  margin-top: 0.3rem;
}
.appr-name {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.appr-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  opacity: 0.85;
}

/* EVENTS */
.events-list {
  margin-top: 2rem;
}
.event-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.18);
}
.event-date-box {
  text-align: center;
  background: var(--maroon);
  color: var(--ivory);
  padding: 1rem 0.5rem;
  align-self: start;
}
.event-day {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.event-mon {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.25rem;
}
.event-title {
  font-family: "Cinzel", serif;
  font-size: 1.08rem;
  color: var(--maroon);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.event-meta {
  font-size: 0.87rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.event-desc {
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0.82;
}

/* PRESS */
.press-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.press-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--card-bg);
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}
.press-card:hover {
  box-shadow: 0 8px 30px rgba(122, 12, 20, 0.1);
}
.press-logo {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.4;
}
.press-date {
  font-size: 0.78rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.press-headline {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  font-weight: 600;
}
.press-excerpt {
  font-size: 0.98rem;
  line-height: 1.82;
  opacity: 0.82;
  font-style: italic;
}
.press-source {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: "Cinzel", serif;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  color: var(--vermillion);
  text-transform: uppercase;
}
.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.press-thumb {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: var(--card-bg);
  border-radius: 4px;
  aspect-ratio: 3/4;
}
.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.press-thumb:hover img {
  transform: scale(1.06);
}
.press-thumb-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 12, 20, 0.55);
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.press-thumb:hover .press-thumb-zoom {
  opacity: 1;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(122, 12, 20, 0.07);
  border: 1px solid rgba(122, 12, 20, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-label {
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-value {
  font-size: 1rem;
  line-height: 1.72;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: "Cinzel", serif;
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
}
.form-input,
.form-select,
.form-textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 160, 23, 0.3);
  background: var(--ivory);
  color: var(--text-body);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border-radius: 4px;
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.social-link svg {
  display: block;
  pointer-events: none;
}
.social-link svg {
  display: block;
  pointer-events: none;
}
.map-placeholder {
  height: 240px;
  background: linear-gradient(
    135deg,
    rgba(122, 12, 20, 0.05),
    rgba(212, 160, 23, 0.07)
  );
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2.5rem;
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}
.highlight-box {
  background: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.22);
  padding: 2rem;
  margin-top: 2rem;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.8rem;
  display: block;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 248, 231, 0.38);
  line-height: 1.75;
}
.footer-heading {
  font-family: "Cinzel", serif;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 248, 231, 0.38);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  max-width: 1050px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 248, 231, 0.28);
}
.footer-sanskrit {
  font-family: "Noto Serif Devanagari", serif;
  color: rgba(212, 160, 23, 0.4);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(26, 4, 0, 0.97);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .press-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .event-item {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}

/* Print */
@media print {
  .no-print {
    display: none !important;
  }
  nav {
    position: static;
  }
  .page {
    display: block !important;
  }
}
/* Multi-page overrides — remove SPA page hiding */
.page {
  display: block !important;
  min-height: auto;
  padding-top: 68px;
}

/* ── Multi-page overrides ── */
/* Remove SPA page hiding — every page is its own file */
.page {
  display: block !important;
}

/* Active nav link */
.nav-links li.active-nav > a,
.nav-links li.active-nav > a:hover {
  color: var(--gold-light);
}

/* Nav dropdown open-by-default for active media pages */
.nav-dropdown.open-active .nav-dropdown-menu {
  display: block;
}

/* Prevent background scroll */
body.lightbox-open {
  overflow: hidden;
}

/* =========================
   Overlay
========================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);

  display: none;
  align-items: center;
  justify-content: center;

  cursor: zoom-out;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

/* =========================
   Image
========================= */
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;

  border-radius: 6px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.85);

  user-select: none;
  pointer-events: none;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* =========================
   Buttons (shared)
========================= */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #fff;
  font-size: 2rem;

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

  cursor: pointer;

  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

/* Prev */
.lightbox-btn-prev {
  left: 1.2rem;
}

/* Next */
.lightbox-btn-next {
  right: 1.2rem;
}

/* Close */
.lightbox-btn-close {
  top: 1rem;
  right: 1.2rem;

  transform: none;

  width: 42px;
  height: 42px;
  font-size: 1.3rem;
}

/* =========================
   Counter
========================= */
.lightbox-counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);

  color: rgba(255, 255, 255, 0.65);
  font-family: Cinzel, serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;

  background: rgba(0, 0, 0, 0.35);
  padding: 6px 12px;
  border-radius: 20px;
}

/* =========================
   Mobile tweaks
========================= */
@media (max-width: 768px) {
  .lightbox-btn {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .lightbox-btn-prev {
    left: 0.6rem;
  }

  .lightbox-btn-next {
    right: 0.6rem;
  }

  .lightbox-counter {
    font-size: 0.7rem;
    bottom: 0.8rem;
  }

  .lightbox-overlay {
    padding: 10px;
  }
}

/* Custome Css */
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
