/* BSN FINANCEMENT - Hero Fixes */
/* Correction des étirements anormaux des hero-badge et sections hero */

/* Fix pour tous les hero-badge */
.hero-badge {
  display: inline-block !important;
  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(10px) !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 25px !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  white-space: normal !important;
  width: auto !important;
  max-width: 100% !important;
  flex-shrink: 0 !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

/* Fix pour toutes les sections hero */
.hero {
  position: relative !important;
  min-height: 320px !important;
  height: auto !important;
  overflow: visible !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  padding: 32px 16px !important;
}

.hero-content h1 {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  line-height: 1.15 !important;
  color: white !important;
}

.hero-content p {
  font-size: clamp(15px, 2.2vw, 18px) !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
  opacity: 0.95 !important;
}

/* Fix spécifique pour les sections hero avec images de fond */
.hero-credit-personnel,
.hero-credit-travaux,
.hero-cartes,
.hero-corporate,
.hero-about,
.hero-assurances,
.hero-credit-auto,
.hero-rachat,
.hero-reviews {
  min-height: 320px !important;
  height: auto !important;
  padding: 40px 20px !important;
}

/* Fix pour les conteneurs hero */
.hero .container {
  overflow: visible !important;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero {
    min-height: 300px !important;
    padding: 24px 12px !important;
  }
  
  .hero-content {
    padding: 24px 12px !important;
  }
  
  .hero-badge {
    font-size: 12px !important;
    padding: 8px 16px !important;
    max-height: none !important;
  }
  
  .hero-content h1 {
    font-size: 24px !important;
  }
  
  .hero-content p {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 260px !important;
    max-height: none !important;
  }
  
  .hero-content {
    padding: 30px 10px !important;
  }
  
  .hero-content h1 {
    font-size: 24px !important;
    max-height: none !important;
  }
  
  .hero-content p {
    font-size: 14px !important;
    max-height: none !important;
  }
}



