:root {
    --main-color: #c6a989;
    --second-color: #12769b;

}

body {
    font-family: "Inter", serif;
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 100px 0px 0px 0px;

}

h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    padding: 30px 50px 0px;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    padding: 0px 50px;
}

h5 {
    font-size: 18px;
    font-weight: 700;
    padding: 0px 50px;
}

p {
    font-size: 15px;
    line-height: 150%;
    padding: 0px 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

a {
    color: black;
    text-decoration: none;
    line-height: 150%;
    padding: 0px 50px;
}




/* nav bar */
nav {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 93px;
}

nav ul {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;

}

nav a {
    color: black;
    text-decoration: none;
}

#menu-toggle {
    display: none;
    font-size: 30px;

}

#scroll-top {
    width: 100%;
    display: flex;
    justify-content: right;
}

#scroll-top a {
    position: fixed;
    top: 75vh;
    padding: 0px;
}

/* nav bar */

/* hero */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("src/hero-background.jpg");
    object-fit: cover;
}

#hero a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--main-color);
    padding: 15px;
    border-radius: 35px;

}

#hero-logo {
    padding: 48px;
}

/* hero */

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

/* team */
#team {
    background-image: url("src/fond-texture-bleu-creme.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom 24px center;
}

#team-image {
    padding-top: 10vw;
    padding-right: 5vw;
}

/* team */

/* restaurant */
#restaurant {
    padding: 100px 0px;
    background-image: url("src/brush-bleu.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 200px;
}

#restaurant-image {
    width: 50vw;
    object-fit: cover;
}

/* restaurant */

/* gallery */
#gallery {
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

#gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* gallery */
/* menu */

#menu {
    width: 100vw;
}

#menu-container {
    display: flex;
    flex-direction: row;
}



/* menu */

/* schedule */
#schedule {
    justify-content: space-between;
    padding: 50px 30px 200px;
    background-image: url("src/brush-bleu-gauche.png");
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: bottom left;
}



#contact-info {
    display: flex;
    flex-direction: column;
}

/* schedule-module */
#section-module {
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: center;
}

#section-form {
    border: solid #B5B5B5 3px;
    border-radius: 15px;
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
}

#schedule-info{
    width: 100%;
}

fieldset {
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

label {
    padding: 10px;
}

#services {
    border-top: var(--main-color) 2px solid;
    border-bottom: var(--main-color) 2px solid;
    padding-top: 5px;
    margin: 10px 20px;
}

.textarea {
    background-color: #eee;
    border: solid var(--main-color) 2px;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=number] {
    padding: 5px;
    width: 200px;
}

input[type=date] {
    padding: 5px;
    width: 200px;
}

input[type=mail]{
    padding: 5px;
    width: 300px;
}


.time-slot {
    color: white;
    display: flex;
    background-color: var(--main-color);
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
}

.time-slot:hover {
    background-color: #3b3b3b;
}

input[type="radio"]:checked+.time-slot {
    background-color: var(--second-color);
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

#schedule-btn {
    color: white;
    background-color: var(--main-color);
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    align-self: center;
    margin-bottom: 20px;
}

/* schedule-module */

/* schedule */

/* footer */
footer {
    display: flex;
    align-items: flex-end;
    background-color: #C6A989;
    height: 94px;
}

footer a {
    font-size: 20px;
    color: white;
    padding: 24px;
}

/* footer */

/* responsive */
@media (max-width: 800px) {
    #menu-toggle {
        display: flex;
        align-items: center;
        height: 100%;
        padding-left: 16px;
        cursor: pointer;
    }

    #scroll-top a {
        display: none;
    }

    nav {
        height: 75px;
    }

    #nav-links {
        display: none;
    }

    #nav-links.show {
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: white;
        padding: 30px 0px;
        gap: 30px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    }

    .flex-section {
        display: flex;
        flex-direction: column;
    }

    #team {
        background-image: none;
    }

    #team-image {
        padding: 0px;
    }


    #restaurant {
        background-image: none;
    }

    #restaurant-image {
        width: 100vw;
    }

    #gallery {
        display: none;
    }

    #schedule {
        background-image: none;
    }

    #menu-container {
        flex-direction: column;
    }

    footer {
        display: flex;
        flex-direction: column;
        height: 125px;
    }

    footer a {
        padding: 24px 24px 0px;
    }
}

/* responsive */