@charset "utf-8";
/* CSS Document */

/******************************
[Table of Contents]
1. Global styles
2. max-width: 1600px
3. max-width: 1199px
4. max-width: 991px
5. max-width: 768px
6. max-width: 767px
7. max-width: 575px
8. max-width: 479px
******************************/

/* 1. GLOBAL STYLES */
/*body {
  background-color: red !important; /* test couleur fond */

.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

.reservations_phone a,
.reservations_phone_mobile a {
  color: white !important;
  text-decoration: underline !important;
}

/* 2. max-width: 1600px */
@media only screen and (max-width: 1600px) {
  .intro_content {
    width: 600px;
    right: -100px;
  }
}

/* 3. max-width: 1199px */
@media only screen and (max-width: 1199px) {
  .main_nav {
    margin-left: 70px;
  }
  .main_nav ul li:not(:last-child) {
    margin-right: 35px;
  }
  .intro_content {
    position: relative;
    top: auto;
    transform: none;
    right: auto;
    margin-bottom: 102px;
    width: 100%;
  }
  .dish_price {
    margin-left: 0;
  }
}

/* 4. max-width: 991px */
@media only screen and (max-width: 991px) {
  .hamburger,
  .hamburger_bar {
    display: block;
  }
  .main_nav,
  .reservations_phone {
    display: none;
  }
  .sig_content_container {
    position: relative;
    transform: none;
    width: 100%;
    z-index: 1;
    margin-bottom: 102px;
  }
  .sig_image {
    height: auto;
  }
  .sig_image .background_image {
    display: none;
  }
  .sig_image img {
    display: block;
  }
  .themenu_column:not(:last-child),
  .footer_col:not(:last-child) {
    margin-bottom: 80px;
  }
}

/* 5. max-width: 768px */
@media only screen and (max-width: 768px) {
  .chef_col {
    flex: 1 1 45%;
    padding: 10px;
    margin-bottom: 20px;
  }
  .chef_image img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  .mobile-only {
    display: block !important;
    color: white;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }
  .desktop-only {
    display: none !important;
  }
  .reservations_phone_mobile {
    order: 1;
    width: 100%;
    text-align: left;
    margin: 10px 0;
  }
  .header_content {
    flex-wrap: wrap;
  }
  .logo {
    order: 0;
  }
  .main_nav {
    order: 2;
  }
  body .menu {
    top: 10vh !important;
    left: 5vw !important;
    width: 90vw !important;
    max-height: 80vh !important;
    background: rgba(180, 147, 131, 0.92) !important;
    border-radius: 12px !important;
    padding: 30px 20px 80px 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  }
  .menu_hamburger {
    width: 24px !important;
    height: 18px !important;
    padding: 4px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 4px !important;
  }
  .hamburger_lines {
    background: #fff !important;
    height: 2px !important;
  }
}

/* 6. max-width: 767px */
@media only screen and (max-width: 767px) {
  /* Hamburger position */
  .hamburger_bar {
    right: calc((100vw - 510px) / 2 - 15px);
  }

  /* Home container : suppression du top pour centrage vertical */
  .home_container {
    position: relative;
    /* top: 20%;  <-- à supprimer */
    padding: 20px 15px 60px 15px;
    width: 100%;
  }

  /* Sous-titre plus petit, marge et interligne ajustés */
  .home_subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

     .sig_title h1 {
    font-size: 26px !important; /* ou la taille que vous préférez */
  }
    
  /* Titre principal plus petit */
  .home_title h1 {
    font-size: 18px !important; /* beaucoup plus petit */
    margin-bottom: 12px;
  }

  /* Texte principal confortable à lire */
  .home_text {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
    overflow-wrap: break-word;
  }
  .sig_button {
  display: inline-block; /* pour que le bouton prenne la taille du contenu */
  border: 2px solid #6b3a1a; /* liseré marron */
  border-radius: 4px; /* coins arrondis, optionnel */
  overflow: hidden;
  background-color: transparent; /* transparent par défaut */
}

.sig_button a {
  display: block; /* prendre toute la largeur */
  padding: 12px 30px;
  color: #6b3a1a; /* texte marron */
  text-decoration: none;
  font-weight: 600;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}

.sig_button a:hover {
  background-color: #6b3a1a; /* fond marron au hover */
  color: white; /* texte blanc au hover */
}

  /* Listes des ingrédients : autoriser retour à la ligne et espace entre items */
  .sig_content_list ul {
    display: flex;       /* s'assurer que flex est bien appliqué */
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 0;     /* retirer le padding si nécessaire */
    margin-bottom: 10px; /* espacement entre les listes */
  }

  .sig_content_list ul li {
    margin-right: 10px;
    margin-bottom: 8px;
    white-space: nowrap;
    list-style: none;    /* optionnel, à vérifier selon design */
  }

  /* Forcer hauteur min pour éviter bloc trop petit */
  .home {
    min-height: 600px;

    /* Assurez-vous que la home reste flex centré */
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

  /* Règles spécifiques au contenu intro */
  .intro_content {
    padding-left: 49px;
  }
  .intro_col:not(:last-child) {
    margin-bottom: 30px;
  }
  .res_input,
  .res_select {
    width: 150px;
  }
}

/* 7. max-width: 575px */
@media only screen and (max-width: 575px) {
  p {
    font-size: 14px;
  }
  .header_content,
  .header.scrolled .header_content {
    height: 80px;
  }
  .hamburger_bar,
  .hamburger_bar.scrolled {
    height: 80px;
    right: 0;
  }
  .home {
    height: 500px;
  }
  .home_subtitle {
    font-size: 30px;
  }
  .home_title h1 {
    font-size: 36px;
  }
  .intro_content {
    padding-left: 30px;
  }
  .intro_subtitle,
  .sig_subtitle {
    font-size: 30px;
  }
  .intro_title h2,
  .sig_title h1,
  .themenu_title,
  .res_title,
  .footer_logo_title {
    font-size: 36px;
  }
  .intro_text {
    margin-top: 24px;
  }
  .sig_content_container {
    margin-bottom: 82px;
  }
  .sig_content {
    padding: 52px 30px 62px;
  }
  .sig_name,
  .sig_price {
    font-size: 20px;
  }
  .themenu_stars,
  .res_stars {
    font-size: 28px;
  }
  .res_form_container {
    width: 100%;
    margin-top: 60px;
  }
  .res_input:not(:last-child) {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .res_input,
  .res_select {
    width: 100%;
  }
  .footer_logo_subtitle {
    font-size: 12px;
  }
  .footer_contact_title,
  .footer_contact_text {
    font-size: 14px;
  }
}

/* 8. max-width: 479px */
@media only screen and (max-width: 479px) {
  .home_container {
    top: 15%;
  }
  .home_subtitle {
    margin-bottom: 10px;
    font-size: 40px;
  }
  .home_title h1 {
    font-size: 48px;
    margin-bottom: 15px;
  }
     /* NOUVELLE RÈGLE POUR CORRIGER LE MENU BURGER */
    .hamburger_bar {
        right: 15px !important; /* Position fixe depuis le bord droit */
        left: auto !important;
    }
    
    /* S'assurer que le hamburger reste visible */
    .hamburger {
        width: auto;
        max-width: none;
    }
    
    /* Ajuster la taille du texte "menu" si nécessaire */
    .menu_toggle span {
        font-size: 14px;
    }
  .home_text {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.4;
  }
}