.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 20vh;
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../frontend/img/banBon.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

/* Grands écrans (ordinateurs) */
@media (min-width: 1024px) {
  .logo-container::before {
    background-size: cover;
  }
}

/* Tablettes */
@media (max-width: 1023px) and (min-width: 769px) {
  .logo-container::before {
    background-size: cover;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .logo-container {
    min-height: 15vh;
    padding: 10px 0;
    margin: 0;
    justify-content: center;
    width: 100%;
  }
  
  .logo-container::before {
    background-image: url('../../frontend/img/mobile.jpeg');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    background-color: transparent;
    width: 100%;
    height: 100%;
  }
  
  .logo-img {
    max-height: 50px;
    margin: 10px 0;
  }
  
  .logo-main {
    font-size: 1.5rem;
    margin: 5px 0;
    padding: 5px 0;
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .logo-container {
    min-height: 20vh;
    padding: 8px 0;
  }
  
  .logo-container::before {
    background-image: url('../../frontend/img/mobile.jpeg');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  .logo-img {
    max-height: 45px;
    margin: 8px 0;
  }
  
  .logo-main {
    font-size: 1.3rem;
    margin: 3px 0;
    padding: 3px 0;
  }
}

/* Très petits mobiles */
@media (max-width: 360px) {
  .logo-container {
    min-height: 22vh;
    padding: 5px 0;
  }
  
  .logo-img {
    max-height: 40px;
    margin: 5px 0;
  }
  
  .logo-main {
    font-size: 1.1rem;
    margin: 2px 0;
    padding: 2px 0;
  }
}

.logo-img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

.logo-main {
  font-size: 4.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
}