/* =============================================
   SANKOFA NIGHTS — Styles
   ============================================= */

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

.seo-h1 { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --gold-dim:  rgba(201,168,76,0.15);
  --crimson:   #8B1A3A;
  --crimson-lt:#A52048;
  --black:     #080808;
  --dark:      #101010;
  --dark2:     #161616;
  --dark3:     #1E1E1E;
  --white:     #F5F0E8;
  --gray:      #666;
  --gray-lt:   #999;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left cluster: logo + social icons */
.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.2));
}

/* Social icons — now on the left */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.nav-social-icon:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold) !important;
  border-radius: 4px;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Right cluster: booking button + burger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Booking CTA — matches Tickets outline style */
.nav-booking {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-booking:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 4px;
  color: rgba(245,240,232,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1612;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  overflow: hidden;
  min-width: 160px;
  z-index: 200;
}

.lang-dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: none;
  border: none;
  color: rgba(245,240,232,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
  background: rgba(201,168,76,0.08);
  color: var(--white);
}

.lang-option.active {
  color: var(--gold);
  font-weight: 600;
}

.lang-option .lang-flag { font-size: 1rem; }

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

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.97);
  padding: 1.5rem 2rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.0) 40%, rgba(8,8,8,0.5) 80%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap { margin-bottom: 1.5rem; }

.hero-logo-img {
  width: clamp(90px, 14vw, 160px);
  height: auto;
  filter:
    drop-shadow(0 0 30px rgba(139,26,58,0.4))
    drop-shadow(0 0 80px rgba(201,168,76,0.12));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-title-nights {
  color: var(--gold);
  text-shadow: 0 0 80px rgba(201,168,76,0.3);
}

.hero-subtitle {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
  box-shadow: 0 4px 28px rgba(201,168,76,0.28);
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.4);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(245,240,232,0.25);
  color: rgba(245,240,232,0.75);
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(245,240,232,0.6);
  color: var(--white);
  background: rgba(245,240,232,0.05);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 7rem 0; }
.section-about { background: var(--dark); }
.section-dark  { background: var(--dark2); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.section-title.left { text-align: left; }

.section-sub {
  color: var(--gray-lt);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   EVENTS TIMELINE
   ============================================= */
.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
  margin: 4rem 0;
}

.event-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.event-meta {
  position: sticky;
  top: 92px;
}

.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  margin-bottom: 1.2rem;
}

.event-month {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.event-day {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.event-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.event-venue {
  font-size: 0.82rem;
  color: var(--gray-lt);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.expand-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.expand-btn:hover {
  background: rgba(201,168,76,0.08);
}

.expand-btn.open svg {
  transform: rotate(180deg);
}

/* =============================================
   PHOTO GRIDS
   ============================================= */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0.6rem;
}

.photo-main {
  grid-column: 1;
  grid-row: 1;
}

.photo-side {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.photo-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease;
}

.photo-row.expanded {
  max-height: 2000px;
}

.photo-main img,
.photo-side img,
.photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s, filter 0.3s;
}

.photo-main img { min-height: 320px; max-height: 480px; }
.photo-side img { height: calc(50% - 0.3rem); min-height: 150px; }
.photo-row img  { aspect-ratio: 4/3; }

.photo-main img:hover,
.photo-side img:hover,
.photo-row img:hover {
  transform: scale(1.02);
  filter: brightness(1.08);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-visual {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-img-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(139,26,58,0.2), rgba(8,8,8,0.5));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(139,26,58,0.15);
}

.about-bird {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(139,26,58,0.3));
}

.about-quote {
  text-align: center;
  max-width: 300px;
}

.quote-symbol {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  display: block;
  margin-bottom: -1rem;
}

.about-quote p {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
}

.about-text {
  padding-top: 0.5rem;
}

.about-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 2.5rem 0 0.8rem;
}

.about-body h3:first-child { margin-top: 0; }

.about-body p {
  color: rgba(245,240,232,0.7);
  font-size: 0.97rem;
  margin-bottom: 1rem;
  max-width: 600px;
}

.about-body em { color: var(--white); font-style: italic; }

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.pillar {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--dark2);
  border-left: 2px solid var(--crimson);
  border-radius: 0 8px 8px 0;
}

.pillar-number {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--crimson);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.pillar strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--gray-lt);
  margin: 0 !important;
  line-height: 1.6;
}

.about-sign {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.sign-text {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,240,232,0.8) !important;
  margin-bottom: 0.6rem !important;
}

.sign-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold) !important;
  letter-spacing: 0.08em;
  margin: 0 !important;
}

/* =============================================
   TICKET SHOP
   ============================================= */
.ticket-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.18);
}

.ticket-wrapper iframe { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #161210;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo-img {
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.35)) brightness(1.15);
}

.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.3);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray);
}

.footer-socials a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .event-block {
    grid-template-columns: 1fr;
  }
  .event-meta {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .event-date-badge { margin-bottom: 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
  }
  .about-img-wrap { width: 120px; height: 120px; }
  .about-bird { width: 90px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-socials { display: none; }
  .nav-booking { padding: 0.5rem 0.9rem; font-size: 0.7rem; }
  .lang-btn { padding: 0.38rem 0.5rem; }
  #langCode { display: none; } /* show only globe on mobile */

  .photo-grid {
    grid-template-columns: 1fr;
  }
  .photo-side {
    flex-direction: row;
  }
  .photo-main img { min-height: 220px; }

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

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { flex-direction: column; gap: 0.8rem; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* =============================================
   HIGHLIGHTS STRIP — horizontal scroll row
   ============================================= */
.highlights-strip {
  background: var(--black);
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.highlights-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.highlights-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.highlights-link {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.highlights-link:hover { opacity: 0.7; }

.highlights-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-bottom: 1rem;
  cursor: grab;
}
.highlights-scroll:active { cursor: grabbing; }

/* Hide scrollbar but keep functionality */
.highlights-scroll::-webkit-scrollbar { height: 3px; }
.highlights-scroll::-webkit-scrollbar-track { background: transparent; }
.highlights-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.highlights-scroll img {
  height: 340px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.highlights-scroll img:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

@media (max-width: 768px) {
  .highlights-scroll img { height: 240px; }
  .highlights-header { gap: 1rem; }
}
@media (max-width: 480px) {
  .highlights-scroll img { height: 200px; }
}

/* Aftermovie button on event blocks */
.aftermovie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 0.6rem;
  transition: background 0.2s, color 0.2s;
}
.aftermovie-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Gallery CTA section */
.section-gallery-cta {
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.07);
}

.gallery-cta-btn {
  display: inline-block;
  margin-top: 2rem;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 2.4rem;
}

/* =============================================
   VIDEO MODAL
   ============================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

/* =============================================
   ABOUT TEASER (homepage)
   ============================================= */
.section-about-teaser {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.about-teaser-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.about-teaser-bird {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.06);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
}

.about-teaser-bird img {
  width: 70px;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.3));
}

.about-teaser-text {
  flex: 1;
}

.about-teaser-desc {
  color: var(--gray-lt);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 560px;
}

.about-teaser-fact {
  color: var(--gray-lt);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 560px;
  opacity: 0.75;
}

.about-teaser-slogan {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.about-teaser-cta {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 640px) {
  .about-teaser-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .about-teaser-desc { max-width: 100%; }
}

/* ── Email Signup ── */

.signup-section {
  background: #0d0b09;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 2rem;
}

.signup-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.signup-text {
  flex: 1;
}

.signup-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0.4rem 0 0.6rem;
}

.signup-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-lt);
  line-height: 1.6;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.signup-form input[type="email"] {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.7rem 1.1rem;
  width: 240px;
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.3);
}

.signup-form input[type="email"]:focus {
  border-color: rgba(201,168,76,0.5);
}

.signup-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d0b09;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.signup-form button:hover {
  background: var(--gold-lt);
}

@media (max-width: 768px) {
  .signup-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .signup-form {
    width: 100%;
    flex-direction: column;
  }
  .signup-form input[type="email"] {
    width: 100%;
  }
  .signup-form button {
    width: 100%;
  }
}
