/* --- CONFIGURATION DU CARROUSEL --- */
.swiper {
  width: 100vw;
  /* 100% de la hauteur de l'écran MOINS la hauteur de ton menu (ex: 90px) */
  height: calc(100vh - 90px);
  position: relative;
  /* Hauteur globale du grand bandeau */
  background-color: #1A2E40;
  /* Bleu Nuit de secours pendant le chargement */
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alignement du texte au centre */
.slide-content {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

/* Grand titre (Comme "INSPIRE" dans le logo) */
.slide-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
  color: #fff;
}

/* Sous-titre fin (Comme "HOMES LS8" dans le logo) */
.slide-subtitle {
  font-family: 'Questrial', sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.slide-text {
  font-family: sans-serif;
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* Bouton Vert Sauge */
.btn-sauve {
  display: inline-block;
  padding: 14px 38px;
  background-color: #3c8080;
  /* Vert Sauge */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-sauve:hover {
  background-color: #3c8080;
  transform: translateY(-2px);
}

/* --- DESIGN DES FLÈCHES ET POINTS SWIPER --- */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
  /* Force les flèches en blanc */
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  /* Les points inactifs en blanc */
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #2E8B57 !important;
  /* Le point actif passe au Vert Sauge */
  opacity: 1;
}
