/* =====================================================
  HIDDEN LAKE LIGHTS WEBSITE
  FULL STYLE.CSS
===================================================== */

:root {
  --red: #ff173d;
  --deep-red: #9b0018;
  --green: #14ff7a;
  --deep-green: #007a3d;
  --gold: #ffd166;
  --blue: #4cc9f0;
  --dark: #050608;
  --dark-2: #0b0f14;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --white: #ffffff;
  --muted: #c9d1d9;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 23, 61, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(20, 255, 122, 0.06), transparent 42%),
    linear-gradient(180deg, #050608 0%, #090b0f 45%, #050608 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: var(--gold);
}

/* ===== BACKGROUND EFFECTS ===== */
.background-glow {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 23, 61, 0.08), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(20, 255, 122, 0.06), transparent 34%),
    radial-gradient(circle at 50% 90%, rgba(76, 201, 240, 0.06), transparent 38%);
  filter: blur(8px);
}

.snow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    radial-gradient(circle, white 0 1px, transparent 1.5px),
    radial-gradient(circle, var(--gold) 0 1px, transparent 1.5px),
    radial-gradient(circle, var(--green) 0 1px, transparent 1.5px),
    radial-gradient(circle, var(--red) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 240px 240px, 300px 300px;
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from {
    background-position: 0 0, 30px 60px, 80px 20px, 140px 80px;
  }

  to {
    background-position: 0 420px, 30px 500px, 80px 460px, 140px 540px;
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  position: relative;
  z-index: 2000;
  background: linear-gradient(90deg, var(--deep-red), var(--red), var(--green), var(--deep-green));
  background-size: 300% 100%;
  animation: gradientMove 6s ease-in-out infinite;
  text-align: center;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 30px rgba(255, 23, 61, 0.2);
}

@keyframes gradientMove {
  0%, 100% {
    background-position: left;
  }

  50% {
    background-position: right;
  }
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.45);
    opacity: 0.65;
  }
}

/* ===== NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(5, 6, 8, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-bulb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, white, var(--gold) 18%, var(--red) 45%, var(--green) 78%);
  box-shadow:
    0 0 12px var(--gold),
    0 0 30px rgba(20, 255, 122, 0.5);
}

.nav-links {
  display: flex;
  gap: 14px;
  font-weight: 800;
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-weight: 900;
  overflow: visible;
  transition: 0.25s ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, rgba(255, 23, 61, 0.85), rgba(20, 255, 122, 0.75));
  box-shadow:
    0 0 14px rgba(255, 23, 61, 0.55),
    0 0 24px rgba(20, 255, 122, 0.35);
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 13px;
  border-radius: 12px;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ===== HALLOWEEN NAV BUTTON ===== */
.halloween-btn {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, #ff6a00, #7a0000) !important;
  border: 1px solid rgba(255, 106, 0, 0.9) !important;
  color: #fff !important;
  text-shadow:
    0 0 8px #ff6a00,
    0 0 18px #ff0000;
  box-shadow:
    0 0 12px rgba(255, 106, 0, 0.85),
    0 0 26px rgba(255, 0, 0, 0.55);
  animation: halloweenPulse 1.25s infinite ease-in-out;
}

.halloween-btn::before {
  content: "";
  position: absolute;
  left: 18%;
  bottom: -12px;
  width: 8px;
  height: 18px;
  background: #8b0000;
  border-radius: 0 0 999px 999px;
  box-shadow:
    26px 5px 0 #b00000,
    55px -3px 0 #700000,
    82px 7px 0 #a00000;
  z-index: -1;
  animation: bloodDrip 1.6s infinite ease-in-out;
}

.halloween-btn::after {
  content: "";
  position: absolute;
  left: 31%;
  bottom: -22px;
  width: 7px;
  height: 7px;
  background: #b00000;
  border-radius: 50%;
  box-shadow:
    42px 6px 0 #7a0000,
    74px -2px 0 #b00000;
  z-index: -1;
  animation: bloodDrops 1.6s infinite ease-in-out;
}

@keyframes halloweenPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(255, 106, 0, 0.8),
      0 0 24px rgba(255, 0, 0, 0.45);
  }

  50% {
    transform: scale(1.07);
    box-shadow:
      0 0 20px rgba(255, 106, 0, 1),
      0 0 42px rgba(255, 0, 0, 0.8);
  }
}

@keyframes bloodDrip {
  0%, 100% {
    height: 14px;
    opacity: 0.85;
  }

  50% {
    height: 24px;
    opacity: 1;
  }
}

@keyframes bloodDrops {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.65;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ===== MAIN HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 20px 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.78)),
    url("images/2025-Christmas-1.JPEG") center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 23, 61, 0.18), transparent 38%),
    radial-gradient(circle at 78% 42%, rgba(20, 255, 122, 0.14), transparent 36%),
    linear-gradient(120deg, rgba(5, 6, 8, 0.88) 0%, transparent 52%, rgba(5, 6, 8, 0.76) 100%);
}

.hero-content {
  max-width: 1000px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(4.4rem, 13vw, 12rem);
  line-height: 0.82;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.32),
    0 0 34px rgba(255, 23, 61, 0.45),
    0 0 60px rgba(20, 255, 122, 0.25);
}

.hero-text {
  max-width: 780px;
  margin: 24px auto 0;
  color: #ecf3f7;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 950;
  transition: 0.25s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--green));
  box-shadow:
    0 15px 35px rgba(255, 23, 61, 0.25),
    0 0 25px rgba(20, 255, 122, 0.16);
}

.button.glass {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.12);
}

.light-string {
  position: absolute;
  top: 24px;
  left: 50%;
  width: min(980px, 92vw);
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.light-string::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.35);
}

.light-string span {
  position: relative;
  width: 16px;
  height: 26px;
  margin-top: 8px;
  border-radius: 50% 50% 45% 45%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red), 0 0 36px var(--red);
  animation: bulbBlink 1.8s infinite;
}

.light-string span:nth-child(2n) {
  background: var(--green);
  box-shadow: 0 0 18px var(--green), 0 0 36px var(--green);
  animation-delay: 0.35s;
}

.light-string span:nth-child(3n) {
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold), 0 0 36px var(--gold);
  animation-delay: 0.65s;
}

@keyframes bulbBlink {
  0%, 100% {
    opacity: 1;
    filter: brightness(1.2);
  }

  50% {
    opacity: 0.45;
    filter: brightness(0.7);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 170px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ===== STATS ===== */
.stats-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: -84px auto 80px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 26px 20px;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-icon {
  font-size: 1.8rem;
}

.stat-card h3 {
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.stat-card p {
  color: var(--muted);
  font-weight: 700;
  margin-top: 6px;
}

/* ===== GENERAL SECTIONS ===== */
.section,
.split-section,
.donation-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

h2 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading p,
.split-text p,
.donation-card p,
.feature p,
.contact-card p {
  color: var(--muted);
}

/* ===== ABOUT ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split-text {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-list {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.feature span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,23,61,0.9), rgba(20,255,122,0.9));
}

.feature h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.diagonal-photo {
  min-height: 540px;
  border-radius: 38px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 7%, 90% 100%, 0 93%);
}

.about-photo {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.34)),
    url("images/about-us-hll.jpg");
}

/* ===== STACKED ABOUT PHOTOS ===== */
.about-photo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;

  margin-top: -45px;
  padding-top: 35px;
}

.about-photo-stack .about-photo {
  width: 100%;
  min-height: 420px;

  background-position: center 20%;

  transform: rotate(4deg);

  transition: 0.3s ease;
}

.about-photo-second {
  width: 78%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 90px rgba(0,0,0,0.45),
    0 0 30px rgba(255,23,61,0.15);
  transform: rotate(-5deg);
  transition: transform 0.3s ease, filter 0.3s ease;
}

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

.about-photo-stack .about-photo:hover,
.about-photo-second:hover {
  transform: scale(1.03) rotate(0deg);
  filter: brightness(1.08);
}


/* ===== PANELS ===== */
.dark-panel {
  width: 100%;
  max-width: none;
  padding: 110px 16px;
  background:
    linear-gradient(135deg, rgba(255, 23, 61, 0.13), transparent 32%),
    linear-gradient(225deg, rgba(20, 255, 122, 0.12), transparent 32%),
    rgba(255,255,255,0.035);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== SCHEDULE ===== */
.schedule-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.schedule-card {
  position: relative;
  padding: 34px 24px;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(135deg, transparent, rgba(255,23,61,0.4), rgba(20,255,122,0.35), transparent);
  opacity: 0;
  transition: 0.25s ease;
}

.schedule-card:hover::before,
.schedule-card.featured::before {
  opacity: 1;
}

.schedule-card h3 {
  color: var(--gold);
  font-size: 1.35rem;
}

.schedule-card p {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 950;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.18);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

/* ===== DONATION ===== */
.donation-card {
  position: relative;
  padding: clamp(38px, 7vw, 76px);
  text-align: center;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(155,0,24,0.88), rgba(0,122,61,0.82)),
    url("images/Christmas-2023_edited.png") center/cover no-repeat;
  box-shadow:
    0 30px 90px rgba(0,0,0,0.52),
    0 0 55px rgba(255,23,61,0.18);
  overflow: hidden;
}

.donation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.18), transparent 26%),
    radial-gradient(circle at 78% 70%, rgba(255,209,102,0.16), transparent 28%);
  pointer-events: none;
}

.donation-card > * {
  position: relative;
  z-index: 1;
}

.donation-card h2 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.donation-card p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #f3f3f3;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-photo {
  position: relative;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.3s ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72));
}

.gallery-photo span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-weight: 950;
  color: white;
}

.gallery-photo:hover {
  transform: translateY(-6px) scale(1.01);
  filter: brightness(1.1);
}

.photo-one {
  grid-row: span 2;
  background-image: url("images/2025-Christmas-1.JPEG");
}

.photo-two {
  background-image: url("images/2025-happy-new-year.jpg");
}

.photo-three {
  background-image: url("images/2025-christmas-2.JPG");
}

.photo-four {
  grid-column: span 2;
  background-image: url("images/2020-christmas-1.jpg");
}

/* ===== CONTACT ===== */
.contact-section {
  padding-top: 40px;
}

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

.contact-card {
  display: block;
  padding: 30px 22px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.contact-card span {
  font-size: 2.2rem;
}

.contact-card h3 {
  color: var(--gold);
  margin: 10px 0 4px;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: var(--panel-strong);
}

footer {
  padding: 30px 16px;
  text-align: center;
  color: var(--muted);
  background: #020304;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
  HALLOWEEN PAGE
===================================================== */

body:has(.halloween-hero) {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 106, 0, 0.22), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(120, 0, 0, 0.22), transparent 30%),
    linear-gradient(180deg, #050000, #110000 45%, #020000);
}

/* ===== HALLOWEEN NAVBAR ===== */
.halloween-header {
  background: rgba(10, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 106, 0, 0.35);
}

.halloween-bulb {
  background:
    radial-gradient(circle at 30% 25%, white, #ffb347 18%, #ff6a00 45%, #7a0000 78%);
  box-shadow:
    0 0 12px #ff6a00,
    0 0 30px rgba(255, 0, 0, 0.7);
}

.halloween-nav-links a {
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
}

.halloween-nav-links a:hover {
  background: linear-gradient(135deg, #ff6a00, #7a0000);
  box-shadow:
    0 0 14px rgba(255, 106, 0, 0.75),
    0 0 26px rgba(255, 0, 0, 0.45);
}

.christmas-btn {
  background: linear-gradient(135deg, #ff173d, #14ff7a) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: white !important;
  box-shadow:
    0 0 14px rgba(255, 23, 61, 0.55),
    0 0 24px rgba(20, 255, 122, 0.45);
  animation: christmasPulse 1.6s infinite ease-in-out;
}

@keyframes christmasPulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(255, 23, 61, 0.5),
      0 0 20px rgba(20, 255, 122, 0.35);
  }

  50% {
    box-shadow:
      0 0 22px rgba(255, 23, 61, 0.9),
      0 0 42px rgba(20, 255, 122, 0.75);
  }
}

/* ===== HALLOWEEN HERO ===== */
.halloween-hero {
  min-height: 92vh;
  padding: 130px 20px 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.92)),
    url("images/halloween-1.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  clip-path: none;
}

.halloween-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 106, 0, 0.18), transparent 32%),
    radial-gradient(circle at 75% 38%, rgba(140, 0, 0, 0.22), transparent 36%),
    linear-gradient(120deg, rgba(0,0,0,0.92), transparent 48%, rgba(0,0,0,0.82));
  animation: hauntedGlow 4s infinite alternate;
}

.halloween-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12), transparent 25%),
    radial-gradient(circle at 50% 75%, rgba(255,255,255,0.1), transparent 28%),
    radial-gradient(circle at 80% 85%, rgba(255,255,255,0.12), transparent 25%);
  filter: blur(22px);
  opacity: 0.35;
  animation: fogMove 12s linear infinite;
}

.halloween-hero > div:not(.lightning):not(.bats):not(.pumpkin-row) {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* smaller top pumpkin so title centers better */
.halloween-hero h1 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(4.8rem, 12vw, 12rem);
  line-height: 0.82;
  color: #ff6a00;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-shadow:
    0 0 10px #ff6a00,
    0 0 28px #ff0000,
    0 0 60px #7a0000,
    5px 5px 0 #1a0000;
  animation: spookyTitle 2.8s infinite;
}

.halloween-hero p {
  margin-top: 24px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: #ffe0c2;
  font-weight: 900;
  text-align: center;
  text-shadow:
    0 0 10px rgba(255, 106, 0, 0.8),
    0 0 22px rgba(0, 0, 0, 1);
}

@keyframes fogMove {
  0% {
    transform: translateX(-4%) translateY(1%);
  }

  50% {
    transform: translateX(4%) translateY(-2%);
  }

  100% {
    transform: translateX(-4%) translateY(1%);
  }
}

@keyframes hauntedGlow {
  0% {
    opacity: 0.75;
    filter: brightness(0.9);
  }

  50% {
    opacity: 1;
    filter: brightness(1.25);
  }

  100% {
    opacity: 0.82;
    filter: brightness(0.95);
  }
}

@keyframes spookyTitle {
  0%, 100% {
    transform: translateX(0);
    filter: brightness(1);
  }

  10% {
    transform: translateX(-2px);
  }

  12% {
    transform: translateX(2px);
    filter: brightness(1.45);
  }

  14% {
    transform: translateX(0);
  }

  60% {
    filter: brightness(0.85);
  }

  62% {
    filter: brightness(1.6);
  }
}

/* ===== HALLOWEEN EFFECTS ===== */
.lightning {
  position: absolute !important;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: lightningFlash 7s infinite;
}

@keyframes lightningFlash {
  0%, 88%, 100% {
    opacity: 0;
  }

  89% {
    opacity: 0.65;
  }

  90% {
    opacity: 0;
  }

  91% {
    opacity: 0.35;
  }

  92% {
    opacity: 0;
  }
}

.bats {
  position: absolute !important;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.bat {
  position: absolute;
  left: -80px;
  font-size: 2rem;
  opacity: 0.75;
  filter: drop-shadow(0 0 8px black);
  animation: flyBat 12s linear infinite;
}

.bat:nth-child(1) {
  top: 22%;
  animation-delay: 0s;
}

.bat:nth-child(2) {
  top: 34%;
  animation-delay: 3s;
  font-size: 1.4rem;
}

.bat:nth-child(3) {
  top: 18%;
  animation-delay: 6s;
  font-size: 2.4rem;
}

@keyframes flyBat {
  0% {
    transform: translateX(-100px) translateY(0) scale(1);
  }

  30% {
    transform: translateX(35vw) translateY(-25px) scale(1.15);
  }

  60% {
    transform: translateX(70vw) translateY(18px) scale(0.9);
  }

  100% {
    transform: translateX(110vw) translateY(-10px) scale(1.1);
  }
}

.pumpkin-row {
  position: absolute !important;
  left: 50%;
  bottom: 70px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 26px;
  pointer-events: none;
}

.pumpkin {
  font-size: clamp(2rem, 5vw, 4rem);
  filter:
    drop-shadow(0 0 10px #ff6a00)
    drop-shadow(0 0 26px #ff0000);
  animation: pumpkinGlow 1.8s infinite alternate;
}

.pumpkin:nth-child(2) {
  animation-delay: 0.4s;
}

.pumpkin:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes pumpkinGlow {
  from {
    transform: translateY(0) scale(1);
    filter:
      drop-shadow(0 0 8px #ff6a00)
      drop-shadow(0 0 18px #ff0000);
  }

  to {
    transform: translateY(-8px) scale(1.08);
    filter:
      drop-shadow(0 0 18px #ff6a00)
      drop-shadow(0 0 38px #ff0000);
  }
}

/* ===== HALLOWEEN SCHEDULE ===== */
.halloween-schedule {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 0, 0.25), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(120, 0, 0, 0.3), transparent 35%),
    #050000;
  position: relative;
  overflow: hidden;
}

.halloween-schedule .section-heading .eyebrow,
.halloween-gallery-section .eyebrow,
.halloween-contact-section .eyebrow {
  color: #ff6a00;
}

.halloween-schedule .schedule-card {
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.18),
    rgba(120, 0, 0, 0.15)
  );
  border: 1px solid rgba(255, 106, 0, 0.4);
  box-shadow:
    0 0 18px rgba(255, 106, 0, 0.25),
    0 0 40px rgba(120, 0, 0, 0.3);
}

.halloween-schedule .schedule-card::before {
  display: none;
}

.halloween-schedule .schedule-card h3 {
  color: #ff6a00;
}

.halloween-schedule .schedule-card p {
  color: #fff;
}

.halloween-schedule .schedule-card.featured {
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.35),
    rgba(120, 0, 0, 0.3)
  );
  box-shadow:
    0 0 25px rgba(255, 106, 0, 0.5),
    0 0 60px rgba(120, 0, 0, 0.4);
}

/* ===== HALLOWEEN GALLERY ===== */
.halloween-gallery-section {
  background:
    radial-gradient(circle at center, rgba(255, 106, 0, 0.12), transparent 35%),
    #070000;
  position: relative;
  overflow: hidden;
}

.halloween-photo-one {
  grid-row: span 2;
  background-image: url("images/2025-halloween-1.jpg");
}

.halloween-photo-two {
  background-image: url("images/halloween-2.jpeg");
}

.halloween-photo-three {
  background-image: url("images/halloween-3.jpeg");
}

.halloween-photo-four {
  grid-column: span 2;
  background-image: url("images/halloween-1.jpg");
}

/* ===== HALLOWEEN CONTACT ===== */
.halloween-contact-section {
  background:
    radial-gradient(circle at center, rgba(255, 106, 0, 0.12), transparent 35%),
    #050000;
}

/* ===== SPOOKY HOVER ===== */
.halloween-schedule .schedule-card:hover,
.halloween-gallery-section .gallery-photo:hover,
.halloween-contact-section .contact-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 24px rgba(255, 106, 0, 0.45),
    0 0 55px rgba(160, 0, 0, 0.42);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(5, 6, 8, 0.97);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    min-height: 86vh;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .light-string {
    top: 18px;
  }

  .stats-wrap,
  .split-section,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-wrap {
    margin-top: 24px;
  }

  .split-section {
    padding-top: 40px;
  }

  .diagonal-photo {
    min-height: 340px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .photo-one,
  .photo-four,
  .halloween-photo-one,
  .halloween-photo-four {
    grid-row: auto;
    grid-column: auto;
  }

  .halloween-hero {
    min-height: 86vh;
    padding: 110px 18px 150px;
  }

  .pumpkin-row {
    bottom: 48px;
    gap: 14px;
  }

  .bat {
    font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
  .top-bar {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section,
  .split-section,
  .donation-section {
    padding: 64px 0;
  }

  .split-text {
    padding: 22px;
  }

  .halloween-hero h1 {
    font-size: 4.4rem;
  }
  /* ===== CONTACT ICON LOGOS ===== */
.contact-card i {
  font-size: 2.4rem;
}

/* Facebook blue */
.contact-card i.fa-facebook {
  color: #1877f2;
  text-shadow: 0 0 10px rgba(24, 119, 242, 0.6);
}

/* YouTube red */
.contact-card i.fa-youtube {
  color: #ff0000;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

/* Email */
.contact-card i.fa-envelope {
  color: #ffd166;
}
}
/* =====================================================
  CONTACT ICON UPGRADE (INSANE MODE)
===================================================== */

.contact-card {
  position: relative;
  overflow: hidden;
}

/* ICON BASE */
.contact-card i {
  font-size: 2.5rem;
  transition: 0.3s ease;
}

/* FACEBOOK */
.contact-card i.fa-facebook {
  color: #1877f2;
  text-shadow:
    0 0 10px rgba(24, 119, 242, 0.6),
    0 0 25px rgba(24, 119, 242, 0.4);
}

/* YOUTUBE */
.contact-card i.fa-youtube {
  color: #ff0000;
  text-shadow:
    0 0 12px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.5);
}

/* EMAIL */
.contact-card i.fa-envelope {
  color: #ffd166;
  text-shadow:
    0 0 10px rgba(255, 209, 102, 0.6),
    0 0 25px rgba(255, 209, 102, 0.4);
}

/* ===== LIGHT GLOW PULSE ===== */
.contact-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(255, 23, 61, 0.6),
    rgba(20, 255, 122, 0.6),
    rgba(255, 209, 102, 0.6)
  );

  opacity: 0;
  filter: blur(18px);
  transition: 0.3s ease;
  z-index: 0;
}

/* ===== HOVER EFFECT ===== */
.contact-card:hover {
  transform: translateY(-8px) scale(1.04);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover i {
  transform: scale(1.25) rotate(-3deg);
  filter: brightness(1.3);
}

/* ===== SUBTLE FLOAT ANIMATION ===== */
.contact-card {
  animation: floatCard 6s ease-in-out infinite;
}

.contact-card:nth-child(2) {
  animation-delay: 1.5s;
}

.contact-card:nth-child(3) {
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}
/* ===== LOGO IMAGE ===== */
.logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6))
          drop-shadow(0 0 12px rgba(255,0,0,0.4));
}
/* ===== HALLOWEEN CONTACT FIX ===== */

.halloween-contact-section .contact-card::before {
  background: linear-gradient(135deg,
    rgba(255, 106, 0, 0.7),   /* orange */
    rgba(120, 0, 0, 0.7),     /* dark red */
    rgba(255, 0, 0, 0.6)      /* blood red */
  );
}

.halloween-contact-section .contact-card:hover {
  transform: translateY(-8px) scale(1.04);
  background: rgba(255, 106, 0, 0.15);
  box-shadow:
    0 0 20px rgba(255, 106, 0, 0.6),
    0 0 40px rgba(120, 0, 0, 0.5),
    0 0 80px rgba(255, 0, 0, 0.4);
}
/* ===== DONATION STATS CARDS ===== */
.donation-stats-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: -40px auto 80px;
  position: relative;
  z-index: 10;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.donation-stat-card {
  padding: 26px 20px;
  text-align: center;
  border-radius: var(--radius);

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.17),
    rgba(255,255,255,0.07)
  );

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);

  transition: 0.25s ease;
}

.donation-stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 20px rgba(255, 23, 61, 0.35),
    0 0 40px rgba(20, 255, 122, 0.25);
}

.donation-stat-card h3 {
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.donation-stat-card p {
  color: var(--muted);
  font-weight: 700;
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 900px) {
  .donation-stats-wrap {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
}
/* =====================================================
  #6 PARALLAX SCROLL FEEL
===================================================== */

.hero,
.halloween-hero {
  background-attachment: fixed;
}

/* Mobile fix: fixed backgrounds can be glitchy on phones */
@media (max-width: 900px) {
  .hero,
  .halloween-hero {
    background-attachment: scroll;
  }
}

/* =====================================================
  #7 EXTRA HALLOWEEN SPOOKY EFFECTS
===================================================== */

/* random ghost drift */
/* ===== MULTIPLE FLOATING GHOSTS ===== */
.halloween-ghost {
  position: fixed;
  left: -90px;
  z-index: 3000;
  font-size: 3rem;
  pointer-events: none;
  opacity: 0;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,0.85))
    drop-shadow(0 0 28px rgba(255,106,0,0.45));
  animation: ghostDrift 18s infinite ease-in-out;
}

.ghost-one {
  top: 68%;
  animation-delay: 0s;
}

.ghost-two {
  top: 42%;
  font-size: 2.4rem;
  animation-delay: 6s;
}

.ghost-three {
  top: 78%;
  font-size: 3.4rem;
  animation-delay: 12s;
}

@keyframes ghostDrift {
  0%, 70% {
    transform: translateX(-140px) translateY(0) rotate(0deg);
    opacity: 0;
  }

  75% {
    opacity: 0.9;
  }

  88% {
    transform: translateX(55vw) translateY(-70px) rotate(6deg);
    opacity: 0.75;
  }

  100% {
    transform: translateX(115vw) translateY(-20px) rotate(-5deg);
    opacity: 0;
  }
}

/* spooky text flicker on Halloween headings */
.halloween-gallery-section h2,
.halloween-schedule h2,
.halloween-contact-section h2 {
  animation: halloweenHeadingFlicker 5s infinite;
}

@keyframes halloweenHeadingFlicker {
  0%, 100% {
    filter: brightness(1);
    text-shadow: 0 0 18px rgba(255,106,0,0.45);
  }

  48% {
    filter: brightness(0.85);
  }

  50% {
    filter: brightness(1.55);
    text-shadow:
      0 0 14px rgba(255,106,0,0.9),
      0 0 34px rgba(255,0,0,0.65);
  }

  52% {
    filter: brightness(0.9);
  }
}

/* extra haunted glow on Halloween cards */
.halloween-gallery-section .gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,106,0,0.22), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(120,0,0,0.25), transparent 30%);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.halloween-gallery-section .gallery-photo:hover::before {
  opacity: 1;
}
/* ===== HALLOWEEN TOP BAR ===== */
.halloween-top-bar {
  position: relative;
  z-index: 2000;
  background: linear-gradient(90deg, #1a001f, #ff6a00, #7a0000, #3b0066);
  background-size: 300% 100%;
  animation: halloweenGradientMove 6s ease-in-out infinite;
  text-align: center;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: white;
  box-shadow:
    0 8px 30px rgba(255, 106, 0, 0.25),
    0 0 24px rgba(120, 0, 0, 0.35);
}

.halloween-pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow:
    0 0 12px #ff6a00,
    0 0 24px #7a0000;
  animation: halloweenPulseDot 1.4s infinite;
}

@keyframes halloweenGradientMove {
  0%, 100% {
    background-position: left;
  }

  50% {
    background-position: right;
  }
}

@keyframes halloweenPulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.45);
    opacity: 0.65;
  }
}
.donation-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.schedule-card small {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}
.best-year-card {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.24), rgba(255, 23, 61, 0.18), rgba(20, 255, 122, 0.16)),
    rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 209, 102, 0.45);
  box-shadow:
    0 0 28px rgba(255, 209, 102, 0.28),
    0 24px 90px rgba(0,0,0,0.45);
}

.best-year-card h2 {
  color: var(--gold);
  text-shadow:
    0 0 18px rgba(255, 209, 102, 0.65),
    0 0 40px rgba(255, 23, 61, 0.35);
}

.best-year-card h3 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin: 8px 0 10px;
}

.best-year-card p:last-child {
  color: var(--muted);
  font-weight: 700;
}
.total-raised-card {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 42px;
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(20, 255, 122, 0.22), rgba(76, 201, 240, 0.18), rgba(255, 209, 102, 0.14)),
    rgba(255,255,255,0.08);
  border: 1px solid rgba(20, 255, 122, 0.38);
  box-shadow:
    0 0 30px rgba(20, 255, 122, 0.22),
    0 24px 90px rgba(0,0,0,0.45);
}

.total-raised-card h2 {
  color: var(--green);
  text-shadow:
    0 0 18px rgba(20, 255, 122, 0.7),
    0 0 42px rgba(76, 201, 240, 0.35);
}

.total-raised-card p:last-child {
  color: var(--muted);
  font-weight: 700;
}
.count-up {
  display: inline-block;
}
.total-raised-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.total-raised-card .eyebrow {
  margin-bottom: 10px;
}

.total-raised-card h2 {
  margin: 6px 0 10px;
}
.count-up.count-finished {
  animation: donationPop 0.9s ease-out;
}

@keyframes donationPop {
  0% {
    transform: scale(1);
    text-shadow:
      0 0 18px rgba(20, 255, 122, 0.7),
      0 0 42px rgba(76, 201, 240, 0.35);
  }

  45% {
    transform: scale(1.12);
    text-shadow:
      0 0 28px rgba(20, 255, 122, 1),
      0 0 70px rgba(20, 255, 122, 0.75),
      0 0 100px rgba(76, 201, 240, 0.55);
  }

  100% {
    transform: scale(1);
    text-shadow:
      0 0 18px rgba(20, 255, 122, 0.7),
      0 0 42px rgba(76, 201, 240, 0.35);
  }
}
/* ===== CHRISTMAS GALLERY (MATCH HALLOWEEN STYLE) ===== */
.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 23, 61, 0.25), transparent 28%),   /* red */
    radial-gradient(circle at 70% 80%, rgba(20, 255, 122, 0.25), transparent 30%),  /* green */
    radial-gradient(circle at 50% 50%, rgba(255, 209, 102, 0.18), transparent 35%); /* gold */

  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.gallery-photo:hover::before {
  opacity: 1;
}

/* ===== MATCH THE HOVER "PULSE" ===== */
.gallery-photo:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 24px rgba(255, 23, 61, 0.45),
    0 0 55px rgba(20, 255, 122, 0.35),
    0 0 80px rgba(255, 209, 102, 0.25);
}
/* ===== LOGO TEXT UPGRADE ===== */
.logo span {
  position: relative;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--gold),
    var(--green),
    var(--red)
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: logoGlowMove 6s linear infinite;

  text-shadow:
    0 0 8px rgba(255,255,255,0.2),
    0 0 18px rgba(255,23,61,0.25),
    0 0 28px rgba(20,255,122,0.2);
}

@keyframes logoGlowMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}
.logo:hover span {
  transform: scale(1.05);
  text-shadow:
    0 0 12px rgba(255,255,255,0.5),
    0 0 28px rgba(255,23,61,0.6),
    0 0 40px rgba(20,255,122,0.5);
}
.logo-img {
  transition: 0.3s ease;
}

.logo:hover .logo-img {
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.9))
    drop-shadow(0 0 18px var(--red))
    drop-shadow(0 0 28px var(--green));
  transform: scale(1.1);
}
.logo span {
  font-size: 1.5rem;
}
/* ===== SMALLER LOGO TEXT ON HALLOWEEN PAGE ===== */
.halloween-header .logo span {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
}
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  opacity: 0;
  transition: 0.3s;
}

.button:hover::after {
  opacity: 1;
  transform: translateX(100%);
}
@media (min-width: 901px) {
  .back-button {
    display: none;
  }
}

/* =====================================================
  SPECIAL SHOW DATES - PREMIUM EXPANDABLE CARDS
===================================================== */

.special-dates-toggle {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.special-dates-btn {
  position: relative;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #b3001b, #0f8a4b);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 22px rgba(20,255,122,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.special-dates-btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.12);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.42),
    0 0 28px rgba(20,255,122,0.35),
    0 0 24px rgba(255,23,61,0.25);
}

.hidden-special-dates {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.8s ease,
    opacity 0.45s ease,
    margin-top 0.45s ease;
}

.show-special-dates {
  max-height: 1800px;
  opacity: 1;
  margin-top: 32px;
}

.special-dates-section {
  text-align: center;
  width: min(1500px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.special-dates-section h2 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 12px;
  text-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 30px rgba(20,255,122,0.25);
}

.special-subtitle {
  margin-bottom: 32px;
  opacity: 0.9;
  color: var(--muted);
  font-weight: 700;
}

.special-dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.special-date-card {
  position: relative;
  min-height: 330px;
  padding: 38px 24px 26px;
  border-radius: 28px;
  color: white;
  overflow: hidden;
  isolation: isolate;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.45),
    inset 0 0 35px rgba(255,255,255,0.06);

  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.special-date-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.95;
}

.special-date-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.22), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.12), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.48));
  pointer-events: none;
}

.special-date-card:hover {
  transform: translateY(-8px) scale(1.025);
  filter: brightness(1.08);
}

.halloween-card::before {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,106,0,0.85), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(123,31,162,0.75), transparent 34%),
    linear-gradient(135deg, #ff6a00, #35105f 80%);
}

.christmas-card::before {
  background:
    radial-gradient(circle at 25% 20%, rgba(20,255,122,0.5), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(255,23,61,0.58), transparent 34%),
    linear-gradient(135deg, #063d23, #b3001b);
}

.newyear-card::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(76,201,240,0.75), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(124,58,237,0.8), transparent 34%),
    linear-gradient(135deg, #0b57d0, #3b087a);
}

.holiday-icon {
  font-size: 4.8rem;
  margin-bottom: 18px;
  line-height: 1;
  animation: holidayFloat 3s ease-in-out infinite;
}

.halloween-card .holiday-icon {
  text-shadow:
    0 0 14px #ff6a00,
    0 0 34px #ff0000;
  filter:
    drop-shadow(0 0 12px #ff6a00)
    drop-shadow(0 0 28px #ff0000);
}

.christmas-card .holiday-icon {
  text-shadow:
    0 0 14px #14ff7a,
    0 0 34px #ff173d;
  filter:
    drop-shadow(0 0 12px #14ff7a)
    drop-shadow(0 0 28px #ff173d);
}

.newyear-card .holiday-icon {
  text-shadow:
    0 0 14px #4cc9f0,
    0 0 34px #7c3aed;
  filter:
    drop-shadow(0 0 12px #4cc9f0)
    drop-shadow(0 0 28px #7c3aed);
}

.special-date-card h3 {
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.15;
  text-shadow: 0 0 14px rgba(0,0,0,0.75);
}

.special-date-card p {
  color: var(--gold);
  font-weight: 950;
  font-size: 1.15rem;
  margin-top: 6px;
}

.special-date-card span {
  margin-top: 4px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.countdown-wrap {
  width: 100%;
  margin: 18px 0 12px;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.05),
    0 0 24px rgba(0,0,0,0.28);
}

.countdown-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 950;
  color: var(--green);
  margin-bottom: 6px;
}

.christmas-card:nth-of-type(3) .countdown-label {
  color: var(--red);
}

.newyear-card .countdown-label {
  color: var(--blue);
}

.countdown-timer {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 2px;
  line-height: 1;
  color: white;
  text-shadow:
    0 0 10px rgba(255,255,255,0.55),
    0 0 22px rgba(255,255,255,0.25);
}

@keyframes holidayFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@media (max-width: 1100px) {
  .special-dates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .special-dates-grid {
    grid-template-columns: 1fr;
  }

  .special-date-card {
    min-height: 300px;
  }

  .holiday-icon {
    font-size: 4rem;
  }

  .countdown-timer {
    font-size: 2rem;
  }
}

/* ===== HALLOWEEN SPECIAL DATES ===== */

.halloween-special-dates-toggle {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.halloween-special-dates-btn {
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #ff6a00, #7a0000, #3b0066);
  box-shadow:
    0 0 18px rgba(255, 106, 0, 0.55),
    0 0 34px rgba(120, 0, 0, 0.45);
  transition: 0.25s ease;
}

.halloween-special-dates-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 28px rgba(255, 106, 0, 0.85),
    0 0 55px rgba(120, 0, 0, 0.65);
}

.hidden-halloween-special-dates {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.7s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease;
}

.show-halloween-special-dates {
  max-height: 900px;
  opacity: 1;
  margin-top: 32px;
}

.halloween-special-dates-section {
  text-align: center;
  width: min(900px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.halloween-special-dates-section h2 {
  color: #ff6a00;
  text-shadow:
    0 0 14px rgba(255, 106, 0, 0.9),
    0 0 36px rgba(255, 0, 0, 0.55);
}

.halloween-special-subtitle {
  color: #ffe0c2;
  font-weight: 800;
  margin: 12px 0 32px;
}

.halloween-special-dates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.halloween-special-date-card {
  position: relative;
  min-height: 330px;
  padding: 38px 24px 28px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 106, 0, 0.35);
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.55),
    inset 0 0 38px rgba(255, 106, 0, 0.08);

  transition: 0.3s ease;
}

.halloween-special-date-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.halloween-special-date-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.16), transparent 22%),
    radial-gradient(circle at 80% 16%, rgba(255,106,0,0.18), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.62));
}

.halloween-special-date-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 25px rgba(255, 106, 0, 0.55),
    0 0 65px rgba(120, 0, 0, 0.55);
}

.opening-night-card::before {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 106, 0, 0.75), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(90, 0, 120, 0.7), transparent 34%),
    linear-gradient(135deg, #140014, #4a001f, #ff6a00);
}

.halloween-night-card::before {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 106, 0, 0.9), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(120, 0, 0, 0.75), transparent 34%),
    linear-gradient(135deg, #ff6a00, #1a0000 78%);
}

.halloween-holiday-icon {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 18px;
  animation: halloweenIconFloat 3s ease-in-out infinite;
  filter:
    drop-shadow(0 0 12px #ff6a00)
    drop-shadow(0 0 30px #ff0000);
}

.halloween-special-date-card h3 {
  font-size: 1.65rem;
  font-weight: 950;
  text-shadow:
    0 0 12px rgba(0,0,0,0.9),
    0 0 22px rgba(255,106,0,0.45);
}

.halloween-special-date-card p {
  color: #ffb347;
  font-size: 1.2rem;
  font-weight: 950;
  margin-top: 5px;
}

.halloween-special-date-card span {
  margin-top: 8px;
  color: #ffe0c2;
  font-weight: 800;
}

@keyframes halloweenIconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

@media (max-width: 700px) {
  .halloween-special-dates-grid {
    grid-template-columns: 1fr;
  }

  .halloween-special-date-card {
    min-height: 300px;
  }
}
.halloween-special-dates-section {
  overflow: visible;
  padding-top: 20px;
}

.halloween-special-dates-section h2 {
  line-height: 1.1;
  padding: 0 20px;

  text-shadow:
    0 0 12px rgba(255, 106, 0, 0.95),
    0 0 28px rgba(255, 106, 0, 0.75),
    0 0 55px rgba(255, 0, 0, 0.45),
    0 0 90px rgba(255, 106, 0, 0.25);
}

/* ===== STACKED ABOUT PHOTOS MOBILE FIX ===== */
@media (max-width: 900px) {
  .about-photo-stack {
    margin-top: 10px;
  }

  .about-photo-stack .about-photo {
    min-height: 320px;
  }

  .about-photo-second {
    width: 92%;
  }
}
/* =====================================================
  WHAT'S NEW PAGE
===================================================== */

.whats-new-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 20px 120px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.88)),
    radial-gradient(circle at 25% 30%, rgba(255,23,61,0.22), transparent 34%),
    radial-gradient(circle at 75% 35%, rgba(20,255,122,0.18), transparent 36%),
    url("images/2025-Christmas-1.JPEG") center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
}

.whats-new-hero-content {
  max-width: 950px;
}

.whats-new-hero h1 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.82;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255,255,255,0.32),
    0 0 34px rgba(255,23,61,0.45),
    0 0 60px rgba(20,255,122,0.25);
}

.whats-new-hero p {
  max-width: 780px;
  margin: 24px auto 0;
  color: #ecf3f7;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.whats-new-intro {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 20px;
}

.timeline-section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0 110px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  bottom: 70px;
  left: 50%;
  width: 5px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    var(--red),
    var(--gold),
    var(--green),
    #ff6a00,
    var(--blue)
  );
  box-shadow:
    0 0 18px rgba(255,23,61,0.55),
    0 0 30px rgba(20,255,122,0.35);
}

.timeline-card {
  position: relative;
  width: calc(50% - 42px);
  margin-bottom: 48px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
}

.timeline-card:nth-of-type(even) {
  margin-left: calc(50% + 42px);
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 38px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 14px var(--gold),
    0 0 28px rgba(255,209,102,0.65);
}

.timeline-card:nth-of-type(odd)::before {
  right: -55px;
}

.timeline-card:nth-of-type(even)::before {
  left: -55px;
}

.timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #050608;
  background: var(--gold);
  font-weight: 950;
  font-size: 1.15rem;
  box-shadow: 0 0 22px rgba(255,209,102,0.4);
}

.timeline-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  margin-bottom: 16px;
  color: white;
}

.timeline-card h4 {
  color: var(--gold);
  margin: 12px 0 8px;
}

.timeline-card ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.timeline-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.christmas-timeline {
  border-color: rgba(20,255,122,0.22);
  box-shadow:
    var(--shadow),
    0 0 26px rgba(20,255,122,0.08),
    0 0 26px rgba(255,23,61,0.08);
}

.split-timeline {
  border-color: rgba(255,106,0,0.28);
  box-shadow:
    var(--shadow),
    0 0 24px rgba(255,106,0,0.11),
    0 0 24px rgba(20,255,122,0.09);
}

.placeholder-timeline {
  border-style: dashed;
  border-color: rgba(255,255,255,0.28);
  opacity: 0.88;
}

.future-timeline {
  border-color: rgba(76,201,240,0.35);
  box-shadow:
    var(--shadow),
    0 0 30px rgba(76,201,240,0.18);
}

.future-timeline .timeline-year {
  background: var(--blue);
}

@media (max-width: 900px) {
  .whats-new-hero {
    min-height: 68vh;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .timeline-line {
    left: 18px;
  }

  .timeline-card,
  .timeline-card:nth-of-type(even) {
    width: calc(100% - 44px);
    margin-left: 44px;
  }

  .timeline-card:nth-of-type(odd)::before,
  .timeline-card:nth-of-type(even)::before {
    left: -37px;
    right: auto;
  }

  .timeline-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .whats-new-hero h1 {
    font-size: 4.5rem;
  }

  .timeline-card {
    padding: 22px;
  }
}
