.banner {
  position: relative;
  width: 100%;
  max-height: 400px;   
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;       
  display: block;
}

#banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'Playfair Display', serif; /* ou autre police */
  font-size: 4vw; 
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.fade-in {
  opacity: 0;
  transition: none;
}



@media (max-width: 600px) {
  #banner-text {
    font-size: 5.5vw;
    white-space: normal;
    padding: 0 10px;
  }

  .banner {
    max-height: 300px;
  }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

