*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #33201a;
    font-family: 'Georgia', serif;
}
nav{
    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    height: 90px;
    display: flex;
    align-items: center;
}
/* Barre de navigation fixe avec transition */
#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    z-index: 900;
}

/* Masquer la barre de navigation */
#navbar.hidden {
    transform: translateY(-100%);
}

nav ul{
    margin: 0 10px;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    transition: 0.3s ease-in-out;
}

nav a:hover{
    background-color: #cc861ccb;
    color: #fff;

}
nav a.active {
    background-color: #cc861ccb;
    color: #fff;
}

nav li:first-child{
    margin-right: auto;
}
.logo a:hover{
    background-color: #fff;
}
.sidebar{
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(150, 90, 21, 0.884);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar li:first-child{
    margin: 10px 0 100px 0;
}

.sidebar a{
    width: 100%;
    color: white;
    font-size: 1.4rem;
}
.menu-button{
    display: none;
}
.buttonreservationmobile{
    display: none;
}
.banniere{
    background-image: url(./images/banniere.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* banniere du dessus de la carte sur la page d'accueil */
.banniere2{
    background-image: url(./images/banniereficherestauranthover.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banniere2:hover{
    background-image: url(./images/banniereficherestaurant1.jpg);
    transition: background-image 0.9s ease;
}
/* banniere page evenement */
.banniereevenement{
    background-image: url(./images/banniereevenement.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banniereapropos{
    background-image: url(./images/banniereapropos.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.textebanniere{
    color: #fff;
    text-align: center;
}
.bannierepara{
    font-size: 1.9rem;
}
.textebanniere2{
    color: orange;
    font-weight: 600;
    text-align: center;
    width: 800PX;
    margin-left: 900px;
    margin-bottom: 500px;

}
.textebanniere h1{
    margin-bottom: 20px;
    font-size: 3.5rem;
}
.button{
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.buttonreserver{
    margin-right: 20px;
    border: 1px solid black;
    height: 50px;
    width: 250px;
    background-color: orange;
    color: #fff;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
}
.buttonmenu{
    margin-left: 20px;
    border: 1px solid black;
    height: 50px;
    width: 250px;
    background-color: white;
    color: orange;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
}
.buttonmenu:hover, .buttonreserver:hover{
    background-color: #33201a;
    color: orange;
}

/*volet ouvrant */


.curtain {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #b35c22;
    z-index: 999;
    overflow: hidden; 
    transition: transform 1.5s ease; 
}


.left-curtain {
    left: 0;
    transform: translateX(0);
}

.right-curtain {
    right: 0;
    transform: translateX(0);
}

/* Styles appliqués lors de l'ouverture */
.open .left-curtain {
    transform: translateX(-100%);
}

.open .right-curtain {
    transform: translateX(100%);
}

body.open .content {
    opacity: 1;
}




/* Bouton retour en haut */
.scroll-to-top {
    z-index: 950;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none; /* Caché par défaut */
}

/* Cercle de fond */
.circle-bg {
    fill: none;
    stroke: #e0e0e0;
}

/* Cercle de progression */
.circle-progress {
    fill: none;
    stroke: orange;
    stroke-dasharray: 283; /* 2 * Math.PI * 45 (circumference du cercle) */
    stroke-dashoffset: 283; /* Commence complètement vide */
    transition: stroke-dashoffset 0.1s ease-out;
}

/* Flèche au centre */
.arrow {
    fill: orange;
}




/* PAGE EVENEMENT */

.evenementdiv {
    gap: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    height: auto;
    width: 80vw;
}
.evenementdiv img{
    margin: auto;
}
.evenementdiv11 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    width: 50%;
}

.evenementdiv11 form {
    font-size: 1rem;
    width: 100%;
}

.evenementdiv11 p{
    font-size: 1rem;
    line-height: 30px;
    margin: 0 0 30px 0;
}
.evenementdiv11 h3{
    margin: 50px 0;
    font-size: 1.6rem;
}

.diviserformulairebutton2{
    display: block;
    width: 100%;
}
.diviserformulairebutton2 button[type="submit"] {
    margin: 30px 0 30px 0;
    padding: 10px 20px;
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.diviserformulairebutton2 button[type="submit"]:hover {
    background-color: rgb(110, 75, 10);
}


.englobeimganniversaire{
    margin: auto;
    background: url(./images/imageanniversairediv2.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
}
.englobeimganniversaire img{
    width: 100%;
    height: auto;
    margin: 0 auto;
} 
.englobeimgsoireedecouverte{
    margin: auto;
    background: url(./images/imagesoireedecouverte1.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;

}
.englobeimgsoireedecouverte img{
    width: 100%;
    height: auto;
    margin: 0 auto;
} 

.backevenementdivblanche{
    width: 100%;
    background-color: #fff;
}
.evenementdiv2{
    background-color: #fff;
    gap: 100px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: row;
    height: auto;
    width: 80vw;
}
.evenementdiv3{
    gap: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    height: auto;
    width: 80vw;

}

.evenementdiv2 img , .evenementdiv3 img {
    margin: 50px;
    max-width: 40%;
    height: auto;
}
.evenementdiv2  , .evenementdiv3 h3{   
    margin: 50px 0;
    font-size: 1.6rem;
}
.evenementdiv2 , .evenementdiv3 p{
    line-height: 30px;
    margin: 0 0 30px 0;
}

.evenementdiv12 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    width: 50%;
}

.evenementdiv12 form {
    font-size: 1rem;
    width: 100%;
}

.formulaireevenement {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.diviserformulaire {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
}

.diviserformulaire label {
    margin-bottom: 5px;
    font-weight: bold;
}

.diviserformulaire input, .diviserformulaire select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.diviserformulairebutton{
    display: block;
    width: 100%;
}
.diviserformulairebutton button[type="submit"] {
    margin: 30px 0 30px 0;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.diviserformulairebutton button[type="submit"]:hover {
    background-color: #444;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .evenementdiv3, .evenementdiv2 {
        gap: 50px;
        width: 90%;
    }

    .evenementdiv11, .evenementdiv12 {
        width: 100%;
        text-align: left;
    }

    .formulaireevenement {
        gap: 15px;
    }

    .englobeimganniversaire, .englobeimgsoireedecouverte {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .diviserformulaire {
        width: 100%;
    }

    .evenementdiv2 , .evenementdiv3 {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }
    .evenementdiv2 img , .evenementdiv3 img {
        max-width: 100%;
        height: auto;
        margin: 10px auto;
    }

    .evenementdiv11, .evenementdiv12 {
        width: 95%;
        text-align: center;
    }

    .evenementdiv11 h3, .evenementdiv12 h3 {
        font-size: 1.9rem;
    }

    .diviserformulaire label {
        font-size: 0.85rem;
    }

    .diviserformulaire input, .diviserformulaire select {
        font-size: 0.9rem;
        padding: 8px;
    }

    .diviserformulairebutton button[type="submit"],
    .diviserformulairebutton2 button[type="submit"] {
        font-size: 0.9rem;
        padding: 8px;
    }

    .englobeimganniversaire, .englobeimgsoireedecouverte {
        height: 250px;
    }
}


/*div style hover */ 

.division1, .division2, .division3, .division4 {
    margin: 20px auto;
    border-radius: 15px;
    height: 200px;
    width: 1200px;
    background-position: center;
    background-size: cover;
    transition: 0.5s ease;
}

.division1 { background: url(./images/imgrestoeffethover.jpg); }
.division2 { background: url(./images/imgrestoreservation.jpg); }
.division3 { background: url(./images/imgrestoaproposv.jpg); background-repeat: no-repeat; }
.division4 { background: url(./images/imgretocontact.jpg); }

.division1:hover, .division2:hover, .division3:hover, .division4:hover{
    height: 600px;
}
.gauche p {
    margin: 0 10px;
    text-align: center;
    transition: line-height 0.4s ease, color 0.4s ease; /* Transition fluide */
    line-height: 30px; /* Valeur initiale */
    color: #000; /* Couleur initiale */
}

.division1:hover .gauche p,
.division2:hover .gauche p,
.division3:hover .gauche p,
.division4:hover .gauche p {
    line-height: 60px; /* Espacement augmenté */
    color: #b35c22; /* Change la couleur pour rendre le hover plus visible */
}


.displayflex {
    display: flex;
    flex-direction: row;
}

.gauche {
    background-color: white;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}
.gauche a{
    text-decoration: none;
    color: #b35c22;
}
.gauche p{
    margin: 30px 10px 0 10px;
    text-align: center;
}
.droite img {
    width: 60%;
    height: 200px;
    background-size: contain;
    background-position: center;
}


/* Carousel container */
.content{
    width: 1200px;
    height: 600px;
    background-color: #b35c22;
    border-radius: 10px;
    margin: 100px auto;
    display: flex;
    flex-direction: row;
}
.carousel-container {
    background-color: white;
    position: relative;
    overflow: hidden;
    width: 50%;
    height: 90%;
    margin: auto 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Carousel slide */
.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide-vertical {
    flex-direction: column;
}
.carousel-slide-horizontal {
    flex-direction: row;
}

/* Carousel item */
.carousel-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
}

/* Arrows */
.arrow {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.arrow.left {
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.arrow.right {
    height: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.arrow.up {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.arrow.down {
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}

/* Barre de progression horizontale */
.progress-bar-horizontal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 33;
    height: 6px;
    width: 0; /* Commence à 0 */
    background-color: orange;
    transition: width 0.5s ease-in-out;
}

/* Barre de progression verticale */
.progress-bar-vertical {
    position: absolute;
    z-index: 33;
    top: 0;
    left: 0;
    width: 6px;
    height: 0; /* Commence à 0 */
    background-color: orange;
    transition: height 0.5s ease-in-out;
}
.paragraphecaroussel-container{
    width: 50%;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.titreparagraphe{
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    text-align: center;
}
.paragraphecaroussel{
    height: 50%;
    text-align: center;
    margin-bottom: 20px;
    line-height: 35px;
}
/*@media(max-width:1300px){
    .content{
        width:100%
    }
}
@media(max-width:1000px){
    .content{
        margin: auto;
        flex-direction: column;
        width: 90%;
    }
    .carousel-container{
        width:100%
    }
    .paragraphecaroussel-container{
        width: 100%;
        margin: 0;
    }
}*/



/*   fiche restaurant   */
.ficherestaurant{
    width: 1200px;
    height: 1000px;
    margin: auto;
    margin-top: 50px;
    background-color: #b35c22;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.titreficherestaurant{
    display: flex;
    flex-direction: column;
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.underlinetitre{
    margin: auto;
    width: 80%;
    margin-top: 20px;
    height: 2px;
    background-color: white;

}
.paragrapheficherestaurant{
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 700px;
}
.buttonficherestaurant{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.buttonficherestaurant a{
    font-size: 2rem;
    text-decoration: none;
    color: #f3f3f3;
}

.buttonficherestaurant::before {
    content: "→";
    font-size: 3.5rem;
    color: #D4B190; /* Couleur beige clair */
    margin-right: 20px;
    margin-bottom: 2px;
}




/*  menu   */

.menu-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #3b3b3b;
    background-color: #fff;
    line-height: 1.6;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #8b6b43;
    position: relative;
}

.menu-header h1::before, .menu-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #8b6b43;
    margin: 10px auto;
}

.menu-header p {
    color: #6e6e6e;
    font-size: 1.2rem;
    margin-top: 10px;
}

.menu-category h2 {
    font-size: 2rem;
    text-align: center;
    color: #8b6b43;
    margin: 30px 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item strong {
    font-size: 1.2rem;
    color: #3b3b3b;
}

.menu-item p {
    font-size: 0.9rem;
    color: #a78565;
    margin-top: 5px;
}

.menu-price {
    font-size: 1.2rem;
    color: #3b3b3b;
}

/* Voir la carte */
.menu-footer {
    text-align: center;
    margin-top: 40px;
}

.menu-footer .cta {
    font-size: 1.5rem;
    text-decoration: none;
    color: #8b6b43;
    border-bottom: 1px solid #8b6b43;
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.menu-footer .cta:hover {
    color: #5c4c31;
    border-color: #5c4c31;
}



/*  horaires  */




/* Section Contact */
.contact-section {
    margin: auto;
    margin-top: 100px;
    background-color: #b35c22; /* Couleur élégante */
    color: #fff;
    text-align: center;
    padding: 30px;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombre */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Liste des horaires */
.contact-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-content li {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-content li:last-child {
    border-bottom: none;
}

/* Texte des jours et horaires */
.contact-content span:first-child {
    font-weight: bold;
    color: #f3f3f3; /* Doré pour le jour */
}

.contact-content span:last-child {
    font-weight: normal;
    font-style: italic;
    color: #FFF;
}


/*css menu */

.divmenu{
    width: 100%;
    height: auto;
    background-color: #f3f3f3;
}
.h2pagemenu{
    background-color: #f3f3f3;
    width: 200px;
    margin: 20px auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



/*  PAGE À PROPOS   */



.div1apropos{
    height: 500px;
    position: relative;
    background: #fff;
    padding: 40px;
    margin: 100px auto 400px auto;
    width: 45%;
}
.texte1apropos{
    text-align: center;
    margin: 40px auto;
}
.h2texte1apropos{
    width: 300px;
    margin:0 auto 40px auto;
    border-bottom: 2px solid black;
    padding: 10px;
}
.texte1apropos p{
    line-height: 30px;
}
.image1apropos img{
    position: absolute;
    right: -200px;
}


/*  Caroussel sans scroll    */
  /* Carousel container */
  .carousel-containerapropos {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
  }
  
  /* Carousel slide */
  .carousel-slideapropos {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * 14); /* 12 images + 2 duplications */
  }
  
  /* Carousel item */
  .carousel-itemapropos {
    flex: 0 0 25%; /* 4 images visibles */
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  .carousel-itemapropos img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }


  
  .concept-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 2rem;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.concept-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333333;
}

.concept-section p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 2rem;
}

.concept-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.concept-text {
    flex: 1 1 45%;
    text-align: left;
}

.concept-text h3 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.concept-text p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.concept-image {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.author {
    margin-top: 1rem;
    font-style: italic;
    color: #777777;
}


/* section 3divimg page apropos    */

/* Container for the sections */
.containerphotos {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    margin: 20px;
    gap: 20px;
}

/* Each section style */
.itemphoto {
    flex: 1;
    padding: 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.itemphoto:hover {
    transform: scale(1.03);
}

.itemphoto img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.itemphoto h2 {
    font-family: "Georgia", serif;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1.8em;
}



/* La section des evenements page a propos */



.containerevenement {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}
.containerevenement a{
    text-decoration: none;
}
.top-sectionevenement {
    width: 70%;
    background-color: white;
    color: #b35c22;
    text-align: center;
    padding: 20px;
    margin: 100px auto 10px auto;
    border-radius: 8px;
}
.top-sectionevenement p{
    color: black;
    margin: 20px auto;
}

.top-sectionevenement img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.top-sectionevenement h2 {
    margin: 10px 0 30px 0;
    font-size: 2rem;
}

.cardevenement {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 300px;
}

.cardevenement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(238, 224, 224, 0.301);
}

.cardevenement img {
    width: 100%;
    height: auto;
}

.cardevenement-content {
    padding: 20px;
}

.cardevenement-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #b35c22;
}

.cardevenement-description {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
}

.cardevenement-link {
    font-size: 14px;
    color: #b35c22;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .containerevenement {
        margin: 10px auto;
        flex-direction: column;
        align-items: center;
    }    
    .top-sectionevenement h2 {
        font-size: 1.6rem;
    }
    .cardevenement {
        width: 90%;
    }

    .top-sectionevenement {
        width: 95%;
        text-align: left;
    }
}



/* page ajouter ingredient pour admin*/


.divajouteringredientadmin{
    width: 50%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px auto ;
    padding: 10px;
    color: white;
    background-color: #e9870f;
}
.divajouteringredientadmin form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: auto;
}
.divajouteringredientadmin button{
    background: orangered;
}

.divadminidentification{
    border-radius: 10px;
    padding: 30px;
    width: 50%;
    height: 300px;
    margin: 200px auto;
    color: white;
    background-color: #e9870f;
}

.divadminidentification button{
    background-color: orangered;
}
    

/*   css pour ADMIN        */
.menuadmin li{
    list-style-type: none;
}
.menuadmin li a{
    color: black;
    text-decoration: none;
}
.menu{
    line-height: 30px;
    height: 300px;
    background-color: white;
    width: 60%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.h2vuemenus{
    width: 300px;
    font-size: 2.5rem;
    border-bottom: 2px solid white;
    margin: 50px auto;
    color: white;
    text-align: center;
}

.vuemenu{
    background-color: white;
    width: 100%;
    margin: 40vh auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.divmessageadmin{
    background-color: orange;
}




/*  button messages dans la navbar pour client connecté  */

.buttonmessageclient{
    display: none;
}
.messageriecoteclient{
    width: 80%;
    min-height: 400px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}


/* formulaire reservation*/

.bannierereserver{
    background-image: url(./images/bannierereservertable.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reservations-list{
    background-color: #fff;
    margin: auto;
    display: flex;
    flex-direction:column;

}
.reservations-list h3{
    margin: 20px 0;
}
.englobereservation-item{
    width: 100%;
    height: 100%; 
}
.reservation-item{
    background-color: #cc861ccb;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    
}
.reservation-item p{
    margin: 20px;
}


.reservation-form {
    margin-top:80px !important;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: auto;
}

.h2reservation{
    text-align: center;
    font-size: 2rem;
}
.reservation-form p{
    text-align: start;
    font-size: 1.2rem;
    font-weight: bold;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
input[type="text"], input[type="email"], input[type="date"], input[type="time"], select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #E76F51;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #D55B3D;
}



/* PAGE DE CONTACT*/
.h1contact {
    text-transform: uppercase;
    max-width: 500px;
    margin: 30px auto;
    border-bottom: 4px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 2.8rem;
}
.contact {
    padding: 20px;
    width: 80%;
    margin: auto;
    border-radius: 15px;
    border: 2px solid black;
    background-color: #ccc;
}
/*.inscriptionclient{
    margin-top: 100px;
    background-color: #b35c22;
    width: 50%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}*/

.contact-form, .map {
    max-width: 100%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background: #555;
}

#map {
    width: 100%;
    min-height: 400px;
    border-radius: 8px;
}
#map2{
    display: none;
}







/* Footer  */


.footer {
    margin-top: 80px;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    padding: 10px;
}

.footer-section h2 {
    font-size: 18px;
    color: #ff6347;
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #ff6347;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    border-top: 1px solid #444;
    padding: 10px;
}

.footer-bottom a {
    color: #ff6347;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}
/*section presentation du chef*/



/* Global Styles */
/* Restaurant Section */
.restaurant-section {
    max-width: 1200px;
    line-height: 1.6rem;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 50px;
}

.title {
    font-size: 2.5rem;
    color: #d27b4b;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #f3f3f3;
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}

.quote p {
    margin-bottom: 15px;
}

.quote:before,
.quote:after {
    content: "“";
    font-size: 2rem;
    color: #d27b4b;
}

.quote:after {
    content: "”";
    display: block;
    text-align: right;
}

/* Content Section */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.image-container {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.info {
    flex: 1 1 45%;
}

.info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f3f3f3;
}

.awards {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.award-item {
    background-color: #f4e7da;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.cta-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background-color: #d27b4b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b3623c;
}


/* Avis Page Accueil */

.accueilavis {
    margin: auto;
    width: 1200px;
    min-height: 800px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.avis {
    text-align: center;
    font-size: 2.5rem;
    margin: 40px auto;
    color: #b35c22;
}

.accueilavis p {
    margin: 20px auto 5px 15px;
    font-size: 2.1rem;
    color: #b35c22;
}

.propositionavis {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.propositionavis a {
    margin: 10px;
    padding: 8px;
    font-size: 1.2rem;
    color: #f3f3f3;
    border-radius: 10px;
    background-color: orange;
    text-decoration: none;
}

.notation {
    margin: 40px auto 20px auto;
    font-size: 1.9rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avisclient {
    width: 90%;
    margin: auto;
    height: 400px;
    background-color: #c36e35;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto; /* Active le scroll vertical */
    padding: 20px;
    color: #fff;
}

.avis-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espace entre les avis */
}

.avis-item {
    background-color: #f3f3f3; /* Couleur de fond des avis */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.avis-item p{
    font-size: 1.2rem;
}

.ajouter-avis form{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

/*responsive*/
@media (max-width:1600px){
    .textebanniere2{
        display: none;
    
    }
}
@media(max-width:1300px){
    .division1, .division2, .division3, .division4, .division5{
        width: 90%;
        margin: 20px auto;
    }
    nav{
        width: 100%;
    }
    .content{
        margin-top: 100px !important;
        width: 90%;
        margin: auto;
    }
}
@media (max-width:1200px){
    .ficherestaurant{
        width: 100%;
    }
    .accueilavis{
        width: 90%;
    }
}
@media (max-width:1100px){
    .div1apropos{
        width: 80%;
    }
    .texte1apropos{
        margin: 40px auto;
    }
    .image1apropos img{
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
    }
}

@media(max-width:1000px){
    /* Bouton retour en haut */
    .scroll-to-top {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 60px;
        height: 60px;
        cursor: pointer;
        display: none; /* Caché par défaut */
    }
    .content{
        margin: auto;
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    
    .carousel-container {
        width: 90%;
        height: 50%;
        margin: 20px auto;
    }
    .bannierepara{
        font-size: 1.3rem;
        margin: 10px;
    }
    .paragraphecaroussel-container{
        width: 90%;
        height: 50%;
        margin: 20px auto;
    }
    .titreparagraphecaroussel {
        margin-bottom: 50px;
    }
    .paragraphecaroussel{
        margin-bottom: 0;
        line-height: 20px;
        text-align: center;
    }
    .titreficherestaurant{
        font-size: 1.5rem;
    }
    .paragrapheficherestaurant{
        font-size: 1rem;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 80%;
    }
    .gauche p{
        display: none;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
    .division1, .division2, .division3, .division4, .division5{
        height: 100px;
    }
    .textebanniere{
        width: 100%;
    }
    .button{
        display: block;
    }
    .buttonreserver{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .buttonmenu{
        margin-left: 0;
    }
    .textebanniere h1{
        font-size: 2rem;
    }
    .buttonreservationmobile{
        z-index: 997;
        display: block;
        position: fixed;
        bottom: 0;
        height: 80px;
        width: 100%;
        border: 1px solid black;
        background-color: #b35c2286;
        font-size: 2.1rem;
    }
    .buttonreservationmobile a{
        text-decoration: none;
        color: white;
        width: 100%;
        display: block;
        margin: 0;
        padding: 10px;
        background-color: #b35c22a2;
    }
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
    .logo{
        margin: auto;
    }
    #map{
        display: none;
    }
    #map2{
        display: block;
    }
    .buttonficherestaurant a{
        font-size: 1.5rem;
    }
    .avisclient{
        margin-bottom: 15px;
    }
    
}
/* Responsive Design */
@media (max-width: 768px) {
    .banniereevenement{
        background: url(./images/banniereevenementresponsive.jpg);
        background-position: center;
        background-size: cover;
    }
    .notation{
        font-size: 1.2rem;
    }
    .avis-item p{
        font-size: 1rem;
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-price {
        margin-top: 10px;
    }

    .concept-content {
        flex-direction: column;
    }

    .concept-text, .concept-image {
        flex: 1 1 100%;
    }
    .containerphotos {
        flex-direction: column;
        align-items: center;
    }

    .itemphoto {
        width: 80%;
    }
    .content-wrapper {
        flex-direction: column;
    }

    .intro .title {
        font-size: 2rem;
    }

    .info h2 {
        font-size: 1.5rem;
    }

    .btn {
        margin-bottom: 10px;
    }
    .title{
        line-height: 2.2rem;
    }
}
@media (max-width:600px){
    .divadminidentification{
        width: 70%;
    }
    .contact{
        width: 90%;
    }
    .div1apropos{
        margin-bottom: 200px;
        height: 600px;
        padding: 20px;
    }
    .texte1apropos p{
        font-size: 0.8rem;
    }
    .h2texte1apropos{
        width: 200px;
        font-size: 1.2rem;
    }
    .carousel-itemapropos {
        flex: 0 0 100%; /* Une seule image visible */
      }
}

@media(max-width:500px){
    .gauche a{
        font-size: 16px;
    }
    .buttonficherestaurant a{
        font-size: 1rem;
    }
    .h1contact{
        width: 90%;
        font-size: 2rem;
    }
    
    

}
@media (max-width: 480px) {
    .titreficherestaurant{
        font-size: 1.2rem;
    }
    .itemphoto {
        width: 100%;
    }
}
@media (max-width:430px){
    .contact-section h2{
        font-size: 1.4rem;
    }
}
@media(max-width:400px){
    .contact{
        width: 100%;
    }
    .carousel-container {
        margin: 5px auto;
    }
    .paragraphecaroussel-container{
        margin: 5px auto;
    }
    .paragraphecaroussel{
        margin: 0 auto;
    }
    .titreparagraphe{
        height: 10%;
        margin-bottom: 30px;
    }
    .paragraphecarousselapropos{
        display: none;
    }
    .paragraphecarousselapropos1{
        display: block;
    }
    .gauche{
        width: 40%;
    }
    .sidebar{
        width: 100%;
    }

}





.messagesclient-container {
    min-height: 600px;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    color: #fff;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    background: #1f1f1f;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #444;
}

.messagesclient-header {
    background-color: #d4a373;
    color: #1f1f1f;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.messagesclient {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background: #2b2b2b;
}

.messageclient-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease-in-out;
}

.messageclient-item:last-child {
    margin-bottom: 0;
}

.messageclient-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin:0 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.messageclient-avatar img {
    width: 100%;
    height: auto;
}

.messageclient-content {
    background: rgba(212, 163, 115, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    flex: 1;
}

.messageclient-content h4 {
    margin-bottom: 5px;
}
.messageclient-content h4 a{
    text-decoration: none;
    font-size: 16px;
    color: #d4a373;
}
.messageclient-content p {
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

.messageclient-content time {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
    text-align: right;
}

.messageclient-content2 {
    background: rgba(212, 163, 115, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    flex: 1;
}
.messageclient-content2 time {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
    text-align: left;
}
.messageclient-content2 p {
    display: block;
    margin: 0;
    font-size: 14px;
    color: #ddd;
    text-align: right;
}
.messageclient-content2 h4{
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #d4a373;
    text-align: right;
}






.posezquestionmessages{
    margin: 10px auto;
}

.posezquestionmessages h3{
    margin-bottom: 10px;
}
.posezquestionmessages textarea {
    min-height: 100px;
    width: 100%; 
    text-align: start;
    padding: 10px; 
    resize: none; 
    box-sizing: border-box; 
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-messageclient {
    display: flex;
    padding: 20px;
    border-top: 1px solid #444;
    background: #1f1f1f;
}

.new-messageclient input[type="text"] {
    flex: 1;
    padding: 15px;
    font-size: 14px;
    border: 1px solid #444;
    border-radius: 20px;
    margin-right: 10px;
    outline: none;
    background: #2b2b2b;
    color: #fff;
    transition: border-color 0.3s ease;
}

.new-messageclient input[type="text"]:focus {
    border-color: #d4a373;
}

.new-messageclient button {
    padding: 15px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #d4a373;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.new-messageclient button:hover {
    background-color: #b28860;
}

@media screen and (max-width: 768px) {
    .messagesclient-header {
        font-size: 20px;
        padding: 15px;
    }

    .messageclient-content {
        font-size: 13px;
    }

    .new-messageclient input[type="text"] {
        padding: 10px;
        font-size: 13px;
    }

    .new-messageclient button {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .messagesclient-container {
        width: 95%;
    }

    .messageclient-avatar {
        width: 40px;
        height: 40px;
    }

    .messageclient-content h4 {
        font-size: 14px;
    }
}

.gestionhref{
    color: #fff;
}