
/* Style général de la page */
@font-face {
  font-family: "CustomFont1"; /* Name for your custom font */
  src: url("../fonts/LeagueGothic-Regular-VariableFont_wdth.ttf") format("truetype"); /* Path to the .ttf file */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CustomFont2"; /* Name for your custom font */
  src: url("../fonts/MyriadPro-Regular.otf") format("truetype"); /* Path to the .ttf file */
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: "CustomFont3"; /* Name for your custom font */
  src: url("../fonts/ArtisualDecoBlack_PERSONAL_USE_ONLY.otf") format("truetype"); /* Path to the .ttf file */
  font-weight: normal;
  font-style: normal;
}

/* Default styles for larger screens (web/desktop) */
section {
  padding-left: 100px;
  padding-right: 100px;
}


.titleFont {
 font-family: "CustomFont3", sans-serif;
 letter-spacing: 4px; 
 font-size: 30px;
 text-align: left; 
 color: #202043;

}

.image-container {
  width: 100%;
  height: 200px; /* Adjust height to fit your design */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; /* Optional: rounded corners */
  overflow: hidden;
}

.image-container img {
  max-width: 100%; /* Ensure image fits container width */
  max-height: 100%; /* Ensure image fits container height */
  object-fit: cover; /* Optional: makes image cover the entire container */
}

button {
  font-family: "CustomFont2", sans-serif;
  background-color: transparent;
  color: #202043;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  letter-spacing: 3px; /* Add this line to increase letter spacing on the button */

}


/* Adjust padding for smaller screens (mobile) */
@media (max-width: 768px) {
  section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .titleFont {
   font-family: "CustomFont3", sans-serif;
   letter-spacing: 4px; 
   font-size: 20px;
   text-align: center; 
 }

 button {
  padding: 5px;


}
}


body {
  font-family: "Poppins", sans-serif; /* Set Poppins as the default font */
  margin: 0;
  padding: 0;
  text-align: center;
  justify-content: center;  /* Center horizontally */
  align-items: center; 
  background-color: #f8e8d4;
}


/* Apply Poppins to all headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Poppins", sans-serif; /* Ensure all headings use Poppins */
}

.banner {
  width: 100%;
  font-family: "Poppins", sans-serif;
  background-color: #f7bcb9;
  box-sizing: border-box;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}


.banner > *:not(.banner-img) {
  position: relative;
  z-index: 1;
}


.bannerSimple {
  font-family: "Poppins", sans-serif; /* Set Poppins as the default font */
  background-size: contain; /* Make the image fit vertically and maintain aspect ratio */
  background-repeat: no-repeat; /* Prevent image from repeating */
  background-position: center; /* Center the image horizontally and vertically */
  padding: 20px;
  display: flex;
  justify-content: flex-end; /* Align the content (buttons) to the right */
  align-items: flex-end; /* Align the content (buttons) at the bottom */
  position: relative;
}


/* Conteneur des boutons */
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Style des boutons */


/* Pictogrammes dans les boutons */
.icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* Style des boutons au survol */
button:hover {
  background-color: #f7bcb9;
}

button .fas {
  font-size: 20px; /* Taille de l'icône */
  margin-right: 10px; /* Espace entre l'icône et le texte */
}

.english-label {
  position: absolute;
  left: 20px;
  padding: 8px 14px;
  background: #62a8b4;
  color: #202043;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 25px;
  transform: rotate(-3deg);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
  z-index: 9999; /* Pour que le label soit visible au-dessus des autres éléments */
}

@keyframes float {
  0%, 100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-5px);
  }
}




.contact-section {
  color: #202043;
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  color: #202043;
  font-family: "CustomFont3", sans-serif;
  letter-spacing: 4px;
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 50;
}

.contact-description {
  color: #202043;s
  color: rgb(107 114 128);
  font-weight: 50;
}


.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  max-width: 200px; /* Set a max-width to control the size */
  background-color: #DBC39B;
  color: #ffffff;
  padding: 13px 5px;
  border-radius: 0.375rem;
  border: none;
  display: block;
  margin: 0 auto; /* Centers the button */
}



.redirect {
  text-decoration: none;  /* Remove underline */
  font-size: 20px;  /* Font size */
  color: #999999;  /* Make the text color transparent to show gradient */
}

/* Hover effect */
.redirect:hover {
  color: #000000;  /* Make the text color transparent to show gradient */
}

header {
  position: relative;
  width: 100%;
  height: 300px; /* Hauteur de la bannière */
  background-image: url('https://via.placeholder.com/1500x300'); /* Remplacer par l'URL de votre image */
  background-size: cover;
  background-position: center;
}

/* Style pour le titre dans le header */
.header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 36px;
  font-family: Arial, sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Style pour l'icône du menu hamburger */
.menu-icon {
  display: none;  /* Masquer par défaut */
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  cursor: pointer;
  color: #e8dcd9,;
}

/* Menu de navigation */
nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-family: Arial, sans-serif;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

/* Effet au survol du menu */
nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
}

/* Style du menu lorsque le menu est ouvert */
nav.open {
  display: block;
}

/* Par défaut, cacher le menu sur les petits écrans */
nav ul {
  display: none;
}

/* Menu déroulant pour les petits écrans */
@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;  /* Afficher l'icône hamburger */
  }
  nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
  }
}


/*MENU*/

.containerMenu {
  padding: 20px;
  border-radius: 15px;
}
.menu-category {
  margin-bottom: 30px;
}
.menu-category h2 {
  font-size: 20px;
  font-family: "CustomFont1", sans-serif;
  letter-spacing: 2px;
  color: #202043;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #202043;
  padding-bottom: 5px;
}
.dish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.dish:last-child {
  border-bottom: none;
}
.dish-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dish-desc {
  color: #555;
  font-size: 0.8em;
  margin-left: 8px; /* Décalage à droite */
}

.dish-name {
  font-weight: normal;
  font-size: 15spx;
  color: #555;
}
.dish-price {
  font-size: 15px;
  color: #555;
  font-weight: normal;
}
.content {
  padding: 20px;
}

/*CONTACT*/

.contact {
  display: block; /* Makes the <a> tag take up the full width */
  width: 100%; /* Ensures the anchor tag spans the full width */
  text-decoration: none; /* Removes the default underline */
  color: inherit; /* Inherits the text color */
}

a.contact {
  color: inherit; /* Hérite la couleur de son parent */
  text-decoration: none; /* Enlève le soulignement */
}

a.contact:hover {
  text-decoration: none; /* Enlève également le soulignement au survol */
}


.top-section {
  width: 100%; /* Ensures the section takes up the full width of the parent */
  padding: 10px; /* Adds padding inside the section (optional) */
  display: flex; /* Use flexbox to align the items */
  flex-direction: column; /* Arrange items in a column */
  align-items: center; /* Centers the items horizontally */
  cursor: pointer; /* Changes the cursor to a hand when hovering over the section */
  border-top: 1px solid #202043; /* Adds a 1px solid border at the bottom */
}



.no-section {
  width: 100%; /* Ensures the section takes up the full width of the parent */
  padding: 10px; /* Adds padding inside the section (optional) */
  display: flex; /* Use flexbox to align the items */
  flex-direction: column; /* Arrange items in a column */
  align-items: center; /* Centers the items horizontally */
  cursor: pointer; /* Changes the cursor to a hand when hovering over the section */

}
.contentContact {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre les éléments horizontalement */
}

.list-item {
  color: #202043;
  display: inline-flex; /* Permet de placer l'icône et le texte sur la même ligne */
  align-items: center;  /* Centre verticalement */
  margin: 10px 0; /* Espacement entre les éléments */
}

.icon-phone {
  color: #202043;
  font-size: 24px; /* Taille de l'icône (tu peux ajuster si nécessaire) */
  margin-right: 8px; /* Un petit espacement entre l'icône et le texte */
}

.ligne {
  color: #202043;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.carre-gris {
  width: 50px; /* Largeur du carré */
  background-color: gray; /* Couleur grise */
  margin-right: 10px; /* Espace entre le carré et l'élément suivant */
}
.element {
  padding: 10px;
  border: 1px solid #000;
}


/* Style pour le Slider */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Style pour les images dans le slider */
.slide img {
  width: auto;
  max-height: 100px;
  object-fit: contain;
}

/* Style pour le texte sur l'image */
.image-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  text-align: center;
}

/* Style pour les flèches de navigation */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

    .content {
      height: 70vh; }

      .special {
        margin-bottom: 40px; /* Larger bottom margin for special paragraphs */
      }

      .special img {
        margin-right: 5px; /* Space between icon and text */
        width: 30px; /* Set icon width to 10px */
        height: 30px; /* Set icon height to 10px */
      }

      .footer-16371 {
        text-align: center;
        padding: 0;
        margin: 0;
        font-family: "Poppins", sans-serif; }
        .footer-16371 .footer-site-logo {
          text-align: center;
          font-size: 2rem;
          font-weight: 900; }
          .footer-16371 .footer-site-logo a {
            color: #202043; }
            .footer-16371 .nav-links {
              padding: 0;
              margin: 0; }
              .footer-16371 .nav-links li {
                margin-right: 100px;
                margin-left:  100px;
                display: inline-block; }
                .footer-16371 .nav-links li a {
                  padding: 0px;
                  color: #000; }
                  .footer-16371 .nav-links li a:hover {
                    color: #202043; }
                    .footer-16371 .social h3 {
                      font-weight: bold;
                      font-size: 18px;
                      color: #000; }
                      .footer-16371 .social ul li {
                        display: inline-block; }
                        .footer-16371 .social ul li a {
                          display: inline-block;
                          padding-left: 10px;
                          padding-right:  10px;
                          padding-top: 10px; }

                          .footer-16371 .social ul li.in a {
                            font-size: 24px; 
                            color: #202043; }
                            .footer-16371 .social ul li.phone a {
                              font-size: 24px; 
                              color: #202043; }
                              .footer-16371 .social ul li.mail a {
                                font-size: 24px; 
                                color: #202043; }
                                .footer-16371 .social ul li.address a {
                                  font-size: 24px; 
                                  color: #202043; }
                                  .footer-16371 .copyright {
                                    padding-bottom: 10px;
                                    color: #202043; }

      /* Indicateur de défilement fixe */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

      .arrow {
          display: block;
          animation: bounce 2s infinite;
          background-color: #202043;
          border-radius: 50%;
          width: 10px;
          height: 10px;
      } 

      .oval-container {
          position: relative;
          width: 25px;
          height: 40px;
          border: 2px solid #202043;
          border-radius: 50% / 50%;
          display: flex;
          padding-top: 5px;
          align-items: baseline;
          justify-content: center;
          overflow: hidden;
      }

      @keyframes bounce {
          0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(8px);
        }
        60% {
            transform: translateY(4px);
        }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.containerGalery {

  height: 100vh; /* occupe tout l'écran */
  overflow-y: auto; /* permet de scroller si besoin */
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    min-height: 100vh; /* Assure que la container occupe toute la hauteur de la fenêtre */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw; /* Largeur relative pour le logo */
    height: 80vh; /* Hauteur relative pour le logo */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition plus fluide */
}


.fork, .knife {
    width: 20vw; /* Largeur relative pour remplir l'écran */
    height: 40vh; /* Hauteur relative pour remplir l'écran */
    border-radius: 5px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition plus fluide */
}

.fork {
    background-image: url('./../images/pin1.png');
    background-size: cover; /* L'image remplira toute la zone de l'élément */
    background-position: center; /* L'image sera centrée */
    width: 20vw; 
    height: 40vh;
    border-radius: 5px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.knife {
background-image: url('./../images/pin2.png');
    background-size: cover; /* L'image remplira toute la zone de l'élément */
    background-position: center; /* L'image sera centrée */
    width: 20vw; 
    height: 40vh;
    border-radius: 5px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);}


/* Animation des objets pour l'effet de "ouverture" */
.open .fork {
    transform: rotate(45deg) translateX(-50px);
}

.open .knife {
    transform: rotate(-45deg) translateX(50px);
}

/* Deuxième "page" pour le contenu */
.content-page {
    height: 100vh; /* Page qui prend toute la hauteur de l'écran */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.show-content {
    opacity: 1;
    visibility: visible; /* Rendre visible le contenu quand l'animation est terminée */
}

.content {
    text-align: center;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 images par ligne */
    gap: 16px; /* Espace entre les images, ajustez la valeur selon vos préférences */
}

.gallery-item {
    padding: 10px;
    width: 100%;
    padding-bottom: 100%; /* Maintient le ratio carré */
    position: relative;
    overflow: hidden;
    background-color: #202043; /* Fond gris */
    border-radius: 12px; /* Coins arrondis pour le conteneur */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pour bien couvrir le conteneur */
    border-radius: 12px; /* Coins arrondis pour l'image */
}


/* Media queries pour mobile et tablettes */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .galleryContainer {
    padding: 0 12px;   /* espace latéral sur mobile */
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 images par ligne sur petits écrans */
  }

  .galleryContainer {
    padding: 100px 10px;   /* un peu moins d’espace */
  }
}

.video-wrapper {
  width: 100%;
  max-width: 900px;        /* limite la largeur max (optionnel) */
  margin: 40px auto;
  text-align: center;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  max-height: 500px;       /* ✅ limite la hauteur */
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: cover;       /* garde un cadrage correct si la vidéo est coupée */
}


.galleryContainer {
  margin: 20px; 
}