.hero-banner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero-banner .overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.btn-orange {
  background-color: #F97316;
  color: #fff;
  border-radius: 1rem;
  transition: all 0.3s ease;
}


.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background: #fff;
  color: #1a472a !important;
}

.social-icons-vertical a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-icons-vertical a:hover {
  background: #F97316;
  color: #fff;
  transform: scale(1.1);
}

/* Mobile & petits écrans */
@media (max-width: 768px) {
  .hero-banner {
    height: 80vh;
  }

  .hero-banner .container {
    /* top: -10%; */
    position: relative;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p.lead {
    font-size: 1rem;
  }

  .hero-banner .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }

  .social-icons-vertical {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.75rem;
  }

  /* Contrôles plus petits */
  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 100%, 100%;
  }
}