/* ===============================
   🎄 ISLANDSERVERS CHRISTMAS MODE
   Safe override – nothing breaks
   =============================== */

body.christmas {
  background: linear-gradient(180deg, #020617, #0b101b);
}

/* 🎄 Hero background */
body.christmas .hero {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85)),
    url("/assets/christmas-bg.jpg") center / cover no-repeat;
}

/* 🎄 Bigger hero text */
body.christmas .hero h1 {
  font-size: clamp(4rem, 7vw, 5.5rem);
  color: #f8fafc;
}

body.christmas .hero h1 span {
  display: block;
  margin-top: .5rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(90deg, #22c55e, #facc15, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🎄 Sub text */
body.christmas .hero p {
  font-size: 1.3rem;
  color: #e5e7eb;
}

/* 🎄 Buttons */
body.christmas .btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 0 25px rgba(220,38,38,.6);
}

body.christmas .btn.secondary {
  border-color: #facc15;
  color: #facc15;
}

/* 🎄 Hanging lights */
.christmas-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}

.christmas-lights span {
  width: 14px;
  height: 22px;
  border-radius: 50%;
  animation: glow 3s infinite ease-in-out;
}

.christmas-lights span:nth-child(3n) { background: #ef4444; }
.christmas-lights span:nth-child(3n+1) { background: #22c55e; }
.christmas-lights span:nth-child(3n+2) { background: #facc15; }

@keyframes glow {
  0%,100% { opacity:.6; box-shadow:0 0 6px currentColor; }
  50% { opacity:1; box-shadow:0 0 16px currentColor; }
}
/* ===============================
   HERO RESET – MAKE IT NOT ASS
   =============================== */

.hero-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-left .hero-content {
  text-align: left;
  max-width: 720px;
  margin-left: 8%;
}

.hero-title {
  font-size: clamp(4rem, 6vw, 5.6rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.hero-subtitle {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #facc15;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 18px rgba(250,204,21,.35);
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 640px;
  color: #e5e7eb;
}

.hero-meta {
  margin-top: 1rem;
  font-size: 1rem;
  color: #9ca3af;
}

.actions {
  margin-top: 2.5rem;
  gap: 1.5rem;
}

/* Subtle lights (not cartoon) */
.christmas-lights {
  opacity: 0.35;
  top: 8px;
}
