:root {
  --color-maroon: #7a1f1f;
  --color-maroon-dark: #5c1616;
  --color-gold: #c89b3c;
  --color-gold-light: #e8c874;
  --color-cream-1: #fbefd4;
  --color-cream-2: #f3dba8;
  --color-brown: #4a2c1a;
  --color-white: #ffffff;
  --color-ink: #3a2313;
  --color-ink-soft: #5c4530;

  --font-display: 'Yatra One', 'Poppins', cursive;
  --font-heading: 'Poppins', 'Mukta', sans-serif;
  --font-body: 'Mukta', 'Poppins', sans-serif;

  --container-width: 1100px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-soft: 0 6px 20px rgba(74, 44, 26, 0.15);
  --header-height: 76px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream-1);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-maroon);
  margin: 0 0 0.5em;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-gold);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-maroon);
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  color: var(--color-ink);
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-link.active-link {
  color: var(--color-maroon);
  border-bottom-color: var(--color-gold);
}

/* ==========================================================================
   Hero / Poster (Home page)
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: calc(100vh - var(--header-height));
  background: linear-gradient(180deg, var(--color-cream-1) 0%, var(--color-cream-2) 100%);
  padding: 1.25rem 1.25rem 1.5rem;
  overflow: hidden;
}

.hero-lights {
  flex: 0 0 auto;
  width: 100%;
  height: 14px;
  background-image: radial-gradient(circle, var(--color-gold) 4px, transparent 4.5px);
  background-size: 28px 14px;
  background-repeat: repeat-x;
  background-position: center;
  margin: 0 auto;
  max-width: var(--container-width);
}

.hero-corner {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px dashed var(--color-gold);
  opacity: 0.25;
  pointer-events: none;
}

.corner-tl {
  top: -70px;
  left: -70px;
}

.corner-tr {
  top: -70px;
  right: -70px;
}

.poster-image-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.hero-cta {
  flex: 0 0 auto;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-maroon-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   About teaser (Home page)
   ========================================================================== */

.about-teaser {
  background: var(--color-white);
  padding: 3rem 1.25rem;
}

.about-teaser-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.link-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--color-maroon);
  border-bottom: 2px solid var(--color-gold);
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.lang-switch {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lang-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--color-gold);
  background: var(--color-white);
  color: var(--color-ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  color: var(--color-white);
}

.about-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
}

.about-subtitle {
  text-align: center;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--color-cream-2);
  padding-bottom: 0.4rem;
}

.about-content ul {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-content li {
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 6px rgba(74, 44, 26, 0.08);
}

.about-content li ul {
  list-style: disc;
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
  gap: 0.35rem;
}

.about-content li ul li {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.about-italic {
  font-style: italic;
  color: var(--color-ink-soft);
}

.about-callout {
  background: var(--color-cream-2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.about-signoff {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-maroon);
  font-size: 1.2rem;
  margin-top: 2rem;
}

[lang="hi"] {
  font-family: var(--font-body);
  line-height: 1.9;
}

/* ==========================================================================
   Team pages (Our Team, Women Power)
   ========================================================================== */

.team-hero {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.team-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--color-ink-soft);
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1.25rem;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.team-card-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-avatar svg {
  width: 26px;
  height: 26px;
  fill: var(--color-gold);
}

.team-card-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.team-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-maroon);
  font-size: 1.05rem;
}

.team-card-role {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 0.15rem;
}

.team-card-contact {
  display: inline-flex;
  flex-shrink: 0;
  align-self: center;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-maroon);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.team-card-contact:hover {
  background: var(--color-maroon-dark);
  transform: translateY(-1px);
}

.team-card-contact svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.team-card-pending {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--color-ink-soft);
  opacity: 0.8;
  white-space: nowrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-maroon);
  color: var(--color-cream-1);
  padding: 2rem 1.25rem;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.footer-venue,
.footer-credit {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-nav a {
  font-weight: 600;
  color: var(--color-gold-light);
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin: 1.25rem 0 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-gold-light);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-gold-light);
  color: var(--color-maroon-dark);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--color-cream-2);
  opacity: 0.8;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0.5rem;
  }

  .primary-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .primary-nav .nav-link {
    text-align: center;
  }

  .hero-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}
