/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  background: radial-gradient(circle at top, #08121f, #000);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  width: 90%;
  margin: auto;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 45px;
}

/* BOTON HOME */
.home-btn {
  text-decoration: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;

  border: 1px solid rgba(255,255,255,0.2);

  transition: 0.3s;
}

.home-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #38bdf8;
}

.nav {
  width: 90%;
  margin: auto;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 45px;
}

/* NAV LINKS */
/* 🔥 RESET LISTA (esto saca los puntos) */
.nav-links {
  list-style: none; /* ❗ esto elimina las viñetas */
  display: flex;
  gap: 20px;
  align-items: center;
}

/* EVITA BUG DE ENCIMADO */
.nav-links li {
  display: block;
}

/* LINKS */
.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: white;
}
/* BOTÓN */
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(45deg, #38bdf8, #0ea5e9);
  color: white;
  border: none;
  text-decoration: none;

  box-shadow: 0 0 15px rgba(56,189,248,0.5);
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #38bdf8;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= HERO ================= */
.circus-hero {
  height: 100vh;
  padding-top: 70px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  overflow: hidden;
}

/* FONDO */
.circus-hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 70%);
  animation: iceBGMove 15s linear infinite;
  z-index: 0;
}

@keyframes iceBGMove {
  from { transform: translate(-20%, -20%); }
  to { transform: translate(20%, 20%); }
}

/* LUZ */
.circus-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
    rgba(56,189,248,0.15),
    transparent 60%);
  z-index: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ================= TITULO ================= */
.ice-title {
  font-family: 'Cinzel', serif;
  font-size: 80px;

  background: linear-gradient(180deg, #e0f2fe, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 0 20px #38bdf8,
    0 0 40px #0ea5e9;

  animation: icePulse 2.5s infinite alternate;
}

@keyframes icePulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* SUB */
.hero p {
  margin-top: 10px;
  opacity: 0.8;
  letter-spacing: 2px;
}

/* STATUS */
.status-box {
  margin-top: 20px;
  padding: 10px 25px;

  border-radius: 30px;

  background: rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.4);

  backdrop-filter: blur(10px);

  font-size: 14px;
  letter-spacing: 2px;

  animation: pulseStatus 2s infinite alternate;
}

@keyframes pulseStatus {
  from { box-shadow: 0 0 10px rgba(56,189,248,0.2); }
  to { box-shadow: 0 0 30px rgba(56,189,248,0.6); }
}

.coming-text {
  margin-top: 10px;
  opacity: 0.6;
}

/* ================= SECCION ================= */
.section {
  padding: 100px 20px;
  text-align: center;
}

.content {
  max-width: 600px;
  margin: auto;

  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 15px;

  border: 1px solid rgba(56,189,248,0.2);
  backdrop-filter: blur(10px);
}

/* ================= VIDEO ================= */
.video-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.video-container {
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;

  position: relative;

  box-shadow:
    0 0 30px rgba(56,189,248,0.3),
    0 0 80px rgba(56,189,248,0.2);

  transition: 0.4s;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 50px #38bdf8,
    0 0 100px #0ea5e9;
}

.video-container video {
  width: 100%;
  display: block;
}

/* ================= SNOW ================= */
#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ================= Z INDEX ================= */
.hero,
.section {
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .ice-title {
    font-size: 42px;
  }

  /* MENU MOBILE */
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;

    flex-direction: column;
    background: black;
    width: 200px;
    padding: 20px;

    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }
}
.ice-logo {
  font-family: 'Cinzel', serif;
  color: #7dd3fc;
  text-shadow: 0 0 10px #38bdf8, 0 0 30px #0ea5e9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ice-logo img {
  height: 40px;
}

.ice-logo:hover {
  text-shadow: 0 0 20px #7dd3fc, 0 0 60px #38bdf8;
}
/* 🎥 VIDEO HERO */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -1; /* 🔥 detrás de todo */
}
/* ================= GALLERY ================= */

.gallery-section {
  padding: 100px 20px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

/* ITEMS */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;

  background: #000;

  box-shadow:
    0 0 15px rgba(56,189,248,0.2);

  transition: 0.3s;
}

/* IMG + VIDEO */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER */
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 25px #38bdf8,
    0 0 50px #0ea5e9;
}