:root {
  --yellow: #FFF000;
  --red: #DA241A;
  --blue: #00599C;
  --green: #08A635;
  --dark: #1e3a5f;
  --white: #FFFFFF;
  --card-bg: #ffffff;
  --radius: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: #f0f8ff;
  color: var(--dark);
  overflow-x: hidden;
}

/* ── CONFETTI BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,217,61,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255,107,157,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(78,205,196,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── INFO BAR ── */
.info-bar {
  position: relative;
  z-index: 1;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.4rem 1.5rem;
  flex-wrap: wrap;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

a.info-bar-item:hover { text-decoration: underline; }

.info-bar-map {
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.info-bar-map:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  text-decoration: none !important;
}

/* ── STICKY HEADER ── */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}

header {
  position: relative;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 20px rgba(0,89,156,0.3);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-city {
  font-family: 'Fredoka One', cursive;
  font-size: 0.78rem;
  letter-spacing: 3px;
  margin-top: 2px;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

/* Offset anchor targets below sticky header + info bar */
[id] { scroll-margin-top: 110px; }

nav { display: flex; gap: 0.75rem; align-items: center; }

nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--yellow); }

.header-cta {
  background: var(--red);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: transform 0.2s, background 0.2s !important;
}

.lang-switch {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-switch:hover { color: #fff !important; border-color: #fff; background: rgba(255,255,255,0.1); }

.header-cta:hover {
  background: #b81e15 !important;
  transform: scale(1.05);
  color: white !important;
}

/* ── HEADER MAP ICON (mobile only) ── */
.header-map-icon {
  display: none;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark);
  flex-direction: column;
  border-top: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 99;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}

.mobile-nav a:hover { background: rgba(255,255,255,0.07); }

.mobile-nav-cta {
  background: var(--red) !important;
  color: white !important;
  text-align: center;
  margin: 0.75rem 1.25rem;
  border-radius: 50px;
  border-bottom: none !important;
  padding: 0.85rem 1.5rem !important;
}

.mobile-nav-lang {
  text-align: center;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.55) !important;
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 2.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #00599C 0%, #08A635 60%, #FFF000 100%);
}

/* Hero announcement bar — modern static strip */
.hero-ribbon {
  position: relative;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.52rem 1.5rem;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.hero-ribbon-pill {
  display: inline-flex;
  align-items: center;
  background: #FFF000;
  color: #111;
  font-family: 'Fredoka One', cursive;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.hero-ribbon-text {
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.2px;
}

/* Slide photo — fades into gradient from bottom-right */
.hero-slide-bg {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 92%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to top left, black 10%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2) 65%, transparent 82%);
  mask-image: linear-gradient(to top left, black 10%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2) 65%, transparent 82%);
}
.hero-slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}

/* Festive frame decorations */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hd {
  position: absolute;
  user-select: none;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}
.hd-b1 { font-size: 2.2rem; left: 2%; bottom: 18%; animation: balloon 6s ease-in-out infinite; }
.hd-b2 { font-size: 1.8rem; left: 7%; top: 22%; animation: balloon 7.5s ease-in-out infinite 1.2s; }
.hd-b3 { font-size: 2.4rem; right: 2%; bottom: 22%; animation: balloon 5.5s ease-in-out infinite 0.6s; }
.hd-b4 { font-size: 1.6rem; right: 7%; top: 28%; animation: balloon 8s ease-in-out infinite 2s; }
.hd-slide { font-size: 3rem; right: 1.5%; bottom: 4%; animation: float 9s ease-in-out infinite 1s; opacity: 0.65; }
.hd-star1 { font-size: 1.4rem; left: 14%; top: 10%; animation: float 5s ease-in-out infinite 0.3s; }
.hd-star2 { font-size: 1.6rem; right: 14%; bottom: 10%; animation: float 6s ease-in-out infinite 1.5s; }

@keyframes balloon {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

/* Confetti dots — position/size/color/delay via CSS vars */
.cf {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 8px);
  height: var(--s, 8px);
  background: var(--c, #FFF000);
  border-radius: var(--r, 3px);
  opacity: 0.65;
  animation: cfdrift var(--dur, 5s) ease-in-out infinite var(--d, 0s);
}
@keyframes cfdrift {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-14px); opacity: 0.9; }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; background: var(--blue); top: -100px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--red); top: 60%; right: -80px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--green); bottom: -60px; left: 30%; animation-delay: 4s; }

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

.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 1rem 1rem 5rem; }

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.hero-next-event {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 270px;
  max-width: 360px;
  padding: 0.75rem 1.2rem 0.8rem;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.28);
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.05s;
}
.hero-next-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
  background: rgba(0,0,0,0.36);
}
/* Today variant — warm gold glow */
.hero-next-event.is-today {
  border-color: rgba(255,215,0,0.45);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 24px rgba(255,215,0,0.15);
}

/* Header row: dot · label · chevron */
.hero-next-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
.hero-next-chevron { flex-shrink: 0; opacity: 0.7; }

/* Pulsing live dot */
.hero-next-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #7eb8f7;
}
.hero-next-event.is-today .hero-next-dot {
  background: #FFD700;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(255,215,0,0); }
}

/* Hairline divider */
.hero-next-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0.45rem 0;
}

/* Event title */
.hero-next-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #fff;
}

.hero-next-badge {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.6;
  text-decoration: line-through;
  vertical-align: middle;
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 0.7rem;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.25s;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 340px;
  max-width: calc(100vw - 3rem);
  margin: 0 auto;
  gap: 0.7rem;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.4s;
}

/* Fancy party CTA button */
.btn-hero-party {
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #DA241A 0%, #ff5e3a 100%);
  box-shadow: 0 8px 32px rgba(218,36,26,0.5), 0 0 0 3px rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-party::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  animation: btnshine 2.8s ease-in-out infinite 1s;
}
@keyframes btnshine {
  0% { left: -80%; }
  60%, 100% { left: 160%; }
}
.btn-hero-party:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 42px rgba(218,36,26,0.6), 0 0 0 3px rgba(255,255,255,0.35);
}

/* Secondary outline hero buttons */
.btn-hero-outline {
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Light-blue hero button (walk-in info) */
.btn-hero-blue {
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  background: #1a70ba;
  box-shadow: 0 6px 24px rgba(26,112,186,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-blue:hover {
  background: #1260a8;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,112,186,0.6);
}

/* Yellow hero button (waiver) */
.btn-hero-yellow {
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  color: var(--dark);
  background: var(--yellow);
  box-shadow: 0 6px 24px rgba(255,224,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,224,0,0.6);
}

.btn-arrow {
  font-size: 1.1em;
  font-weight: 900;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.btn-hero-party:hover .btn-arrow,
.btn-hero-outline:hover .btn-arrow,
.btn-hero-yellow:hover .btn-arrow,
.btn-hero-blue:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--red);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(218,36,26,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(218,36,26,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.hero-buttons .btn-secondary {
  background: var(--blue);
  border-color: var(--blue);
}
.hero-buttons .btn-secondary:hover {
  background: #1565c0;
  border-color: #1565c0;
}

.btn-waiver {
  background: var(--yellow);
  color: var(--dark);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-waiver:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.55s;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ── SECTION LAYOUT ── */
section { position: relative; z-index: 1; }

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* ── WHY US ── */
.why {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.why-card:nth-child(1) { border-color: var(--yellow); }
.why-card:nth-child(2) { border-color: var(--red); }
.why-card:nth-child(3) { border-color: var(--blue); }
.why-card:nth-child(4) { border-color: var(--green); }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

/* ── PACKAGES ── */
.packages {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #e8f5ec 0%, #fff8e1 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pkg-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.pkg-card.featured {
  transform: scale(1.03);
  box-shadow: 0 12px 50px rgba(0,89,156,0.25);
  border: 3px solid var(--blue);
}

.pkg-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1rem 0.3rem 0.8rem;
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  border-left: 8px solid #003d6e;
  border-bottom: 6px solid transparent;
}

.pkg-header {
  padding: 1.8rem 1.8rem 1.2rem;
}

.pkg-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.pkg-days {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 1rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.pkg-price .amount {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
}

.pkg-price .note {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}

.pkg-divider {
  height: 3px;
  margin: 0 1.8rem;
  border-radius: 2px;
}

.pkg-features {
  padding: 1.5rem 1.8rem;
  flex: 1;
}

.pkg-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkg-features li {
  font-size: 0.88rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.pkg-features li::before {
  content: '✓';
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pkg-footer {
  padding: 1.2rem 1.8rem 1.8rem;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  text-decoration: none;
  color: white;
  transition: opacity 0.2s, transform 0.2s;
}

.pkg-btn:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

/* package color themes */
.pkg-mini .pkg-name { color: var(--red); }
.pkg-mini .pkg-price .amount { color: var(--red); }
.pkg-mini .pkg-divider { background: var(--red); }
.pkg-mini .pkg-features li::before { color: var(--red); }
.pkg-mini .pkg-btn { background: var(--red); }

.pkg-build .pkg-name { color: var(--blue); }
.pkg-build .pkg-price .amount { color: var(--blue); }
.pkg-build .pkg-divider { background: var(--blue); }
.pkg-build .pkg-features li::before { color: var(--blue); }
.pkg-build .pkg-btn { background: var(--blue); }

.pkg-classic .pkg-name { color: var(--green); }
.pkg-classic .pkg-price .amount { color: var(--green); }
.pkg-classic .pkg-divider { background: var(--green); }
.pkg-classic .pkg-features li::before { color: var(--green); }
.pkg-classic .pkg-btn { background: var(--green); }

.pkg-ultimate .pkg-name { color: var(--blue); }
.pkg-ultimate .pkg-price .amount { color: var(--blue); }
.pkg-ultimate .pkg-divider { background: var(--blue); }
.pkg-ultimate .pkg-features li::before { color: var(--blue); }
.pkg-ultimate .pkg-btn { background: var(--blue); }

.pkg-ultplus .pkg-name { color: var(--green); }
.pkg-ultplus .pkg-price .amount { color: var(--green); }
.pkg-ultplus .pkg-divider { background: var(--green); }
.pkg-ultplus .pkg-features li::before { color: var(--green); }
.pkg-ultplus .pkg-btn { background: var(--green); }

/* ── PRIVATE PARTIES ── */
.private {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #003d6e 0%, #005a9c 100%);
  color: white;
}

.private .section-header h2 { color: white; }
.private .section-header p { color: rgba(255,255,255,0.6); }

.private-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.priv-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
}

.priv-card:hover {
  border-color: var(--yellow);
  background: rgba(255,217,61,0.05);
}

.priv-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}

.priv-card .when {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.priv-price {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.2rem;
}

.priv-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.priv-card li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.priv-card li::before {
  content: '★';
  color: var(--yellow);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.priv-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  text-decoration: none;
  background: var(--yellow);
  color: var(--dark);
  transition: opacity 0.2s, transform 0.2s;
}

.priv-btn:hover { opacity: 0.88; transform: scale(1.02); }

/* ── POLICIES ── */
.policies {
  padding: 4rem 1.5rem;
  background: #fffde7;
}

.policies-inner {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 6px solid var(--green);
}

.policies-inner h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.policies-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.policies-inner li {
  font-size: 0.95rem;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.policies-inner li::before {
  content: '📌';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

/* ── ADMISSION ── */
.admission {
  padding: 5rem 1.5rem;
  background: #f0faf3;
}

.admission-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.admission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.admission-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--green);
}

.admission-card--prices { border-top-color: var(--blue); }
.admission-card--memberships { border-top-color: var(--yellow); }

.admission-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.admission-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1.1rem;
}

.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.hours-days { color: #555; font-weight: 600; }
.hours-time { font-weight: 800; color: var(--dark); }

.admission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admission-table tr + tr { border-top: 1px solid #f0f0f0; }

.admission-table td {
  padding: 0.45rem 0;
  vertical-align: middle;
}

.tier-label { color: #555; width: 55%; }
.tier-price { font-weight: 800; color: var(--dark); white-space: nowrap; }
.tier-free { color: var(--green); }
.tier-note { font-size: 0.78rem; color: #888; padding-left: 0.5rem; }

.membership-list { display: flex; flex-direction: column; gap: 0.75rem; }

.membership-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.75rem;
}

.membership-name { font-weight: 700; color: var(--dark); }
.membership-price { font-weight: 800; color: var(--blue); }
.membership-note { font-size: 0.8rem; color: var(--green); font-weight: 600; width: 100%; }

.memberships-footer {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: #999;
}

.membership-section {
  margin-top: 2rem;
}

.membership-section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.membership-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.membership-plan {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.membership-plan--featured {
  border-color: var(--blue);
  box-shadow: 0 6px 28px rgba(0,89,156,0.15);
}

.membership-plan-tag {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  width: fit-content;
}

.membership-plan--featured .membership-plan-tag {
  background: var(--green);
}

.membership-plan-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--dark);
}

.membership-plan-price {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
}

.membership-plan--featured .membership-plan-price {
  color: var(--green);
}

.membership-plan-period {
  font-size: 1rem;
  color: #888;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.membership-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.membership-plan-features li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}

.membership-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.fun-pack {
  margin-top: 2rem;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
}

.fun-pack-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.fun-pack-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fun-pack-left h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.fun-pack-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.fun-pack-items li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.fun-pack-price {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--dark);
  white-space: nowrap;
  line-height: 1;
}

.fun-pack-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.membership-buy-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.membership-buy-btn:hover { opacity: 0.88; transform: scale(1.02); }

.gift-cards-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border: 2px solid var(--yellow);
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.gift-cards-icon { font-size: 3rem; line-height: 1; flex-shrink: 0; }
.gift-cards-body { flex: 1; min-width: 200px; }
.gift-cards-body h3 { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--dark); margin-bottom: 0.25rem; }
.gift-cards-body p { color: #555; font-size: 0.92rem; margin: 0; }
.gift-cards-section .membership-buy-btn { display: inline-block; flex-shrink: 0; white-space: nowrap; }

.membership-cancel-wrap { text-align: center; margin-bottom: 1.5rem; }
.membership-cancel-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.membership-cancel-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── CONTACT ── */
.contact {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  text-align: center;
  color: white;
}

.contact h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  min-width: 180px;
}

.contact-card .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.3rem;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
}

.contact-card a:hover { text-decoration: underline; }

.maps-link {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-card p.value {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
}

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

.contact-book-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-book-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.contact-callback-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-callback-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.contact-waiver-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-waiver-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}
.contact-careers-btn {
  display: inline-block;
  background: #6c757d;
  color: white;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-careers-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

/* ── MENU PAGE ── */
.menu-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);
  color: white;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.menu-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0.5rem 0 0.75rem;
}

.menu-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto;
}

.menu-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.menu-category {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--blue);
}

.menu-category--full  { grid-column: span 6; }
.menu-category--third { grid-column: span 2; }
.menu-category--half  { grid-column: span 3; }

@media (max-width: 800px) {
  .menu-category--third { grid-column: span 6; }
}

@media (max-width: 500px) {
  .menu-category--half { grid-column: span 6; }
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.menu-cat-icon { font-size: 1.75rem; line-height: 1; }

.menu-category-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--dark);
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-items li {
  font-size: 0.95rem;
  color: #444;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.4;
}

.menu-items li:last-child { border-bottom: none; }

.menu-subsections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.menu-subsection h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-subsection ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-subsection ul li {
  font-size: 0.9rem;
  color: #444;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.4;
}

.menu-subsection ul li:last-child { border-bottom: none; }

/* ── FOOTER ── */
footer {
  background: #003d6e;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}

footer a { color: var(--yellow); text-decoration: none; }

/* ── FLOATING BOOK BTN ── */
.float-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(75vw - 2rem);
  max-width: 600px;
  min-width: 200px;
  padding: 0.8rem 1.15rem 0.85rem;
  border-radius: 18px;
  text-decoration: none;
  color: var(--dark);
  background: #fff;
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: floatUp 3s ease-in-out infinite;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.1);
  animation: none;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.float-btn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.float-btn-label {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--dark);
}
.float-btn-arrow {
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.float-btn:hover .float-btn-arrow { transform: translateX(3px); }

.float-btn-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 0.45rem 0;
}
.float-btn-sub {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.4;
}

/* ── HERO PHOTO CUTOUTS ── */
.hero-photos {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 0.7s ease both;
}

.hero-photo:nth-child(1) {
  animation-delay: 0.5s;
  border-color: var(--yellow);
  transform: rotate(-4deg);
}
.hero-photo:nth-child(2) {
  animation-delay: 0.65s;
  border-color: white;
  transform: rotate(2deg);
  margin-top: -12px;
}
.hero-photo:nth-child(3) {
  animation-delay: 0.8s;
  border-color: var(--yellow);
  transform: rotate(-2deg);
}

.hero-photo:hover {
  transform: rotate(0deg) scale(1.12) !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FAQ ── */
.faq {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 2px solid #e8f0fe;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--blue);
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* ── LEGAL PAGES ── */
.legal-page {
  min-height: 70vh;
  padding: 4rem 1.5rem;
  background: #f8fbff;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 24px rgba(0,89,156,0.07);
}

.legal-inner h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e8f0fe;
}

.legal-inner h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--dark);
  margin: 1.75rem 0 0.5rem;
}

.legal-inner p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-inner ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-inner ul li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}

.legal-inner a { color: var(--blue); }

@media (max-width: 600px) {
  .legal-inner { padding: 1.75rem 1.25rem; }
}

/* ── TRANSLATION DISCLAIMER ── */
.translation-disclaimer {
  background: #fffbeb;
  border-bottom: 1.5px solid #f6d860;
  color: #78580a;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 1.25rem;
  line-height: 1.5;
}

.disclaimer-callback-link {
  background: none;
  border: none;
  color: #78580a;
  font-family: 'Nunito', sans-serif;
  font-size: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.disclaimer-callback-link:hover {
  color: #4a3500;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .info-bar { gap: 1.25rem; padding: 0.4rem 1rem; }
  .info-bar-item { font-size: 0.78rem; }
  .info-bar-map { display: none !important; }
  header { padding: 0.8rem 1rem; }
  header > nav { display: none; }
  header > .lang-switch { display: flex; font-size: 0.78rem; padding: 0.25rem 0.6rem; }
  .hamburger { display: flex; }
  .header-map-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    background: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
  }
  .header-map-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .pkg-card.featured { transform: scale(1); }

  /* Gallery mobile */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item-caption { font-size: 0.75rem; }
  .gallery-cta { margin: 2rem 1rem 1rem; }
}

/* ── GALLERY ── */
.gallery-hero {
  background: linear-gradient(135deg, #1e1060 0%, #7c3aed 60%, #db2777 100%);
  color: white;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
}
.gallery-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.25rem 0 0.5rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.gallery-hero p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 540px;
  margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.gallery-hero .section-tag {
  color: #fde68a !important;
}

.gallery-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  aspect-ratio: 4 / 3;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.62));
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 1.2rem 0.75rem 0.55rem;
  opacity: 0;
  transition: opacity 0.22s;
  font-family: 'Nunito', sans-serif;
}
.gallery-item:hover .gallery-item-caption {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin: 3rem auto 1rem;
}
.gallery-cta p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── SPECIALS / DEALS PAGE ── */
.specials-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #00599c 50%, #08a635 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
}
.specials-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
}
.specials-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.specials-hero .section-tag { color: var(--yellow); }

.specials-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

/* Featured deal banner */
.specials-featured { margin-bottom: 2.5rem; }

.specials-featured-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  color: #fff;
}

.specials-featured-left { flex: 1; }

.specials-featured-card .section-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  margin-bottom: 0.75rem;
}

.specials-featured-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.specials-featured-desc {
  font-size: 0.975rem;
  opacity: 0.88;
  margin: 0 0 0.6rem;
  line-height: 1.55;
}

.specials-featured-validity {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0 0 1.25rem;
}

.specials-featured-btn {
  display: inline-block;
  background: #f59e0b;
  color: #1e3a5f;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.specials-featured-btn:hover { background: #fbbf24; }

.specials-featured-right { flex-shrink: 0; }

.specials-featured-price-box {
  background: rgba(255,255,255,0.12);
  border-radius: 1rem;
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-width: 140px;
}

.specials-featured-original {
  display: block;
  font-size: 1rem;
  opacity: 0.6;
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}

.specials-featured-price {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.specials-featured-per-day {
  display: block;
  font-size: 0.8rem;
  opacity: 0.65;
}

@media (max-width: 600px) {
  .specials-featured-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .specials-featured-right { width: 100%; }
  .specials-featured-price-box { text-align: left; padding: 1rem 1.25rem; }
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.special-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.special-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  color: white;
}
.special-card--blue  .special-card-header { background: var(--blue); }
.special-card--green .special-card-header { background: var(--green); }
.special-card--red   .special-card-header { background: var(--red); }
.special-card--purple .special-card-header { background: #7c3aed; }

.special-card-icon { font-size: 1.6rem; line-height: 1; }
.special-card-day {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  margin: 0;
}

.special-card-body { padding: 1.1rem 1.25rem; }

.special-deal { padding: 0.6rem 0; }
.special-deal--divider { border-top: 1px solid #eee; margin-top: 0.6rem; padding-top: 1rem; }

.special-deal-time {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
}

.special-deal-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0 0 0.3rem;
}

.special-deal-desc {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.specials-note {
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .specials-grid { grid-template-columns: 1fr; }
}

/* ── FIELD TRIPS PAGE ── */
.fieldtrip-hero {
  background: linear-gradient(135deg, #0c2d6b 0%, #00599c 55%, #08a635 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.fieldtrip-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.25rem 0 0.5rem;
}
.fieldtrip-hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto 0.5rem;
}
.fieldtrip-hero .section-tag { color: var(--yellow); }

.fieldtrip-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.fieldtrip-section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: var(--dark);
  text-align: center;
  margin: 0 0 1.5rem;
}

/* Requirements */
.fieldtrip-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.fieldtrip-req-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}
.fieldtrip-req-icon { font-size: 1.4rem; flex-shrink: 0; }

/* Packages */
.fieldtrip-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.fieldtrip-pkg {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  position: relative;
}
.fieldtrip-pkg--featured {
  box-shadow: 0 8px 36px rgba(0,89,156,0.22);
  transform: translateY(-6px);
}
.fieldtrip-pkg-badge {
  background: var(--yellow);
  color: var(--dark);
  text-align: center;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  padding: 0.3rem;
  letter-spacing: 0.5px;
}
.fieldtrip-pkg--blue   { border-top: 4px solid var(--blue); }
.fieldtrip-pkg--green  { border-top: 4px solid var(--green); }
.fieldtrip-pkg--red    { border-top: 4px solid var(--red); }
.fieldtrip-pkg--purple { border-top: 4px solid #7c3aed; }

.fieldtrip-pkg-icon { font-size: 2rem; text-align: center; padding: 1.25rem 0 0.25rem; }
.fieldtrip-pkg-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--dark);
  text-align: center;
  margin: 0 0 0.5rem;
}
.fieldtrip-pkg-price {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--blue);
  text-align: center;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.fieldtrip-pkg-per {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
.fieldtrip-pkg-features {
  list-style: none;
  padding: 0 1.25rem;
  margin: 0 0 1.25rem;
  flex: 1;
}
.fieldtrip-pkg-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: #444;
}
.fieldtrip-pkg-features li::before { content: "✓ "; color: var(--green); font-weight: 800; }
.fieldtrip-pkg-features li:last-child { border-bottom: none; }

.fieldtrip-pkg-btn {
  display: block;
  margin: 0 1.25rem 1.25rem;
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.fieldtrip-pkg--blue   .fieldtrip-pkg-btn { background: var(--blue); }
.fieldtrip-pkg--green  .fieldtrip-pkg-btn { background: var(--green); }
.fieldtrip-pkg--red    .fieldtrip-pkg-btn { background: var(--red); }
.fieldtrip-pkg--purple .fieldtrip-pkg-btn { background: #7c3aed; }
.fieldtrip-pkg-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* CTA */
.fieldtrip-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);
  color: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
}
.fieldtrip-cta h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}
.fieldtrip-cta p { opacity: 0.9; margin: 0 0 1.5rem; }
.fieldtrip-cta p a { color: var(--yellow); }
.fieldtrip-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.fieldtrip-btn-call { border-color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .fieldtrip-req-grid { grid-template-columns: 1fr; }
  .fieldtrip-pkg-grid { grid-template-columns: 1fr; }
  .fieldtrip-pkg--featured { transform: none; }
}

@media (max-width: 600px) {
  .hd { font-size: 1.4rem; }
  .hd-slide { font-size: 1.8rem; }
  .cf { --s: 6px; }
  .hero-ribbon-text { font-size: 0.72rem; }
  .hero-ribbon-pill { display: none; }
  .hero { padding: 0 0 2rem; }
  .hero-content { padding: 0.75rem 1rem 5rem; }
  .hero-slide-bg { display: none; }
  .btn-hero-party, .btn-hero-outline { max-width: 100%; }
}

/* ── EVENTS PAGE ── */
.events-hero {
  background: linear-gradient(135deg, #2d1b69 0%, #7c3aed 55%, #db2777 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
}
.events-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
}
.events-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.events-hero .section-tag { color: var(--yellow); }

.events-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ─ Event card base ─ */
.events-upcoming {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.15);
}

.event-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.event-card:hover .event-card-img img { transform: scale(1.04); }

.event-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Fredoka One', cursive;
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

/* "Next Event" badge — hidden by default, shown by JS */
.event-next-badge {
  display: none;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--red);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.event-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-date-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.event-date {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-time {
  font-size: 0.8rem;
  color: #777;
  font-weight: 600;
}

.event-card-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--dark);
  margin: 0 0 0.5rem;
}
.event-card-desc {
  font-size: 0.92rem;
  color: #555;
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.event-card-details {
  font-size: 0.88rem;
  color: #777;
  margin: 0 0 1rem;
  line-height: 1.6;
  flex: 1;
}
.event-book-btn {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s, transform 0.15s;
}
.event-book-btn:hover { background: #b51d13; transform: translateY(-2px); }

/* ─ Featured "Next Event" card — JS adds this class ─ */
.event-card--next {
  grid-column: 1 / -1;
  flex-direction: row;
  border: 3px solid var(--red);
}
.event-card--next .event-card-img {
  width: 45%;
  aspect-ratio: unset;
  flex-shrink: 0;
}
.event-card--next .event-next-badge { display: block; }
.event-card--next .event-card-title { font-size: 1.7rem; }
.event-card--next .event-card-body { padding: 2rem; justify-content: center; }
.event-card--next .event-date { font-size: 0.9rem; }

/* ─ Past events ─ */
.events-past-section {
  margin-top: 3rem;
  border-top: 2px dashed #e0e0e0;
  padding-top: 2rem;
}
.events-past-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
}
.events-past-toggle:hover { color: var(--dark); }
.events-past-chevron { transition: transform 0.2s; flex-shrink: 0; }
.events-past-count { font-size: 0.85rem; font-family: 'Nunito', sans-serif; font-weight: 700; }

.events-past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.event-card--past {
  opacity: 0.55;
  filter: grayscale(0.4);
  transform: none !important;
  box-shadow: none !important;
  border: 1px solid #eee;
}
.event-card--past:hover { opacity: 0.75; }

/* ─ Empty state ─ */
.events-empty {
  text-align: center;
  padding: 4rem 1.5rem;
}
.events-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.events-empty h2 { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--dark); margin: 0 0 0.75rem; }
.events-empty p { color: #666; margin: 0 0 1.5rem; }
.events-empty-social { display: flex; gap: 1rem; justify-content: center; }
.events-fb-btn { border-color: rgba(0,0,0,0.2); color: var(--dark) !important; }

@media (max-width: 768px) {
  .events-upcoming { grid-template-columns: 1fr; }
  .event-card--next { flex-direction: column; }
  .event-card--next .event-card-img { width: 100%; aspect-ratio: 16/9; }
  .events-past-grid { grid-template-columns: 1fr; }
}

/* Event image lightbox */
.event-img-trigger {
  display: block;
  width: 100%; height: 100%;
  border: none; padding: 0; background: none;
  cursor: zoom-in;
}
.event-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.event-lightbox[hidden] { display: none; }
.event-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: block;
}
.event-lightbox-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.event-lightbox-close:hover { opacity: 1; }
