/* Styles généraux */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
    background-size: cover;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 10px;
    display: inline-block;
}

.home-title {
    color: #FFFDEE;
    font-family: 'Architects Daughter', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    padding-top: 120px;
    margin-top: -70px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
    padding-top: 200px;
    margin-top: -70px;
    position: relative;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: #FFFDEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.logo img {
    height: 76px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    margin-right: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: grey;
}

/* Bouton pour les petits écrans */
.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #FFFDEE;
    background-color: #AF1A22;
    padding: 8px;
    border: none;
    border-radius: 5px;
    position: relative;
    right: 30px;
}

/* Styles pour la navigation sur les petits écrans */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #FFFDEE;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: max-height 0.5s ease-in-out;
        overflow: hidden;
        max-height: 0;
    }

    .nav-links.active {
        max-height: 300px;
        /* Ajustez cette valeur selon la hauteur de votre menu */
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links li a {
        padding: 10px;
        display: block;
        width: 100%;
    }
}

.section-below-hero {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0px 0%;
    line-height: 2;
    background-color: #FFFDEE;
    flex-wrap: wrap;
}

.content-area {
    flex-basis: 50%;
    text-align: center;
}

.image-area {
    flex-basis: 50%;
}

.image-area img {
    width: 100%;
    height: auto;
}

.section-below-hero h2 {
    color: #AF1A22;
    margin-bottom: 40px;
    font-family: 'Pacifico', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 26.4px;
}

.section-below-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #000000;
    width: 90%;
    margin: 0 auto;
    text-align: justify;
    line-height: 2.2;
    margin-bottom: 15px;
}

.section-below-hero p span {
    color: #000000;
}

.content-area1 {
    flex-basis: 45%;
    order: 2;
    text-align: center;
}

.image-area1 {
    flex-basis: 50%;
    order: 1;
}

.image-area1 img {
    width: 100%;
    height: auto;
}

.section-below-hero2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10%;
    background-color: #533725;
}

.section-below-hero2 h2 {
    font-family: Pacifico;
    font-size: 40px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 26.4px;
    color: #FFFDEE;
}

.content-area2 {
    flex-basis: 50%;
    color: #FFFDEE;
    text-align: center;
    font-size: 16px;
}

.hero {
    color: rgb(255, 255, 255);
    text-align: left;
    padding: 120px 100px;
    background: url('/image/exterieur.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #FFFDEE;
    color: #333;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
    border: solid;
    border-width: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #AF1A22;
    color: #ffffff;
}

.button1 {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    margin-right: 10px;
    bottom: -100px;
    right: 70px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border: 1px solid rgb(255, 255, 255);
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.button1:hover {
    background-color: #AF1A22;
    color: #ffffff;
}

.photo-gallery {
    display: flex;
    padding: 10px;
    margin: 0 auto;
    padding: 0px;
    max-width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.restaurant-footer {
    background-color: #533725;
    color: #FFFDEE;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 10%;
    font-size: 14px;
}

.footer-left,
.footer-center,
.footer-right {
    padding: 10px;
    flex: 1;
}

.footer-left {
    text-align: left;
    max-width: 35%;
}

.footer-center {
    max-width: 45%;
    text-align: center;
}

.footer-right {
    max-width: 30%;
    text-align: right;
}

.footer-left h2,
.footer-right h3,
.footer-center h3,
.footer-left h3 {
    color: #FFFDEE;
    font-family: 'Pacifico', sans-serif;
}

.footer-left h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-left p,
.footer-right p,
.footer-center p,
.footer-right ul {
    margin: 10px 0;
    font-family: 'Lato', sans-serif;
}

.footer-right ul,
.footer-center ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    padding: 2px 0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .restaurant-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        max-width: 100%;
        text-align: center;
    }

    .footer-left h2,
    .footer-right h3,
    .footer-left h3 {
        text-align: center;
    }

    .footer-left p,
    .footer-right p,
    .footer-center p {
        text-align: center;
    }
}

.info-slider {
    display: flex;
    align-items: center;
    background-color: #997440;
    padding: 10px 20px;
}

.info-text {
    flex-grow: 3;
    position: relative;
    color: #FFFDEE;
    overflow: hidden;
    height: 50px;
}

.info-text p {
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transform: translateX(-100%);
    opacity: 0;
}

.info-text p.active {
    transform: translateX(0);
    opacity: 1;
}

.info-nav button {
    background: none;
    border: none;
    color: #FFFDEE;
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
}

.info-nav button:focus {
    outline: none;
}

.navbarinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #997440;
    padding: 10px 20px;
    color: #FFF;
}

.navbar2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #997440;
    padding: 10px 20px;
    color: #FFF;
}

.nav-text {
    text-align: center;
    font-size: 16px;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.nav-text2 {
    text-align: center;
    font-size: 16px;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.hidden {
    opacity: 0;
}

.nav-button {
    background: none;
    border: none;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
}

.fb-page {
    margin: 10px auto;
    text-align: center;
}

/* Classe pour texte fin */
.thin-text {
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

.thin-text1 {
    font-family: 'Lato', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
}

/* Media Queries pour rendre la page responsive */
@media (max-width: 1024px) {

    .section-below-hero,
    .section-below-hero2 {
        flex-direction: column;
        padding: 20px;
    }

    .content-area,
    .image-area,
    .content-area1,
    .image-area1,
    .content-area2 {
        flex-basis: 100%;
        padding: 10px;
    }

    .section-below-hero h2,
    .section-below-hero2 h2 {
        font-size: 35px;
    }

    .home-title {
        font-size: 40px;
    }

    .button,
    .button1 {
        font-size: 12px;
        padding: 8px 16px;
    }

    .photo-gallery {
        gap: 5px;
        /* Réduit l'espace entre les images */
    }

    .gallery-item {
        width: 150px;
        /* Ajuste la largeur des images pour les rendre plus petites */
    }

    .restaurant-footer {
        padding: 15px 5%;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        padding: 5px;
    }
}

@media (max-width: 768px) {

    .section-below-hero,
    .section-below-hero2 {
        flex-direction: column;
        padding: 15px;
    }

    .content-area,
    .image-area,
    .content-area1,
    .image-area1,
    .content-area2 {
        flex-basis: 100%;
        padding: 10px;
    }

    .section-below-hero h2,
    .section-below-hero2 h2 {
        font-size: 30px;
    }

    .home-title {
        font-size: 40px;
    }

    .button,
    .button1 {
        font-size: 16px;
        padding: 8px 14px;
    }

    .photo-gallery {
        gap: 5px;
        /* Réduit l'espace entre les images */
    }

    .gallery-item {
        width: 120px;
        /* Ajuste la largeur des images pour les rendre plus petites */
    }

    .restaurant-footer {
        padding: 10px 5%;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        padding: 5px;
    }
}

@media (max-width: 480px) {

    .section-below-hero,
    .section-below-hero2 {
        flex-direction: column;
        padding: 10px;
    }

    .content-area,
    .image-area,
    .content-area1,
    .image-area1,
    .content-area2 {
        flex-basis: 100%;
        padding: 5px;
    }

    .section-below-hero h2,
    .section-below-hero2 h2 {
        font-size: 27px;
    }

    .home-title {
        font-size: 25px;
    }

    .button,
    .button1 {
        font-size: 14px;
        padding: 6px 10px;
    }

    .photo-gallery {
        gap: 2px;
        /* Réduit l'espace entre les images */
    }

    .gallery-item {
        width: 110px;
        /* Ajuste la largeur des images pour les rendre plus petites */
    }

    .restaurant-footer {
        padding: 5px 2%;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        padding: 5px;
    }
}

.text-and-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.text-content {
    margin-bottom: 20px;
}

.image-content img {
    width: 100%;
    height: auto;
    max-width: 600px;
    /* Adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-and-image {
        padding: 10px;
    }

    .text-content {
        margin-bottom: 15px;
    }

    .image-content img {
        max-width: 100%;
    }
}

.footer-bottom {
    background-color: #996633;
    /* Couleur de fond pour la bande */
    color: #fff;
    /* Couleur du texte */
    text-align: center;
    /* Centrer le texte */
    padding: 10px 0;
    /* Ajoutez du padding pour l'espace intérieur */
    font-size: 14px;
    /* Taille de la police */
    font-family: 'Lato', sans-serif;
    /* Police de caractères */
}

.footer-bottom p {
    margin: 0;
    /* Enlevez les marges par défaut */
}

.footer-bottom a.footer-link {
    color: #fff;
    /* Couleur du lien */
    text-decoration: underline;
    /* Style du lien */
}

.footer-bottom a.footer-link:hover {
    color: #AF1A22;
    /* Couleur du lien au survol */
}

/* Bouton de retour en haut */
.scroll-to-top {
    display: none;
    /* Cacher le bouton par défaut */
    position: fixed;
    /* Fixer le bouton en bas à droite de la page */
    bottom: 20px;
    /* Espace entre le bouton et le bas de la page */
    right: 30px;
    /* Espace entre le bouton et le côté droit de la page */
    z-index: 99;
    /* Assurez-vous que le bouton est au-dessus de tout autre contenu */
    border: none;
    /* Enlever la bordure */
    outline: none;
    /* Enlever le contour */
    background-color: #af1a22;
    /* Couleur de fond */
    color: white;
    /* Couleur du texte */
    cursor: pointer;
    /* Ajouter un curseur pointeur */
    padding: 13px;
    /* Espacement intérieur du bouton */
    border-radius: 10px;
    /* Ajouter des coins arrondis */
    font-size: 8px;
    /* Taille de la police */
}

.scroll-to-top:hover {
    background-color: #996633;
    /* Couleur de fond au survol */
}