body{
    background-color: #EEE6D8;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/* Bouton retour haut */
.back-to-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #A85757;
    border: none;
    border-radius: 1cm;
    padding: 0.5em;
    cursor: pointer;
    transition: 0.5s;
    font-size: 140%;
    box-shadow: 0px 0px 10px gray;
    border: #A85757 2px solid;
    color: white;
}

.back-to-top:hover{
    background-color: white;
    color: #A85757;
    box-shadow: 0px 0px 5px gray;
}

/* Header et footer */
nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #D6791F;
    padding: 5px 0;
    border-radius: 0 0 0.5cm 0.5cm;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    height: 10%;
}

nav a{
    color: white;
    text-decoration: none;
    padding: 0.5em;
}

nav a img{ border-radius: 3cm; }

nav a:last-of-type{
    background-color: #93441A;
    border-radius: 0.2cm;
    border: #93441A 2px solid;
    transition: 0.5s;
}

nav a:last-of-type:hover{
    color: #93441A;
    background-color: white;
    transition: 0.5s;
}

nav a:hover{ text-decoration: underline; }


footer{
    margin-top: 20px;
    border-radius: 0.2cm 0.2cm 0 0;
    background-color: #D6791F;
    font-family: 'Courier New', Courier, monospace;
}

.link_footer{
    display: flex;
    justify-content: space-between;
    margin: 0 30px 0 30px;
}

.bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bottom section i{ transition: 0.5s; }
.bottom section i:hover{
    color: #fba543;
    transition: 0.5s;
}

.small_footer{
    display: flex;
    text-align: center;
    align-items: center;
    gap: 40px;
    font-weight: bold;
    padding: 0.5em;
}

.left{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 1em;
}

.right a{
    background-color: #93441A;
    text-decoration: none;
    color: white;
    border: #93441A 2px solid;
    border-radius: 0.2cm;
    padding: 0.5em;
    transition: 0.5s;
}

.right a:hover{
    color: #93441A;
    background-color: white;
    transition: 0.5s;
    text-decoration: underline;
}

.left a{
    color: white;
    text-decoration: none;
}

.left a:hover{ text-decoration: underline; }

.bottom i{
    font-size: 200%;
    color: white;
}

.bottom h3{
    color: #F0BE86;
    margin: 0 0 15px 0;
}

footer .description{
    margin: 0;
    padding: 0.5em;
    text-align: center;
    color: white;
    font-size: 100%;
}

footer .description a{
    color: #EEE6D8;
    font-weight: bold;
    transition: 0.3s;
}
footer .description a:hover{
    color: #f9bf7d;
    text-decoration: underline;
    transition: 0.3s;
}

.politique{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 0.5em;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}

.politique a{
    color: white;
    text-decoration: none;
}

.politique a:hover{ text-decoration: underline; }
/* Fin header et footer */


/* Partie accueil */
.title_page{
    margin-top: 50px;
    background-image: linear-gradient(rgba(255,255,255,0.6)), url("./images/restaurant.jpg");
    text-align: center;
    padding: 3em;
    border-radius: 0 0 6cm 6cm;
}
.title_page h1, #services h1{
    font-size: 260%;
}
.title_page p, #services p{
    font-size: 120%;
    width: 60%;
    text-align: center;
    margin: 0 auto;
}

h2{
    text-align: center;
    font-size: 180%;
}

.bloc_service, .bloc_produit{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.bloc_service{ margin-left: 50px; }
.bloc_produit{
    gap: 50px;
    margin-left: 55px;
}

.service i{
    font-size: 180%;
    color: #D6791F;
}
.service p{
    width: 70%;
    text-align: center;
    margin: 0;
    margin-top: 10px;
    font-size: 110%;
}

.produit img{
    width: auto;
    max-width: 250px;
    height: 300px;
    border-radius: 0.2cm;
}
.produit h2{ font-size: 90%; }

.bloc_link{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
}
.link_plus{
    color: white;
    text-decoration: none;
    background-color: #93441A;
    padding: 2px 1em 2px 1em;
    border: #93441A 2px solid;
    transition: 0.5s;
    font-size: 90%;
    border-radius: 0.2cm;
    font-family: 'Courier New', Courier, monospace;
}

.link_plus:hover{
    color: #93441A;
    background-color: white;
    transition: 0.5s;
    text-decoration: underline;
    box-shadow: 0px 0px 5px gray;
}

.bloc_insta{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.insta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}
.insta:nth-of-type(odd){ flex-direction: row; }
.insta:nth-of-type(even){ flex-direction: row-reverse; }

.insta a{
    text-decoration: none;
    color: #D6791F;
    font-size: 160%;
    transition: color 0.3s;
}
.insta a:hover{
    color: #93441A;
}
.insta h3{
    font-size: 150%;
    width: 50%;
    margin: 0;
}
.insta p{
    font-size: 120%;
    margin: 0;
}
.insta i{
    font-size: 350%;
}

.service, .produit{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Fin partie accueil */


/* Partie services */
.bloc_services{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto;
    gap: 5px;
}

.services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 50%;
}

.services img{
    width: 300px;
    height: 300px;
    border-radius: 0.2cm;
    margin-right: 20px;
}
.services i{
    font-size: 350%;
    color: #D6791F;
}
.services p{
    font-size: 120%;
    width: 40%;
}

.insta img{
    width: 300px;
    height: 300px;
    border-radius: 0.2cm;
}

.description_service{ text-align: center; margin-bottom: 0; }
.description_service a{
    font-size: 120%;
    font-weight: bold;
    color: #D6791F;
    margin-top: 20px;
}
.description_service a:hover{
    color: #93441A;
    text-decoration: underline;
}
/* Fin partie services */


/* Partie produits */
.bloc_produits{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0em 0em 2em;
    gap: 30px;
    position: relative;
}

.sidebar_produits{
    position: sticky;
    top: 100px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    height: fit-content;
    max-height: calc(100vh - 120px);
}
.sidebar_produits h2{
    margin: 0;
    font-size: 120%;
}
.sidebar_produits h2 a{
    padding: 0.5em;
    border-radius: 0.2cm;
    transition: 0.2s;
}
.sidebar_produits h2 a{
    text-decoration: none;
    color: black;
}
.sidebar_produits h2 a:hover{
    color: #D6791F;
    background-color: rgba(80, 75, 75, 0.3);
    transition: 0.2s;
}

.main_produits{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    flex-grow: 1;
    padding: 10px;
}
.main_produits h1{
    grid-column: 1 / -1;
    text-align: center;
    font-size: 200%;
    margin: 0;
}

.produits{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5em;
    border: 2px solid #d6a267;
    box-shadow: 0px 0px 10px gray;
}

.produits img{
    width: auto;
    max-width: 270px;
    height: 300px;
    border-radius: 0.2cm;
}

.produits h2{
    font-size: 100%;
    margin: 0;
    margin-top: 10px;
}

.description{
    text-align: center;
    font-size: 120%;
    font-weight: bold;
    color: #D6791F;
}

#gateaux{ display: none; }

h2 a.active{
    background-color: #D6791F;
    color: white;
}
h2 a.active:hover{
    background-color: #D6791F;
    color: white;
}
/* Fin partie produits */


/* Partie propos */
.bloc_propos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.propos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 40px;
}

.propos:nth-of-type(odd){ flex-direction: row; }
.propos:nth-of-type(even){ flex-direction: row-reverse; }

.propos img{
    width: 300px;
    height: auto;
    border-radius: 0.2cm;
}
.propos .description_propos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 700px;
}
.description_propos h1{
    font-size: 200%;
    margin: 0;
    color: #D6791F;
}
.propos p{
    font-size: 120%;
    width: 40%;
    margin: 0;
}

video{
    width: 35%;
    height: auto;
    border-radius: 0.2cm;
}
/* Fin partie propos */


/* Partie contact */
.title_contact{
    margin-top: 50px;
    background-color: #F0BE86;
    text-align: center;
    padding: 3em;
}

.title_contact p{ font-size: 140%; }

.contact_info{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    margin-top: 60px;
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 100%;
}
.info h1 a{
    color: black;
    transition: 0.3s;
}
.info h1 a:hover{
    color: #D6A267;
    transition: 0.3s;
}

form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.full_name{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.full_name input{
    width: 100%;
    max-width: 100%;
}

input, textarea{
    border: 2px solid #F0BE86;
    padding: 1em;
    border-radius: 0.2cm;
}

input:focus, textarea:focus{ border: 2px solid #F0BE86; }

.title_contact h1{ font-size: 320%; }

textarea{ resize: vertical; }

textarea + p{
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 60%;
    margin-bottom: 5px;
}

form button{
    color: #5B4C4C;
    background-color: #F0BE86;
    border: 2px solid #B67332;
    border-radius: 0.2cm;
    padding: 0.5em;
    cursor: pointer;
    transition: 0.3s;
    font-size: 120%;
}

form button:hover{
    background-color: white;
    color: #B67332;
    transition: 0.3s;
}

.message_status{
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    color: white;
    background-color: #d6a267;
    border: 2px solid #b67332;
    border-radius: 0.2cm;
    font-family: 'Courier New', Courier, monospace;
    margin: 0 auto;
    width: fit-content;
    padding: 1em;
    z-index: 1000;
}

.close_status {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5em;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close_status:hover { color: #b67332; }

.message_status.active {
    display: block;
    animation: slideIn 0.5s forwards;
}

.message_status.hide { animation: slideOut 0.5s forwards; }

@keyframes slideIn {
    from {
        right: -400px;
        opacity: 0;
    }
    to {
        right: 20px;
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        right: 20px;
        opacity: 1;
    }
    to {
        right: -400px;
        opacity: 0;
    }
}

.checkbox label{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Courier New', Courier, monospace;
}

.checkbox label{ font-size: 70%; }
/* Fin partie contact */


/* Partie mentions légales et politique de confidentialité */
.bloc_mentions, .bloc_politique{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;
}

li{ font-size: 140%; }
li a{
    color: #D6791F;
    font-weight: bold;
    transition: 0.3s;
}
li a:hover{
    color: #93441A;
    text-decoration: underline;
    transition: 0.3s;
}

.bloc_mentions h3, .bloc_politique h3{
    font-size: 180%;
    margin: 0;
}

.bloc_mentions p, .bloc_politique p{
    font-size: 140%;
    margin: 0;
    margin-bottom: 15px;
}

.bloc_mentions p a, .bloc_politique p a{
    color: #D6791F;
    font-weight: bold;
    transition: 0.3s;
}
.bloc_mentions p a:hover, .bloc_politique p a:hover{
    color: #93441A;
    text-decoration: underline;
    transition: 0.3s;
}

.bloc_mentions p:first-of-type{ margin: 0; }
/* Fin partie mentions légales */