/* ============================================================
   PARIS FOLLIES — style.css
   French Tricolour Theme: Navy · White · Red · Gold
   ============================================================ */
 
/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Palette */
  --navy:          #0D1B3E;
  --navy-deep:     #091228;
  --navy-mid:      #111F48;
  --navy-light:    #15244F;
  --navy-blue:     #1C2E62;
  --navy-bright:   #223473;
  --blue-flag:     #18254E;
  --blue-accent:   #4A90D9;
  --blue-cta:      #004D87;
  --red:           #E60000;
  --white:         #FFFFFF;
  --gold:          #B5975C;
  --gold-light:    #E8C97A;
 
  /* Text */
  --text-primary:  #F0F4FF;
  --text-muted:    #B8C8E8;
  --text-dim:      rgba(240, 244, 255, 0.5);
 
  /* Surfaces */
  --surface:       #0D1B3E;
  --surface-low:   #111F48;
  --surface-mid:   #1C2E62;
  --surface-high:  #223473;
  --surface-card:  #15244F;
 
  /* Borders */
  --border:        rgba(240, 244, 255, 0.1);
  --border-gold:   rgba(181, 151, 92, 0.3);
 
  /* Spacing */
  --gap-section:   120px;
  --gap-gutter:    24px;
  --px-mobile:     20px;
  --px-desktop:    64px;
 
  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Hanken Grotesk', sans-serif;
}
 
/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
html { scroll-behavior: smooth; }
 
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--navy);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
 
::selection { background: var(--red); color: #fff; }
 
/* ── Typography Scale ────────────────────────────────────── */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);  /* was clamp(56px, 9vw, 96px) */
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.text-headline-xl {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);  /* was clamp(40px, 6vw, 64px) */
  line-height: 1;
  font-weight: 400;
}
.text-headline-lg {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 400;
}
.text-headline-md {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 400;
}
.text-subhead {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.text-body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}
.text-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}
.text-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.uppercase { text-transform: uppercase; }
 
/* ── Utility ─────────────────────────────────────────────── */
.section-pad {
  padding: var(--gap-section) var(--px-mobile);
}
@media (min-width: 768px) {
  .section-pad { padding: var(--gap-section) var(--px-desktop); }
}
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
 
/* ── Tricolour Details ───────────────────────────────────── */
.tricolour-bar {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--blue-flag) 33.33%,
    var(--white) 33.33%,
    var(--white) 66.66%,
    var(--red) 66.66%
  );
}
.tricolour-stripe-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.tricolour-stripe-hero span {
  display: block;
  height: 4px;
  width: 80px;
}
.tricolour-stripe-hero .t-blue  { background: var(--blue-flag); border: 1px solid #3A5A9A; }
.tricolour-stripe-hero .t-white { background: var(--white); }
.tricolour-stripe-hero .t-red   { background: var(--red); }
 
/* ── Gold Shimmer ────────────────────────────────────────── */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
 
/* ── Cabaret Gradient (image overlays) ───────────────────── */
.cabaret-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,1) 0%, rgba(13,27,62,0) 100%);
}
 
/* ── Stars ───────────────────────────────────────────────── */
.star-fill {
  font-variation-settings: 'FILL' 1;
  color: var(--gold);
}
.stars { display: flex; justify-content: center; gap: 4px; }
 
/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(13, 27, 62, 0.95);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--px-mobile);
}
@media (min-width: 768px) {
  .nav__inner { padding: 16px var(--px-desktop); }
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo {
  height: 48px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nav__logo { height: 56px; }
}
.nav__links {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
 
.nav__link {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  transition: color 0.3s;
}
.nav__link:hover,
.nav__link--active { color: var(--gold); }
.nav__link--active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.nav__cta {
  display: none;
  font-family: var(--font-display);
  font-size: 22px;
  padding: 8px 24px;
  background: var(--red);
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.2s;
  transform: scale(0.95);
}
.nav__cta:hover {
  background: var(--text-primary);
  color: var(--navy);
  border-color: var(--red);
}
.nav__cta:active { transform: scale(0.9); }
@media (min-width: 768px) { .nav__cta { display: block; } }
 
.nav__hamburger {
  color: var(--gold);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .nav__hamburger { display: none; } }
 
/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Hero Slideshow */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slideshow {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(0.75) saturate(0.7);  /* was 0.55 — adjust up or down to taste */
}
.hero__slide.active {
  opacity: 1;
}
/* Overlay: deep navy blue tint on top of everything */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 18, 40, 0.95) 0%,
    rgba(13, 27, 62, 0.55) 50%,
    rgba(13, 27, 62, 0.35) 100%
  );
  mix-blend-mode: multiply;
}
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--px-mobile);
  max-width: 900px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero__content { padding: 0 var(--px-desktop); }
}
.hero__marquee {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  z-index: 20;
  flex-shrink: 0;
}
.hero__title {
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(181,151,92,0.4);
}
.hero__sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero__stats {
  margin-top: 40px;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.hero__stats span.sep { margin: 0 12px; opacity: 0.4; 
}

/* HERO ACTIONS */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
/* Desktop */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    align-items: stretch;
  }
}

/* FAMILY BADGE */

.family-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(181,151,92,0.35);
  backdrop-filter: blur(10px);
}
.family-badge .material-symbols-outlined {
  font-size: 40px;
  color: var(--gold);
  flex-shrink: 0;
}
.family-badge__content {
  display: flex;
  flex-direction: column;
}
.family-badge strong {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}
.family-badge span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

.hero-book-btn {
  width: 220px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width:639px){
  .hero-book-btn{
    width:100%;
  }
}
 
/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  font-family: var(--font-display);
  font-size: 22px;
  padding: 16px 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .btn { width: auto; } }
 
.btn--red {
  background: var(--red);
  color: #fff;
  border: 1px solid transparent;
}
.btn--red:hover {
  background: var(--text-primary);
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--navy);
}
.btn--navy {
  background: var(--navy);
  color: var(--text-primary);
  border: 1px solid transparent;
}
.btn--navy:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--full { width: 100%; justify-content: center; }
 
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  padding: 12px 32px;
}
.btn--ghost:hover {
  background: var(--text-primary);
  color: var(--navy);
}
.btn-sm {
  font-family: var(--font-display);
  font-size: 18px;
  padding: 12px 24px;
}
 
/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--red);
  color: #fff;
  padding: 16px 0;
  border-top: 1px solid rgba(240,244,255,0.2);
  border-bottom: 1px solid rgba(240,244,255,0.2);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 32px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.marquee-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: opacity 0.2s;
}
.marquee-link:hover { opacity: 0.7; }
 
/* ══════════════════════════════════════════════════════════
   INTRO / ABOUT
══════════════════════════════════════════════════════════ */
.intro {
  padding: 96px var(--px-mobile);
  background: var(--surface-low);
}
@media (min-width: 768px) { .intro { padding: 96px var(--px-desktop); } }
.intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro__title { margin-bottom: 32px; }
.intro__body { color: var(--text-muted); line-height: 1.7; }
.intro__body + .intro__body { margin-top: 24px; }
 
/* ══════════════════════════════════════════════════════════
   SHOW ACTS GRID
══════════════════════════════════════════════════════════ */
.acts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-gutter);
  overflow: hidden;
}
@media (min-width: 768px) {
  .acts { grid-template-columns: 7fr 5fr; }
}
.act-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}
.act-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.act-card:hover img { transform: scale(1.05); }
.act-card__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.act-card--main { aspect-ratio: 4/5; }
@media (min-width: 768px) { .act-card--main { aspect-ratio: auto; min-height: 560px; } }
 
.acts__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap-gutter);
}
.act-card--small { min-height: 200px; }
@media (min-width: 768px) { .act-card--small { min-height: 260px; } }
 
/* ══════════════════════════════════════════════════════════
   REVIEWS SLIDER
══════════════════════════════════════════════════════════ */
.reviews {
  background: var(--surface-low);
}
.reviews__header { margin-bottom: 64px; }
.reviews__header h2 { margin-bottom: 16px; }
 
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}
.slide {
  flex: 0 0 100%;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .slide { flex: 0 0 33.333%; }
}
 
.review-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--surface);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.review-card__quote {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.review-card__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.review-card__source { font-size: 13px; color: var(--text-dim); }
 
/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
 
/* ══════════════════════════════════════════════════════════
   TICKET PACKAGES
══════════════════════════════════════════════════════════ */
.tickets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tickets__grid { grid-template-columns: repeat(3, 1fr); }
}
.ticket-card {
  border: 1px solid rgba(240,244,255,0.2);
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.ticket-card:hover { border-color: var(--red); }
.ticket-card--featured {
  border-color: var(--red);
  background: var(--surface);
  position: relative;
  box-shadow: 0 0 40px rgba(74,144,217,0.2);
}
@media (min-width: 768px) {
  .ticket-card--featured { transform: translateY(-16px); }
}
.ticket-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}
.ticket-card__body {
  padding: 32px;
  flex: 1;
}
.ticket-card__name {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.ticket-card__price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  margin-bottom: 24px;
}
.ticket-card__features { display: flex; flex-direction: column; gap: 16px; }
.ticket-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 16px;
}
.ticket-feature .material-symbols-outlined {
  color: var(--red);
  font-size: 18px;
}
.ticket-card__foot { padding: 32px; padding-top: 0; margin-top: auto; }
 
/* ══════════════════════════════════════════════════════════
   PRIVATE EVENTS
══════════════════════════════════════════════════════════ */
.private-events {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.private-events__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(230,0,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(26,58,143,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.private-events__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .private-events__inner { grid-template-columns: 1fr 1fr; }
}
 
/* Left: content */
.private-events__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.private-events__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.private-events__title { margin-bottom: 20px; }
.private-events__sub {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
 
/* Occasion pills */
.occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.occasion-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
  transition: all 0.25s;
}
.occasion-pill .material-symbols-outlined { font-size: 16px; color: var(--gold); }
.occasion-pill:hover {
  border-color: var(--gold);
  color: var(--text-primary);
  background: rgba(181,151,92,0.08);
}
 
/* Perks list */
.perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.perk__icon {
  width: 36px;
  height: 36px;
  background: rgba(181,151,92,0.1);
  border: 1px solid rgba(181,151,92,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk__icon .material-symbols-outlined { font-size: 18px; color: var(--gold); }
.perk__text h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.perk__text p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
 
/* Right: visual */
.private-events__visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--gap-gutter);
}
.pe-image-main {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.pe-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pe-image-main:hover img { transform: scale(1.04); }
 
/* Capacity stats strip */
.pe-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.pe-stat {
  background: var(--navy-mid);
  padding: 20px 16px;
  text-align: center;
}
.pe-stat__num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pe-stat__label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
 
/* Enquiry CTA bar */
.pe-enquiry {
  background: linear-gradient(135deg, var(--blue-flag) 0%, #1A3A8F 60%, rgba(230,0,0,0.8) 100%);
  padding: 32px var(--px-mobile);
  position: relative;
}
@media (min-width: 768px) { .pe-enquiry { padding: 32px var(--px-desktop); } }
.pe-enquiry__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pe-enquiry__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pe-enquiry p { color: rgba(255,255,255,0.85); font-size: 16px; }
.pe-enquiry strong { color: #fff; font-size: 20px; display: block; margin-bottom: 4px; }
 
/* ══════════════════════════════════════════════════════════
   FIND US / MAP
══════════════════════════════════════════════════════════ */
.find-us {
  background: var(--surface-high);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.find-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-gutter);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .find-us__grid { grid-template-columns: 1fr 1fr; }
}
.find-us__map {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  transition: filter 0.7s;
  order: 2;
}
@media (min-width: 768px) { .find-us__map { order: 1; } }
.find-us__map:hover { filter: grayscale(0); }
.find-us__map .material-symbols-outlined { font-size: 64px; color: rgba(240,244,255,0.3); }
.find-us__content { order: 1; }
@media (min-width: 768px) { .find-us__content { order: 2; } }
.find-us__content h2 { margin-bottom: 24px; }
.find-us__address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.find-us__address .material-symbols-outlined { color: var(--red); margin-top: 2px; }
.find-us__address h3 { font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.find-us__address p { color: var(--text-muted); line-height: 1.6; }
 
/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.final-cta {
  padding: var(--gap-section) var(--px-mobile);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-flag) 0%, #1A3A8F 40%, var(--red) 100%);
}
@media (min-width: 768px) { .final-cta { padding: var(--gap-section) var(--px-desktop); } }
.final-cta__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.final-cta__title { color: #fff; margin-bottom: 32px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
 
/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  padding: var(--gap-section) var(--px-mobile);
  background: var(--navy-deep);
  border-top: 1px solid var(--border-gold);
  position: relative;
}
@media (min-width: 768px) { .footer { padding: var(--gap-section) var(--px-desktop); } }
.footer__tricolour {
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-gutter);
  text-align: center;
}
.footer__logo {
  height: 120px;  /* was 80px */
  width: auto;
  display: block;
  margin: 0 auto;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: -8px;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: var(--text-muted);
  font-size: 16px;
  transition: color 0.2s;
  opacity: 0.8;
}
.footer__links a:hover { color: var(--gold); opacity: 1; }
.footer__copy { color: var(--text-muted); opacity: 0.6; font-size: 14px; margin-top: 16px; }

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  transition: all 0.25s;
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181, 151, 92, 0.08);
}
.footer__contact {
  align-items: flex-start;
  max-width: 800px;
  width: 100%;
}

.footer__contact-item {
  max-width: 100%;
  white-space: nowrap;
}

.footer__contact-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__contact-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item:hover { color: var(--text-primary); 
} 
/* ══════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
══════════════════════════════════════════════════════════ */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
 
/* ══════════════════════════════════════════════════════════
   RESPONSIVE HELPERS
══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --gap-section: 80px; }
  .text-display { font-size: 52px; }
  .text-headline-xl { font-size: 32px; }
}
.act-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.act-card__desc {
  font-size: 14px;
  color: rgba(240, 244, 255, 0.75);
  margin-top: 6px;
  line-height: 1.5;
}
/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE IMPROVEMENTS
   Add to bottom of style.css
══════════════════════════════════════════════════════════ */

/* ── Mobile nav menu ─────────────────────────────────────── */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(9, 18, 40, 0.98);
  border-top: 1px solid var(--border-gold);
  padding: 16px var(--px-mobile) 24px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu .nav__link {
  font-size: 28px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  text-align: left;
}
.nav__mobile-menu .nav__link:last-child { border-bottom: none; }
.nav__mobile-menu .btn--red {
  margin-top: 16px;
  width: 100%;
  font-size: 24px;
  padding: 14px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 767px) {

  /* ── Global spacing ── */
  :root {
    --gap-section: 60px;
    --px-mobile: 16px;
  }
  .section-header { margin-bottom: 40px; }

  /* ── Typography ── */
  .text-display    { font-size: clamp(36px, 10vw, 52px); }
  .text-headline-xl { font-size: clamp(28px, 8vw, 36px); }
  .text-headline-lg { font-size: 28px; }
  .text-headline-md { font-size: 22px; }
  .text-subhead     { font-size: 17px; }

  /* ── Hero ── */
  .hero__sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero__stats {
    font-size: 12px;
    margin-top: 24px;
    line-height: 1.8;
  }
  /* Wrap stats to 2×2 on small screens */
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
  }
  .hero__stats span.sep { margin: 0 6px; }

  /* ── Buttons ── */
  .btn {
    font-size: 20px;
    padding: 14px 28px;
  }
  .btn-sm { font-size: 16px; padding: 10px 20px; }

/* ── Act cards (show section) ── */
.acts { grid-template-columns: 1fr; overflow: hidden; }
.act-card--main { min-height: 340px; aspect-ratio: 16/9; }
.acts__side { grid-template-rows: auto; grid-template-columns: 1fr; gap: 12px; }
.act-card--small { min-height: 180px; }
.act-card__label { padding: 16px; }

  /* ── Reviews slider ── */
  .reviews__header { margin-bottom: 40px; }

  /* ── Ticket cards ── */
  .ticket-card__body  { padding: 20px; }
  .ticket-card__foot  { padding: 20px; padding-top: 0; }
  .ticket-card__name  { font-size: 28px; }
  .ticket-card__price { font-size: 24px; margin-bottom: 16px; }
  .ticket-card__features { gap: 10px; }
  .ticket-feature { font-size: 14px; }

  /* 5-col ticket grid: 1 column on mobile */
  .tickets__grid--5 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  /* Remove the upward shift on featured card — no room */
  .ticket-card--featured { transform: none; }

  /* Show schedule strip ── */
  .show-schedule { margin-bottom: 32px; }
  .show-schedule__item { padding: 14px 16px; justify-content: flex-start; }
  .show-schedule__value { font-size: 17px; }

  /* ── Private events ── */
  .private-events__inner { gap: 40px; }
  .private-events__sub { font-size: 16px; }
  .perks { gap: 12px; }
  .perk__text h4 { font-size: 14px; }
  .perk__text p  { font-size: 13px; }
  .pe-stat__num  { font-size: 28px; }
  .pe-enquiry    { padding: 24px var(--px-mobile); }
  .pe-enquiry strong { font-size: 17px; }
  .pe-enquiry p  { font-size: 14px; }

  /* ── Find us ── */
  .find-us__map { aspect-ratio: 4/3; order: 1; }
  .find-us__content { order: 2; }
  .find-us__content h2 { margin-bottom: 16px; }

  /* ── Final CTA ── */
  .final-cta__title { margin-bottom: 24px; }
  .final-cta .btn--navy {
    font-size: 22px !important;
    padding: 18px 32px !important;
    width: 100%;
  }

  /* ── Footer ── */
  .footer { padding: 48px var(--px-mobile); }
  .footer__logo { height: 90px; }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }
  .footer__contact { align-items: center; }
  /* Fix address overflow on small screens */
  .footer__contact-item {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 14px;
  }
  .footer__contact-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer__copy { font-size: 12px; }
}

/* ── Mid-range tablet tweaks (768px–1024px) ─────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .tickets__grid--5 { grid-template-columns: repeat(3, 1fr); }
  .nav__links { gap: 16px; }
  .nav__link  { font-size: 18px; }
  .private-events__inner { gap: 40px; }
}
/* ==========================================
PRIVATE SERVICES
========================================== */

.private-services {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.private-services__eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.private-services__intro {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

.private-services__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  margin-top: 80px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(181,151,92,0.1);
  border: 1px solid rgba(181,151,92,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card__icon .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0;
}

.service-list {
  margin-bottom: 32px;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
}

.private-services__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.feature-pill .material-symbols-outlined {
  color: var(--gold);
  font-size: 18px;
}

@media (max-width: 767px) {

  .private-services__grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-card {
    padding: 28px;
  }

  .private-services__intro {
    font-size: 16px;
  }

}

/* FAMILY FRIENDLY SECTION */

.family-section {
  background: var(--navy);
}

.family-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.family-box__icon {
  margin-bottom: 24px;
}

.family-box__icon .material-symbols-outlined {
  font-size: 48px;
  color: var(--gold);
}

.family-box h2 {
  margin-bottom: 24px;
}

.family-box p {
  max-width: 850px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.8;
}

.family-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  max-width: 900px;
  width: 100%;
}

.family-highlights div {
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);

  text-align: center;
  font-weight: 600;
}

@media (max-width: 768px) {

  .family-highlights {
    grid-template-columns: 1fr;
  }

  .family-box p {
    font-size: 18px;
  }

}
/* BOOKING HIGHLIGHTS */

.booking-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.booking-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(181,151,92,0.2);
}

.booking-highlight .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.booking-highlight strong {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.booking-highlight p {
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .booking-highlights {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
BIRTHDAY CELEBRATION
========================================== */

.birthday-section {
  background: var(--surface-low);
}

.birthday-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px){
  .birthday-box{
    grid-template-columns: 1.3fr 1fr;
  }
}

.birthday-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.birthday-intro {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 24px 0 40px;
  font-size: 18px;
}

.birthday-highlights {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.birthday-highlights div {
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.birthday-image {
  border: 1px solid var(--border);
  overflow: hidden;
}

.birthday-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.birthday-image:hover img {
  transform: scale(1.04);
}

@media (max-width:768px){
  .birthday-highlights{
    grid-template-columns: 1fr;
  }
}