* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
body {
    width: 100%;
    overflow-x: hidden;
}

/* Home section */
.home {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
}
.home-logo {
    width: 250px;
    margin-top: 80px;
}
.home-video-phone {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: contrast(100%) brightness(80%);
}
.home-video-desktop {
    display: none;
}
.menu-icon {
    width: 60px;
    position: fixed;
    top: 0;
    right: 0;
    margin: 5%;
    padding: 5px;
    background-color: #0c1319;
    border-radius: 10px;
    z-index: 1;
    cursor: pointer;
}
.menu {
    width: 50%;
    max-width: 200px;
    height: 100vh;
    background-color: #0c1319;
    filter: opacity(95%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 5% 0;
    transition: left 1s ease-in-out;

}
.active {
    display: flex;
}
.menu-logo {
    width: 140%;
    max-width: 250px;
}
.menu-title {
    color: #e5c690;
    font-family: "Manrope", sans-serif;
    font-size: 1em;
    cursor: pointer;
    filter: opacity(100%);
}
.menu-title:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
    color: #ffec9e;
}
.home-title {
    display: none;
    color: white;
    font-family: "Great Vibes", cursive;
    font-size: 4em;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: #131010 2px 2px 2px;
}
.home-button-container {
    display: flex;
    flex-direction: line;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.home-button {
    background-color: transparent;
    font-size: 1.5em;
    border: solid #e5c690 3px;
    color: #e5c690;
    padding: 5px;
    margin: 5px 15px;
    font-family: "Great Vibes", sans-serif;
    cursor: pointer;
}
.home-button:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
    background-color: #ffec9e;
    color: #131010;
    box-shadow: #0c1319 2px 2px 2px;
}

/* About section */
.about {
    width: 100%;
    height: fit-content;
    background-color: #e5c690;
    padding: 5%;
}
.about-title {
    font-size: 2em;
    font-family: "Great Vibes", cursive;
    width: 100%;
    text-align: center;
    margin: 5% 0;
}
.about-text {
    font-family: "Manrope", sans-serif;
    font-size: 1em;
}
.about-img {
    width: 100%;
    margin: 5% 0;
}

/* Photos section */
.photos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    padding: 3%;
    background-color: #0a0f19;
}
.photos-img {
    width: 100%;
}
.photos-two-img-container {
    display: flex;
}

/* Reservation section */
.reservation {
    height: fit-content;
    background-color: #e5c690;
    color: black;
    padding: 5%;
}
.reservation-title {
    font-size: 2em;
    font-family: "Great Vibes", cursive;
}
.reservation-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Manrope", sans-serif;
    margin-top: 5%;
}
.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}
.contact-title {
    font-size: 1.3em;
}
.contact-a {
    color: black;
}
.contact-a:hover {
    color: blue;
}
.horaires-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    margin-top: 5%;
}
.horaires-title {
    font-size: 1.3em;
}

/* Adresse section */
.adresse {
    height: fit-content;
    background-color: #0a0f19;
    padding: 5%;
}
.map {
    width: 100%;
}

/* Socials section */
.socials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0a0f19;
    padding-top: 5%;
    padding-bottom: 2%;
}
.socials-title {
    color: #e5c690;
    font-size: 2em;
    font-family: "Great Vibes", cursive;
    text-align: center;
}
.socials-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5%;
}
.socials-icon {
    width: 100%;
    max-width: 50px;
}

/* Footer section */
footer {
    background-color: #0a0f19;
    padding: 5%;
}
.footer-text {
    color: #e5c690;
    font-family: "Manrope", sans-serif;
    font-size: 0.75em;
}

/* Media queries */
@media screen and (min-width: 768px) {
    .home {
        padding-top: 5vh;
    }
    .home-logo {
        width: 350px;
    }
    .home-video-phone {
        display: none;
    }
    .home-video-desktop {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: contrast(100%) brightness(80%);
    }
    .home-button-container {
        margin-bottom: 0;
    }
    .home-button {
        font-size: 1.7em;
        margin: 5px 20px;
    }
    .menu-icon {
        display: none;
    }
    .menu {
        position: fixed;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 10vh;
        min-height: fit-content;
        max-height: 50px;
        padding: 10px 5%;
        overflow: hidden;
    }
    .menu-title {
        width: 100%;
        text-align: center;
        height: fit-content;
    }
    .menu-title-socials {
        border: none;
    }
    /* About section */
    .about {
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: space-around;
        justify-content: center;
        width: 100%;
        background-color: #e5c690;
        padding: 3%;

    }
    .about-title {
        font-size: 2em;
        font-family: "Great Vibes", cursive;
        width: 100%;
        text-align: center;
        margin: 2% 0;
    }
    .about-text-img-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .about-text {
        font-family: "Manrope", sans-serif;
        font-size: 0.8em;
    }
    .about-text-last {
        width: 100%;
    }
    .about-img {
        width: 25%;
        margin: 0 2% 0 0;
    }
    /*  Photos section */
    .photos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: fit-content;
        padding: 3%;
        background-color: #0a0f19;
    }
    .photos-img {
        width: 30%;
    }
    .photos-two-img-container {
        display: flex;
        justify-content: center;
    }
    /* Reservation section */
    .reservation {
        font-size: 1em;
        padding: 3%;
    }
    .reservation-container {
        margin-top: 2%;
    }
    .horaires-container {
        margin-top: 2%;
    }
    /* Adresse section */
    .map {
        width: 100%;
        height: 300px;
    }
    /* Socials section */
    .socials-container {
        width: 50%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 5%;
    }
}

@media screen and (min-width: 1024px) {
    .menu {
        height: 25vh;
        max-height: 100px;
        font-size: 1.2em;
    }
    .home-button-container {
        margin-top: 20px;
    }
    /* About section */
    .about {
        font-size: 1.3em;
    }
    /* Reservation section */
    .reservation {
        font-size: 1.3em;
    }
    /* Adresse section */
    .map {
        height: 400px;
    }
    /* Socials section */
    .socials {
        padding-top: 2%;
        padding-bottom: 2%;
        font-size: 1.2em;
    }
    .socials-icon {
        max-width: 70px;
    }
}