
body {
    background-color: rgb(250, 250, 250);
  }
  .ui.header {
  margin-top: 40px !important;
  margin-bottom: 40px;  /* Espace en bas */
  font-size: clamp(20px, 3.5vw, 32px) !important;
  /* font-size: clamp(2rem, 5vw, 4rem) !important; */
  font-weight: bold;  /* Gras pour le titre */

  }

  .ui.container{
    margin-left: 5px;
    margin-right: 5px;
  }
  .hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    animation: fade 15s infinite alternate;
  }
  .hero img:nth-child(1) {
    animation-delay: 0s;
  }
  .hero img:nth-child(2) {
    animation-delay: 5s;
  }
  .hero img:nth-child(3) {
    animation-delay: 10s;
  }
  @keyframes fade {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .hero-text {
  position: absolute;
  top: 0;      
  left: 0;      
  width: 100%;  
  height: 100%;  
  font-weight: bolder;
  background: rgb(0 0 0 / 50%);  
  display: flex;
  justify-content: center; 
  align-items: center;     
  text-align: center;
  color: white;
  padding: 20px;
  font-size: clamp(1.3rem, 3vw, 4rem);
  z-index: 1; 
  }

  footer {
    background: #001f3f;
    color: white;
    text-align: center;
    position: sticky !important;  /* Fixe le footer en bas de la page */
    left: 0;
    bottom: 0;
    width: 100%;  /* Prend toute la largeur de la page */
    height: 50px;
    display: flex;  /* Utilisation de flexbox */
    justify-content: center;  /* Centre le contenu horizontalement */
    align-items: center;  /* Centre le contenu verticalement */
    padding: 0 20px;  /* Optionnel : espace interne horizontal */
}
  a:hover{
    color:white;
  }

  /* Masquer le menu du haut sur mobile */
  @media (max-width: 768px) {
    .desktop.only {
      display: none !important;
    }
    #search-container{
      width: 80% !important;
    }
  }
    @media (min-width: 768px) {
    
    #search-container{
      width: 40% !important;
    }
  }
