.hero .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 80vh;
  padding: 100px 20px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-container {
  position: relative;
}

/* Flèches invisibles par défaut */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 18px;
  border-radius: 50%;
  z-index: 10;
}

.hero-container:hover .swiper-button-next,
.hero-container:hover .swiper-button-prev {
  opacity: 1;
}

/* Pagination fine */
.hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
}

.hero .swiper-pagination-bullet-active {
  background: #fff;
  width: 14px;
  height: 14px;
}

/* Animation texte */
.animate-slide {
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 1s forwards;
}

.animate-slide.delay-1 {
  animation-delay: 0.3s;
}

.animate-slide.delay-2 {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Boutons */
.cta-buttons a {
  margin: 0 10px;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-apply {
  background: #007bff;
  color: #fff;
}

.btn-apply:hover {
  background: #0056b3;
}

.btn-tour {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

.btn-tour:hover {
  background: #fff;
}


@media (max-width: 768px) {
  #navmenu a {
    font-size: 15px;
    padding: 10px 12px;
  }

  #navmenu i {
    font-size: 18px;
  }
}