  /* Styles pour le slider ACF en pleine hauteur */
.full-height-swiper {
    width: 100%;
    height: 90vh; /* Hauteur sur toute la partie visible */
    margin-top: 0px; /* Ajustez selon la hauteur de votre header */
    margin-bottom: 0;
  }
  
  .full-height-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide-content {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
  }
  
  .slide-text {
    color: #fff;
    max-width: 700px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
  
  .slide-surtitre {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--morel-secondary, #f8f9fa);
  }

  .slide-surtitre span{
    color: white;
    font-family: var(--morel-font-family);
    font-weight: 500;
  }


  .slide-titre {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--morel-font-family);
    text-transform: uppercase;
    color: white;
  }
  
  .slide-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .slide-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--morel-secondary, #0d6efd);
    border-color: var(--morel-secondary, #0d6efd);
    border-radius: 0;
    clip-path: polygon(
        3px 0,     /* Haut gauche */
        100% 0,     /* Haut droit */
        calc(100% - 3px) 100%,  /* Bas droit */
        0 100%      /* Bas gauche */
      )

  }
  
  .slide-btn:hover {
    background-color: var(--morel-primary, #0a58ca);
    border-color: var(--morel-primary, #0a58ca);
  }
  
  /* Styles pour les contrôles du slider */
  .full-height-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
  }
  
  .full-height-swiper .swiper-pagination-bullet-active {
    background: var(--morel-secondary, #0d6efd);
    opacity: 1;
  }
  
  .full-height-swiper .swiper-button-next,
  .full-height-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .full-height-swiper .swiper-button-next:after,
  .full-height-swiper .swiper-button-prev:after {
    font-size: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .slide-titre {
      font-size: 2rem;
    }
    
    .slide-description {
      font-size: 1rem;
    }
    
    .slide-text {
      max-width: 100%;
      padding: 0 15px;
    }
  }


