@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --white-color: #100f0f;              
    --dark-color: #f8f1e5;               
    --primary-color: #f8f1e5;            
    --secondary-color: #100f0f;          
    --accent-color: #B5838D;             
    --light-color: #EDEDED;              
  
  

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

body {
    background-image: url(Images/Fond.jpg);
}

html{
    scroll-behavior: smooth;
}

/* Stylings for whole site*/
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img{
    width: 100%;
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title{
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

/* Navbar styling*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color); /* couleur de fond de la barre */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}




header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu{
    display: flex;
    gap: 10px;
    align-items: center;
}

.navbar .nav-menu  .nav-link{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 12px 28px;
  background-color: #f1cf93;
  color: var(--secondary-color);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.3s, color 0.3s;

}

.navbar .nav-menu  .nav-link:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button){
    display: none;
}



.hero-illustration {
    position: absolute;
    bottom: 20px;
    right: 50px;
    width: 550px;  /* Augmentation de la taille de l'illustration */
    opacity: 0.9;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.hero-section .section-content{
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title{
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description{
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons{
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button{
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    background: var(--primary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-section .hero-details .contact-us:hover {
    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
}


.hero-section .hero-image-wrapper{
    max-width: 500px;
    margin-right: 30px;
}


/*preuve-social*/
 .preuve-sociale .logos.texte {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .preuve-sociale .logos.texte .media {
    font-size: 1.3rem;
    font-weight: bold;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: #000000;
  }
  
  /* Typographies différentes */
  .preuve-sociale .media.delish {
    font-family: 'Miniver', cursive;
  }
  
  .preuve-sociale .media.bloomberg {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  .preuve-sociale .media.forbes {
    font-family: Georgia, serif;
    font-style: italic;
  }
  
  .preuve-sociale .media.buzzfeed {
    font-family: Impact, Charcoal, sans-serif;
    letter-spacing: 1px;
  }
  
  /* Effet hover */
  .preuve-sociale .media:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  
  
  /* Carrousel */
.container {
    max-width: 124rem;
    padding: 0 1rem;
    margin: 0 auto;
  }
  
  .text-center {
    text-align: center;
  }
  
  .section-heading {
    font-size: 3rem;
    color:#e4c28e;
    padding: 2rem 0;
  }
  
  #tranding {
    padding: 4rem 0;
  }
  
  @media (max-width: 1400px) {
    #tranding {
      padding: 7rem 0;
    }
  }
  
  #tranding .tranding-slider {
    height: 30rem; /* Réduction de la hauteur du carrousel */
    padding: 2rem 0;
    position: relative;
  }
  
  @media (max-width: 500px) {
    #tranding .tranding-slider {
      height: 30rem; /* Réduction pour les petits écrans */
    }
  }
  
  .tranding-slide {
    width: 24rem; /* Réduction supplémentaire de la largeur des slides */
    height: 25rem; /* Réduction de la hauteur des slides */
    position: relative;
    overflow: hidden; /* Pour que l'image arrondie ne dépasse pas du slide */
    border-radius: 1rem; /* Arrondissement des coins du slide */
  }
  
  @media (max-width: 500px) {
    .tranding-slide {
      width: 60vw; /* Utilisation de la largeur du viewport pour les petits écrans */
      height: auto;
      border-radius: 1rem; /* Arrondir aussi les coins des slides sur mobile */
    }
  }
  
  .tranding-slider .swiper-slide img {
    width: 100%; /* Toujours s'adapte à la taille du slide */
    height: auto; /* Maintien le ratio de l'image */
    object-fit: cover; /* Ajuste l'image pour couvrir le slide sans déformer */
    border-radius: 1rem; /* Arrondir les coins des images */
  }
  
  .tranding-slide .tranding-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  .tranding-slide-content .food-price {
    position: absolute;
    top: 1rem; /* Réduction de la position du prix */
    right: 1rem; /* Réduction de la position du prix */
    color: #fff;
  }
  
  .tranding-slide-content .tranding-slide-content-bottom {
    position: absolute;
    bottom: 1rem; /* Réduction de la position du texte du bas */
    left: 1rem; /* Réduction de la position du texte du bas */
    color: #fff;
  }
  
  .food-rating {
    padding-top: 1rem;
    display: flex;
    gap: 0.5rem; /* Espacement entre les étoiles */
    align-items: center;
  }
  
  .rating {
    display: flex;
  }
  
  .rating ion-icon {
    color: #cf0941; /* Couleur des étoiles pleines */
    font-size: 1.5rem; /* Taille des étoiles */
  }
  
  .rating ion-icon[name="star-outline"] {
    color: #ccc; /* Couleur des étoiles vides */
  }
  
  .rating ion-icon[name="star-half"] {
    color: #e4c28e; /* Couleur de l'étoile à moitié remplie */
  }
  
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right {
    display: none;
  }
  
  .tranding-slider-control {
    position: relative;
    z-index: 2;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tranding-slider-control .swiper-button-next,
  .tranding-slider-control .swiper-button-prev {
    position: absolute;
    background: #fff;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
  }
  
  .tranding-slider-control .swiper-button-next ion-icon,
  .tranding-slider-control .swiper-button-prev ion-icon {
    font-size: 2rem;
    color: #252525;
  }
  
  .tranding-slider-control .swiper-button-next {
    left: 58%;
    transform: translateX(-58%);
  }
  
  @media (max-width: 990px) {
    .tranding-slider-control .swiper-button-next {
      left: 30%;
      transform: translateX(-30%);
    }
  }
  
  @media (max-width: 450px) {
    .tranding-slider-control .swiper-button-next {
      left: 20%;
      transform: translateX(-20%);
    }
  }
  
  .tranding-slider-control .swiper-button-prev {
    left: 42%;
    transform: translateX(-42%);
  }
  
  .tranding-slider-control .swiper-button-next ion-icon:before,
  .tranding-slider-control .swiper-button-prev ion-icon:before {
    content: ''; /* Assure qu'il n'y ait pas de contenu texte à la place de l'icône */
  }
  
  .tranding-slider-control .swiper-pagination {
    position: relative;
    width: 15rem;
    bottom: 1rem
  }  

  /* SUPPRIMER LES FLECHES BLEUES PAR DÉFAUT DE SWIPER */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; /* Enlève les flèches par défaut */
}
/*About section*/
.about-section{
    padding: 120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title{
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link{
    color:var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover{
    color:var(--secondary-color);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*Testimonial section styling*/
*{
    margin: 0;
    padding: 0;
    font-family: "montserrat" ,sans-serif;
}

.testimonials{
    padding: 40px 0;
    background: #f8f1e5;
    color: rgba(0, 0, 1, 0.1);
    text-align: center;
}

.inner{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.border{
    width: 160px;
    height: 5px;
    background: #e4c28e;
    margin: 26px auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col{
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.testimonial{
    background: #fff;
    padding: 30px;
}

.testimonial img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.name{
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
}

.stars{
    color: #edcf9c;
    margin-bottom: 20px;
}

@media screen and (max-width:600px) {
    .col{
        flex: 100%;
        max-width: 80%;
    }
}
@media screen and (max-width:600px) {
    .col{
        flex: 100%;
        max-width: 80%;
    }
}

/*Menu section styling*/
.menu-section{
    color: var(--white-color);
    background: var(--dark-color);
    padding: 50px 0 100px;
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
}

.menu-section .menu-list .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width:calc(33.333% - 60px);
}


.menu-section .menu-list .menu-item .menu-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
}

.menu-section .menu-list .menu-item .name{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-section .menu-list .menu-item .text{
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}



/*Gallery section styling*/
.gallery-section {
    padding: 50px 0 100px;
}


.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery-section .gallery-list .gallery-item{
   overflow: hidden;
   border-radius: var(--border-radius-s);
    width: calc(100% / 3 -32px);
}

.gallery-section  .gallery-item .gallery-image{
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;
}

.gallery-section  .gallery-item:hover .gallery-image{
    transform: scale(1.3);
}

/*Contact us*/
.contact-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.contact-section  .section-content{
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section  .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-section  .contact-info-list .contact-info i{
    font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background-color: #f8f1e5;
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form {
    max-width: 50%;
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .submit-button {
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-color);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover{
    color: var(--primary-color);
    background: transparent;
}

/*Footer section*/
.footer-section {
    padding: 20px 0;
    background: var(--dark-color);
}

.footer-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link){
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover
.footer-section .policy-text .policy-link:hover{
    color: var(--secondary-color);
}

.footer-section .policy-text .separator{
    margin: 0 5px;
    color: var(--white-color);
}

/* Responsive media query width 1024px*/
@media screen and (max-width: 1024px){
    .menu-section .menu-list{
        gap: 60px;
    }
    .menu-section .menu-list .menu-item{
        width: calc(100% / 3 -60px);
    }
}

/* Responsive media query width 900px*/
@media screen and (max-width: 900px) {
    :root{
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before{
        content: "";
        position: fixed;
        left: 0;
        top:0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0,0,0,0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button){
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button{
        position: absolute;
        right: 30px;
        top: 30px;
    }
    .navbar #menu-open-button{
        color: var(--white-color);
    }

    .navbar .nav-menu{
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }


body.show-mobile-menu .navbar .nav-menu{
    left: 0;

}

.navbar  .nav-menu .nav-link{
    color: var(--dark-color);
    display: block;
    margin-top: 17px;
    font-size: var(--font-size-l);
    
}

.hero-section .section-content{
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
}

.hero-section .hero-details :is(.subtitle,.description), .about-section .about-details,.contact-section .contact-form{
     max-width: 100%;
}

.hero-section .hero-details .buttons{
    justify-content: center;
}

.hero-section .hero-image-wrapper{
    max-width: 270px;
    margin-right: 0;
}
.about-section .section-content{
    gap: 70px;
    flex-direction: column-reverse;
}

.about-section .about-image-wrapper .about-image{
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
}
.menu-section .menu-list{
    gap: 30px;
}
.menu-section .menu-list .menu-item{
    width: calc(100% / 2 -30px);
}

.menu-section .menu-list .menu-item .menu-image{
    max-width: 200px;
} 

.gallery-section .gallery-list{
    gap: 30px;
}

.gallery-section .gallery-list .gallery-item{
    width: calc( 100% /2 -30px);
}

.contact-section .section-content{
    align-items: center;
    flex-direction: column-reverse;
}

}

/* Responsive media query width 640px*/
@media screen and (max-width: 640px) {
    .menu-section .menu-list{
        gap: 60px;
    }

    .menu-section .menu-list .menu-item,
    .gallery-section .gallery-list .gallery-item{
        width: 100%;
    }

.testimonials-section .slider-wrapper{
    margin: 0 0 30px;
} 

.testimonials-section .swiper-slide-button{
    display: none;
}

.footer-section .section-content{
    flex-direction: column;
    gap: 20px;
}
}
/* Barre de recherche dans la section menu */

.search-bar {
    text-align: center;
    margin: 30px auto 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-bar input[type="text"] {
    padding: 12px 16px;
    width: 250px;
    max-width: 80%;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-s);
    font-size: var(--font-size-n);
    background-color: #fff;
    color: #000;
}

.search-bar button {
    padding: 12px 18px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-s);
    font-size: var(--font-size-n);
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #945a66; /* Variante plus foncée de l'accent color */
}


/* Bouton View pour afficher/masquer la description */
.view-btn {
    background: #6d4c41;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    margin: 12px 0;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
    outline: none;
    box-shadow: 0 2px 4px #0001;
}
.view-btn:hover {
    background: #8d6e63;
}

/* Bloc de description du plat (affiché/masqué dynamiquement) */
.plat-desc {
    margin: 10px 0 0 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    display: none; /* caché par défaut */
    animation: fadeInDesc 0.3s;
}

@keyframes fadeInDesc {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ====== FORMULAIRE AJOUT PLAT ====== */
.add-section {
    min-height: 100vh;
    background: #f0e6e6 url('../images/Fond.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.add-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px #0002;
    padding: 38px 30px 26px 30px;
    max-width: 400px;
    width: 100%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.add-card h1 {
    text-align: center;
    color: #B5838D;
    margin-bottom: 28px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
}

.add_form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.add-card label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #8d6e63;
    font-size: 1.05em;
}

.add-card input[type="text"],
.add-card input[type="number"],
.add-card input[type="password"],
.add-card textarea,
.add-card select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2cfc3;
    border-radius: 10px;
    font-size: 1em;
    background: #f9f7f3;
    margin-top: 2px;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    box-sizing: border-box;
}

.add-card input[type="text"]:focus,
.add-card input[type="number"]:focus,
.add-card input[type="password"]:focus,
.add-card textarea:focus,
.add-card select:focus {
    border-color: #B5838D;
    box-shadow: 0 0 0 2px #ffe1c1;
    background: #fff;
}

.add-card textarea {
    min-height: 80px;
    resize: vertical;
}

.add-card button[type="submit"] {
    background: linear-gradient(90deg, #B5838D 70%, #f7d9c4 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 28px;
    font-size: 1.12em;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 8px #0001;
    transition: background 0.18s, transform 0.14s;
    letter-spacing: 1px;
    display: inline-block;
}

.add-card button[type="submit"]:hover {
    background: #8d6e63;
    transform: translateY(-2px) scale(1.04);
}

.add-card .error {
    background: #ffe1e1;
    color: #b00020;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 1em;
}

.add-card .success-wrapper {
    background: #e6ffe6;
    color: #247a24;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 1em;
    text-align: center;
}

.add-card .success {
    font-weight: bold;
}

.add-card .return-button {
    margin-top: 8px;
    background: #B5838D;
    color: #fff;
    padding: 8px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1em;
}

@media (max-width: 600px) {
    .add-card {
        padding: 18px 5vw;
        max-width: 98vw;
    }
}
.form-container {
  max-width: 600px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.input:focus {
  border-color: #0077cc;
  outline: none;
}

.btn-primary {
  background-color: #0077cc;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #005fa3;
}

.success, .error {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.success {
  background-color: #e6ffed;
  color: #1e7f33;
  border: 1px solid #a0e1b8;
}

.error {
  background-color: #ffe6e6;
  color: #b70000;
  border: 1px solid #ff9d9d;
}

.return-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #28a745;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

.return-button:hover {
  background-color: #218838;
}

.form-container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Section Preuve Sociale */
.preuve-sociale {
    background-color: #f8f1e5;
    padding: 20px 0;
}

/* Galerie de 3 images alignées */
.galerie-images {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.galerie-images img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
}

p, .text {
    color: #f8f1e5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


.footer {
    background: #f8f1e5;
    padding: 24px 0 12px 0;
    margin-top: 40px;
    border-top: 1px solid #e0d6c3;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #b87d4a;
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    color: #888;
    font-size: 0.9em;
}

/* ---- Mentions légales (rose & beige) ---- */

.mentions-main {
    max-width: 800px;
    margin: 120px auto 3rem auto;
    padding: 2rem;
    background: #fff8f0; /* beige très clair */
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(231,84,128,0.08);
}

.mentions-title {
    text-align: center;
    color: #e75480; /* rose vif */
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: "Miniver", cursive;
    font-size: 2.2rem;
}

nav.sommaire-rose {
    background: #f9dbe7; /* rose poudré */
    border-radius: 12px;
    padding: 1.2em 1em;
    margin-bottom: 2em;
    box-shadow: 0 2px 8px rgba(231,84,128,0.06);
}

nav.sommaire-rose h2 {
    margin-top: 0;
    color: #b76e79;
    font-size: 1.2em;
}

nav.sommaire-rose a {
    display: block;
    padding: 0.5em 1em;
    margin: 0.2em 0;
    color: #b76e79;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    border-radius: 5px;
    font-weight: 500;
}
nav.sommaire-rose a:hover {
    background: #ffe4ec;
    border-left: 4px solid #e75480;
    color: #e75480;
    font-weight: bold;
}

.mentions-section > div {
    margin-bottom: 2em;
}
.mentions-section h3 {
    color: #b76e79;
    margin-top: 1.5em;
    font-size: 1.3rem;
}

.footer {
    background: #f9dbe7;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    color: #b76e79;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 3rem;
}
.footer-links {
    margin-bottom: 0.5rem;
}
.footer-link {
    color: #b76e79;
    text-decoration: none;
    margin: 0 0.7em;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #e75480;
    text-decoration: underline;
}
.footer-copy {
    font-size: 0.95em;
    margin-bottom: 0.3em;
}
@media (max-width: 600px) {
    .mentions-main {
        padding: 1em;
    }
    nav.sommaire-rose {
        padding: 1em 0.5em;
    }
}

.plat-detail-container {
            max-width: 700px;
            margin: 40px auto;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px #0001;
            padding: 24px;
        }

.plat-detail-img {
            width: 100%;
            max-width: 450px;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 18px;
            background: #eee;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        .plat-detail-container h2 {
            text-align: center;
            color: #6d4c41;
            margin-top: 0;
        }
        .plat-detail-container p {
            font-size: 1.1em;
            color: #333;
            margin: 12px 0;
            line-height: 1.4;
        }
        .plat-detail-container strong {
            color: #8d6e63;
        }
        .retour-btn {
            background: #6d4c41;
            color: #fff;
            border: none;
            border-radius: 20px;
            padding: 10px 26px;
            margin: 24px auto 0 auto;
            cursor: pointer;
            font-size: 1.1em;
            transition: background 0.2s;
            outline: none;
            box-shadow: 0 2px 4px #0001;
            display: block;
            width: 140px;
        }
        .retour-btn:hover {
            background: #8d6e63;
        }
        @media (max-width: 700px) {
            .plat-detail-container {
                max-width: 97vw;
                padding: 12px;
            }
            .plat-detail-img {
                max-width: 98vw;
                height: 180px;
            }
        }