/* ============================================================
   NEON SPECTRAL - theme styles
   You normally won't need to touch this. Colours are grouped
   at the top under :root if you ever want to tweak them.
   ============================================================ */

:root {
  --bg: #05060a;
  --bg-2: #0a0f14;
  --proton: #39ff14;       /* main neon green */
  --proton-soft: #5fff8f;
  --cyan: #2bd1ff;
  --ecto: #b388ff;         /* purple accent */
  --text: #e8fff0;
  --muted: #8fb8a4;
  --card: rgba(20, 32, 26, 0.45);
  --border: rgba(57, 255, 20, 0.22);
  --maxw: 1100px;
  --glow: 0 0 8px rgba(57,255,20,.6), 0 0 22px rgba(57,255,20,.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* layered glow background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(57,255,20,.10), transparent 70%),
    radial-gradient(50% 40% at 85% 30%, rgba(179,136,255,.10), transparent 70%),
    radial-gradient(40% 40% at 10% 70%, rgba(43,209,255,.08), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

#fog {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .6;
}

/* ---------- floating ghosts ---------- */
.ghosts { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.ghost {
  position: absolute;
  width: 64px; height: 80px;
  fill: rgba(95, 255, 143, .12);
  filter: drop-shadow(0 0 12px rgba(57,255,20,.35));
  animation: float 12s ease-in-out infinite;
}
.ghost .eye { fill: var(--bg); }
.g1 { top: 18%; left: 8%;  animation-delay: 0s;   transform: scale(1.1); }
.g2 { top: 60%; left: 80%; animation-delay: -4s;  transform: scale(.8); }
.g3 { top: 78%; left: 18%; animation-delay: -8s;  transform: scale(1.3); opacity:.7; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-28px) rotate(2deg); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(5,6,10,.7);
  backdrop-filter: blur(12px);
  padding: 12px 28px;
  box-shadow: 0 1px 0 var(--border);
}
.brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--proton-soft);
  text-decoration: none;
  text-shadow: var(--glow);
  font-size: 1.1rem;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  opacity: .85;
  transition: color .2s, opacity .2s, text-shadow .2s;
}
.nav-links a:hover { color: var(--proton-soft); opacity: 1; text-shadow: var(--glow); }
.nav-cta {
  border: 1px solid var(--proton);
  border-radius: 999px;
  padding: 8px 18px;
  text-shadow: none !important;
}
.nav-cta:hover { background: rgba(57,255,20,.12); box-shadow: var(--glow); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--proton-soft); display: block; transition: .3s; }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: saturate(1.2) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 50% 45%, transparent, rgba(5,6,10,.55) 80%),
    linear-gradient(180deg, rgba(5,6,10,.55), rgba(5,6,10,.35) 40%, rgba(5,6,10,.95));
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: .72rem;
  color: var(--cyan);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 11vw, 7rem);
  line-height: .95;
  letter-spacing: 2px;
  color: #eafff0;
  text-shadow:
    0 0 10px rgba(57,255,20,.7),
    0 0 30px rgba(57,255,20,.5),
    0 0 60px rgba(57,255,20,.3);
  animation: flicker 4s infinite alternate, fadeUp .9s .3s both;
}
.hero-tagline {
  margin-top: 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 10px rgba(57,255,20,.7), 0 0 30px rgba(57,255,20,.5), 0 0 60px rgba(57,255,20,.3);
    opacity: 1;
  }
  20%, 24%, 55% { text-shadow: none; opacity: .7; }
}
@keyframes fadeUp { from { opacity:0; transform: translateY(24px);} to { opacity:1; transform:none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .25s, background .25s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--proton);
  color: #04200a;
  box-shadow: 0 0 14px rgba(57,255,20,.5), 0 0 40px rgba(57,255,20,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 22px rgba(57,255,20,.8), 0 0 60px rgba(57,255,20,.4); }
.btn-ghost {
  color: var(--proton-soft);
  border-color: var(--border);
  background: rgba(57,255,20,.04);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--proton); box-shadow: var(--glow); }

/* ---------- sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 24px;
}
.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 70%;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--proton), transparent);
  box-shadow: var(--glow);
  border-radius: 3px;
}
.section-lead { color: var(--muted); max-width: 640px; margin-bottom: 36px; }

.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.about-body { font-size: 1.1rem; }
.about-body p { margin-bottom: 18px; color: #d4f7e2; }
.about-figure { margin: 0; }
.about-figure img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 50px rgba(57,255,20,.18);
  display: block;
}
@media (max-width: 760px) { .about-wrap { grid-template-columns: 1fr; } }

/* ---------- about slideshow ---------- */
.slideshow {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 50px rgba(57,255,20,.18);
  background: #0b110d;
  aspect-ratio: 4 / 3;
}
.ss-track { position: absolute; inset: 0; }
.ss-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .8s ease; }
.ss-slide.active { opacity: 1; }
/* blurred fill so the whole photo shows without awkward cropping */
.ss-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(26px) brightness(.45) saturate(1.1);
  transform: scale(1.25);
}
.ss-slide img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}
.ss-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 14px 12px;
  color: #eafff0; font-size: .9rem;
  background: linear-gradient(transparent, rgba(5,6,10,.88));
}
.ss-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(5,6,10,.5); color: var(--proton-soft);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  backdrop-filter: blur(4px); z-index: 2;
  transition: border-color .2s, box-shadow .2s;
}
.ss-arrow:hover { border-color: var(--proton); box-shadow: var(--glow); }
.ss-prev { left: 10px; } .ss-next { right: 10px; }
.ss-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.ss-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.4); transition: .2s; }
.ss-dot.active { background: var(--proton); box-shadow: var(--glow); }

/* larger, centered slideshow (e.g. Famous Faces) */
.slideshow-lg {
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
}
@media (max-width: 560px) { .slideshow-lg { aspect-ratio: 4 / 5; } }

/* ---------- inner page header ---------- */
.page-hero { position: relative; padding: 150px 24px 20px; text-align: center; }
.page-hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: #eafff0;
  text-shadow: 0 0 10px rgba(57,255,20,.6), 0 0 30px rgba(57,255,20,.35);
}
.page-hero p { color: var(--muted); max-width: 640px; margin: 14px auto 0; }

/* ---------- nav active ---------- */
.nav-links a.active { color: var(--proton-soft); opacity: 1; text-shadow: var(--glow); }
.nav-links a.nav-cta.active { background: rgba(57,255,20,.12); box-shadow: var(--glow); }

/* ---------- home tiles ---------- */
.home-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.home-tile {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.home-tile:hover { transform: translateY(-6px); border-color: var(--proton); box-shadow: 0 10px 40px rgba(57,255,20,.15), var(--glow); }
.home-tile .ico { font-size: 2rem; display: block; margin-bottom: 10px; filter: drop-shadow(0 0 8px rgba(57,255,20,.5)); }
.home-tile h3 { font-family: "Orbitron", sans-serif; color: var(--proton-soft); font-size: 1.05rem; margin-bottom: 6px; }
.home-tile p { color: var(--muted); font-size: .95rem; }
.home-tile .go { display: inline-block; margin-top: 12px; color: var(--proton-soft); font-weight: 700; font-size: .9rem; }

/* ---------- featured video ---------- */
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 50px rgba(57,255,20,.18);
  background: #000;
  max-width: 760px;
}
.video-frame video { width: 100%; display: block; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0b110d;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover { transform: translateY(-4px); border-color: var(--proton); box-shadow: 0 10px 36px rgba(57,255,20,.2); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 12px 10px;
  font-size: .85rem;
  text-align: left;
  color: #eafff0;
  background: linear-gradient(transparent, rgba(5,6,10,.9));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover .gallery-cap, .gallery-item:focus-visible .gallery-cap { opacity: 1; transform: none; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  background: rgba(2,4,6,.92);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(57,255,20,.25);
}
.lightbox-caption { margin-top: 16px; color: var(--proton-soft); font-family: "Orbitron", sans-serif; letter-spacing: 1px; }
.lightbox-close {
  position: absolute;
  top: 18px; right: 24px;
  background: none; border: 0;
  color: var(--proton-soft);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s, text-shadow .2s;
}
.lightbox-close:hover { transform: scale(1.15); text-shadow: var(--glow); }

/* ---------- prop grid ---------- */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.prop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  backdrop-filter: blur(6px);
}
.prop-card:hover {
  transform: translateY(-6px);
  border-color: var(--proton);
  box-shadow: 0 10px 40px rgba(57,255,20,.15), var(--glow);
}
.prop-card .emoji { font-size: 2.2rem; display: block; margin-bottom: 12px; filter: drop-shadow(0 0 8px rgba(57,255,20,.5)); }
.prop-card h3 { font-family: "Orbitron", sans-serif; font-size: 1.05rem; margin-bottom: 8px; color: var(--proton-soft); }
.prop-card p { color: var(--muted); font-size: .95rem; }

/* ---------- charities ---------- */
.amount {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 28px;
}
.amount .big {
  display: block;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--proton-soft);
  text-shadow: var(--glow);
  line-height: 1;
}
.amount .lbl { color: var(--muted); text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; }

.charity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.charity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--proton);
  border-radius: 12px;
  padding: 22px;
  transition: transform .25s, box-shadow .25s;
  backdrop-filter: blur(6px);
}
.charity-card:hover { transform: translateX(6px); box-shadow: 0 6px 30px rgba(57,255,20,.12); }
.charity-card .year { color: var(--cyan); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; }
.charity-card h3 { font-family: "Orbitron", sans-serif; font-size: 1.15rem; margin: 6px 0; }
.charity-card p { color: var(--muted); font-size: .95rem; }

/* ---------- booking ---------- */
.book { text-align: center; }
.book .section-title { display: inline-block; }
.book .section-lead { margin: 0 auto 32px; }
.book-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.contact-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.contact-link {
  color: var(--proton-soft);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.contact-link:hover { border-color: var(--proton); box-shadow: var(--glow); transform: translateY(-2px); }

/* ---------- recognition ---------- */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.rec-card {
  position: relative;
  background: linear-gradient(160deg, rgba(57,255,20,.08), rgba(20,32,26,.45));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px 26px;
  backdrop-filter: blur(6px);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.rec-card:hover {
  transform: translateY(-6px);
  border-color: var(--proton);
  box-shadow: 0 10px 40px rgba(57,255,20,.18), var(--glow);
}
.rec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(57,255,20,.12);
  border: 1px solid var(--proton);
  color: var(--proton-soft);
  font-size: 1.1rem;
  box-shadow: var(--glow);
}
.rec-card h3 { font-family: "Orbitron", sans-serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--proton-soft); }
.rec-card p { color: var(--muted); font-size: .95rem; }

/* ---------- social bar ---------- */
.social-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-socials { margin-top: 30px; opacity: 0; animation: fadeUp .8s .9s forwards; }
.footer-socials { margin-bottom: 22px; }
.book-follow { color: var(--muted); margin: 34px 0 18px; font-size: .95rem; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(57,255,20,.04);
  color: var(--proton-soft);
  text-decoration: none;
  font-size: .8rem;
  transition: transform .2s, box-shadow .25s, border-color .2s, background .2s;
}
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.social-link:hover {
  transform: translateY(-4px);
  border-color: var(--proton);
  background: rgba(57,255,20,.12);
  box-shadow: var(--glow);
}

/* ---------- footer ---------- */
.footer {
  text-align: center;
  padding: 50px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.footer-built { font-size: .85rem; opacity: .6; margin-top: 8px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- mobile ---------- */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(70vw, 280px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: rgba(5,6,10,.96);
    backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform .35s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.2rem; }
}

/* ---------- accessibility: respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  #fog { display: none; }
}
