/* Base */
body, html {
 margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0c0c0c;
  color: #f2f2f2;
}

/* Container scrollé */
.scroll-container > section {
  height: 100vh;
  scroll-snap-align: start;
}

/* SECTION 1 – Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  text-align:right;
  padding: 1rem;
  max-width: 75%;
  font-size: 0.95rem;
  border-radius: 4px;
  z-index: 2;
}

a {
  color: #FB0425;
  text-decoration: none;
}

a:hover {
  color: white;
  text-shadow: 0 0 5px white;
}

/* SECTION 2 – Drop */
.drop {
  background-image: https://raw.githubusercontent.com/garbieldpnt/blkkt/main/glitchbg.jpg;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  background-color: #000;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Bouton commander */
.btn {
  font-family: Orbitron;
  background: #f2f2f2;
  color: #0c0c0c;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  transition: background 0.3s;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red; }
  20% { text-shadow: -2px -1px lime; }
  40% { text-shadow: 2px 2px cyan; }
  60% { text-shadow: -1px 1px magenta; }
  80% { text-shadow: 1px -2px red; }
  100% { text-shadow: none; }
}

.btn:hover {
  animation: glitch 0.4s infinite;
  background-color: #FB0425;
  color: white;
}

/* Model viewer */
.model-wrapper {
   width: 100%;
  max-width: 400px;
  border-radius: 12px;
  animation: pulse-glow 2s infinite ease-in-out;

}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px #FB0425, 0 0 20px #FB0425, 0 0 30px #FB0425;
  }
  50% {
    box-shadow: 0 0 20px #FB0425, 0 0 40px #FB0425, 0 0 60px #FB0425;
  }
  100% {
    box-shadow: 0 0 10px #FB0425, 0 0 20px #FB0425, 0 0 30px #FB0425;
  }
}
