* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}

body {
  background: #090909;
  font-family: 'Poppins', sans-serif;
  color: #f2f2f2;
  overflow: hidden;
}

/* Intro */
#intro {
  position: fixed;
  z-index: 20;
  width: 100%;
  height: 100%;
  background: #090909;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#intro h1 {
  font-size: clamp(1.8rem, 7vw, 3rem);
  margin-bottom: 1.2vh;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e6c77a;
  text-shadow: 0 0 16px rgba(230,199,122,0.35);
  text-align: center;
  opacity: 0;
  animation: introTitle 1.4s ease-out forwards;
}

#intro p {
  font-size: clamp(0.9rem, 3.8vw, 1.3rem);
  opacity: 0.75;
  letter-spacing: 0.15em;
  color: rgba(242,242,242,0.75);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: introSubtitle 1.4s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes introTitle {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introSubtitle {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper */
.mySwiper {
  width: 100vw;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  padding: 10vh 5vw;
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 5vw, 2rem);
  margin-bottom: 3vh;
  color: #d2aa55;
}

/* Cards cocktail */
.cocktail-list {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  padding-bottom: 12vh;
  overflow: visible;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.card {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 15px rgba(255,255,255,0.06);
  padding: 15px;
  border-radius: 12px;
  font-size: clamp(0.9rem, 3.2vw, 1.1rem);
  transition: 0.25s;
  overflow: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.card span {
  font-size: clamp(0.75rem, 2.8vw, 0.95rem);
  opacity: 0.7;
}

.card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}

/* Couleurs titres */
section:nth-child(1) h2 { 
  color: #8ecaff;
  text-shadow: 0 0 15px rgba(142, 202, 255, 0.45);
}

section:nth-child(2) h2 {
  color: #ffb26e;
  text-shadow: 0 0 15px rgba(255, 178, 110, 0.45);
}

section:nth-child(3) h2 {
  color: #f0b44c;
  text-shadow: 0 0 15px rgba(255, 215, 110, 0.45);
}

section:nth-child(4) h2 {
  color: #c9a8ff;
  text-shadow: 0 0 15px rgba(201, 168, 255, 0.45);
}

section:nth-child(5) h2 {
  color: #ffe96e;
  text-shadow: 0 0 15px rgba(255, 233, 110, 0.45);
}

section:nth-child(6) h2 {
  color: #6eff8a;
  text-shadow: 0 0 15px rgba(110, 255, 138, 0.45);
}

section:nth-child(7) h2 {
  color: #ff9fc3;
  text-shadow: 0 0 15px rgba(255, 159, 195, 0.45);
}

/* Ombres card:hover */
section:nth-child(1) .card:hover {
  box-shadow: 0 0 22px rgba(142, 202, 255, 0.35);
}

section:nth-child(2) .card:hover {
  box-shadow: 0 0 22px rgba(255, 178, 110, 0.35);
}

section:nth-child(3) .card:hover {
  box-shadow: 0 0 22px rgba(255, 215, 110, 0.35);
}

section:nth-child(4) .card:hover {
  box-shadow: 0 0 22px rgba(201, 168, 255, 0.35);
}

section:nth-child(5) .card:hover {
  box-shadow: 0 0 22px rgba(255, 233, 110, 0.35);
}

section:nth-child(6) .card:hover {
  box-shadow: 0 0 22px rgba(110, 255, 138, 0.35);
}

section:nth-child(7) .card:hover {
  box-shadow: 0 0 22px rgba(255, 159, 195, 0.35);
}

/* Nav bas */
#nav-circles {
  position: fixed;
  bottom: 2vh;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 15;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

#nav-circles.visible {
  opacity: 1;
  transform: translateY(0);
}

#nav-circles div {
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  text-shadow: 0 0 2px rgba(0,0,0,0.4);
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
  user-select: none;
}

#nav-circles.visible div {
  opacity: 0.75;
  transform: translateY(0);
}

#nav-circles.visible div:nth-child(1) { transition-delay: 0.05s; }
#nav-circles.visible div:nth-child(2) { transition-delay: 0.1s; }
#nav-circles.visible div:nth-child(3) { transition-delay: 0.15s; }
#nav-circles.visible div:nth-child(4) { transition-delay: 0.2s; }
#nav-circles.visible div:nth-child(5) { transition-delay: 0.25s; }
#nav-circles.visible div:nth-child(6) { transition-delay: 0.3s; }
#nav-circles.visible div:nth-child(7) { transition-delay: 0.35s; }

#nav-circles div:active {
  transform: scale(0.9);
  animation: none;
}

#nav-circles div.active {
  opacity: 1;
  background: currentColor;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  border-color: currentColor;
  animation: activePulse 2.8s ease-in-out infinite;
}

@keyframes activePulse {
  0% {
    box-shadow:
      0 0 10px currentColor,
      inset 0 0 6px rgba(255,255,255,0.35);
  }
  50% {
    box-shadow:
      0 0 16px currentColor,
      inset 0 0 8px rgba(255,255,255,0.45);
  }
  100% {
    box-shadow:
      0 0 10px currentColor,
      inset 0 0 6px rgba(255,255,255,0.35);
  }
}

/* Canvas neige */
#snow {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  h2 {
    text-align: center;
  }
}