body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
    overflow-x: hidden;
  }
* {
  margin: 0;
}



  header {
    background: #000000;
    color: white;
    padding: 1%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    font-family: 'Great Vibes', cursive;
    
  }

  h1{
    font-weight: 500;
    font-size: clamp(1rem, 4vw, 2.5rem);
    margin-left: 1rem;
  }
  
  .header-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    
  }

  .header-wrap img{
    height: 70px;
  }

  .lang-buttons{
    display: flex;
    flex-direction: column;
    padding-top: 1%;
  }

   
  main {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    width: 100%;
  }

  .main-buttons button{
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1rem, 3vw, 1.8rem);

  }
  reserve-btn{
    margin-right: 5%;
  }

  button {
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 25px;
    cursor: pointer;    
  }

  #menu-btn{
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 1.8rem);
  }

  .hero {
    height: calc(100vh - 80px); /* adapte à la hauteur réelle du header */
    background-image: url('assets/hero.webp');
    background-size: cover;       /* montre toute l'image sans crop */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;         /* pour combler si l'image ne couvre pas tout */
    overflow: hidden;
  }



  
  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-text{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .whatslogo{
    width: 30px;
    height: auto;
    margin: 0.3rem 0.4rem;
  }

  .whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
  }
  
  .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    max-width: 400px;
    width: 90%;
  }
  
  #close-modal {
    position: absolute;
    top: 1rem; right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }

  .side {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .side-img {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000; /* si l'image ne remplit pas tout, ça évite le blanc */
  }
  
  .side-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    display: block;
  }
  
  .side-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
  }
  
  footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; 
    background-color: #FFE2C9;
    height: 120px;
    font-size: clamp(12px, 1.5vw, 16px);
  }

  .left-footer{
    display: flex;
    flex-direction: row;
    padding: 1%;
  }

  .footertextwrap{
    display: flex;
    flex-direction: column;
    padding-left: 4%;
  }

  .footer-title {
    font-size: clamp(16px, 2vw, 20px);
  }

  .address, .phone, .email {
    font-size: clamp(10px, 1.5vw, 16px);
  }

  .right-footer{
    padding-right: 2%;
  }

  .opening {
    font-size: clamp(12px, 2vw, 20px);
  }

  .days, .hours {
    font-size: clamp(10px, 1.5vw, 16px);
  }

  .social-icon {
    width: 24px;
    height: auto;
    margin-top: 0.5rem;
  }

  .email a {
    color: inherit;
    text-decoration: none;
  }

  .email a:hover {
    text-decoration: underline;
  }

  /* Sticky reservation button */
  .sticky-reserve-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .sticky-reserve-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  }

  .sticky-reserve-btn:active {
    transform: translateX(-50%) scale(0.95);
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
  }

  /* Hide sticky button on mobile if needed */
  @media screen and (max-width: 580px) {
    .sticky-reserve-btn {
      bottom: 20px;
      width: 50px;
      height: 50px;
    }
    
    .sticky-reserve-btn svg {
      width: 20px;
      height: 20px;
    }
  }

  @media screen and (max-width: 580px) {

 .header-wrap img{
  height: 60px;
 }

    .side{
      flex-direction: column-reverse;
    }

    .left-footer{
      flex-direction: column;
    }

    .footerLogo{
      height: 40px;
    }
  }