/* ============================================================================
   BOUTON SCROLL-DOWN - Découvrir le site
   ============================================================================ */

.scroll-down-btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down-btn:hover {
  transform: translateX(-50%) scale(1.1);
}

/* Texte "Découvrir" */
.scroll-text {
  display: block;
  color: #FA9600;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Conteneur des flèches */
.scroll-arrows {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

/* Flèches (double) */
.arrow-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FA9600;
  animation: bounce 2s infinite;
}

.arrow-down:nth-child(1) {
  top: 0;
}

.arrow-down:nth-child(2) {
  top: 8px;
  animation-delay: 0.2s;
  opacity: 0.7;
}

/* Animation bounce pour les flèches */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Effet hover */
.scroll-down-btn:hover .scroll-text {
  color: #ff9900;
}

.scroll-down-btn:hover .arrow-down {
  border-top-color: #ff9900;
}

/* Animation pulse pour le bouton complet */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.scroll-down-btn {
  animation: pulse 3s infinite;
}

.scroll-down-btn:hover {
  animation: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .scroll-down-btn {
    bottom: 60px;
  }
  
  .scroll-text {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .scroll-arrows {
    width: 24px;
    height: 24px;
  }
  
  .arrow-down {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FA9600;
  }
  
  .arrow-down:nth-child(2) {
    top: 6px;
  }
}

/* Thème sombre */
.darkTheme .scroll-text {
  color: #FA9600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.darkTheme .arrow-down {
  border-top-color: #FA9600;
}

/* Thème clair */
.lightTheme .scroll-text {
  color: #FA9600;
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.lightTheme .arrow-down {
  border-top-color: #FA9600;
}
