body
{
    font-family: open sans, Arial, Helvetica, sans-serif;
    height: 100vh;
}
.grille-accueil
{
    width: 100%;
    height: 100%;
    display: grid;
    /* deffinition de la grille */
    /*  4 ligne 70 500 300 et le reste*/
    /*  3 colonne 600 'reste' 600 */
    grid-template: 70px 500px 1fr 60px / 600px 1fr 600px;
}
/* partie gestion de la zone menu */ 
.menu
{
    grid-area: 1/1/2/-1;
    background: navy;
    width: 100%;
    height: 70px;
}
.titre-menu
{
    font-family: playfair Display,sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    height: 70px;position: relative;
    z-index: 200;
    border-bottom: 1px solid#000;
}
.menu:hover>.titre-menu
{
    border-bottom: 0px solid #000;    
}
.titre-menu::after
{
    content:'';
    display: block;
    position: absolute;
    width: 35px;
    height: 1px;
    background: #000;
    top: 61px;
}
.liste-menu {
    background: #fff;
    position: relative;
    z-index: 100;
    top: -200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style-type: none;
    border-bottom: 1px solid #000;
}
.titre-menu:hover + .liste-menu {
    transition: top 0.2s ease-in-out;
    top: 0px;
}
.liste-menu:hover {
    top: 0px;
}
.liste-menu li {
    margin: 10px 0;
}
.liste-menu a {
    text-decoration: none;
    font-size: 22px;
    color: #000;
    position: relative;
}
.liste-menu a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}
.liste-menu a:hover::after {
    transform: scale(1);
}
/* Fin de la partie gestion de la zone menu */

/* Partie gestion de la zone présentation */

.presentation {
    grid-area: 2 / 1 / 3 / 2;
    background: #6fb4ec;
    padding: 40px;
}

.presentation img {
    width: 80px;
}
.presentation h1 {
    font-size: 60px;
    font-family: 'Pacifico', cursive;
    font-weight: 500;
}
.presentation h2 {
    font-size: 60px;
    font-family: 'Sacramento', cursive;
    font-weight: 700;
}
.presentation p {
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.3;
}
.presentation a {
    padding: 15px;
    text-decoration: none;
    color: #000;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 20px;
    cursor: pointer;
    display: block;
    width: 170px;
    text-align: center;
}

/* Fin de la partie gestion de la zone présentation */

/* Partie gestion de la zone Slider */

.slider 
{
    grid-area: 2 / 2 / 3 / -1;
    background: chocolate;
    position: relative;
}

.container-slides 
{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.container-slides img 
{
    position: absolute;
    top: 0px;
    opacity: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: opacity 0.6s ease-in-out;
}

img.active 
{
    opacity: 1;
}
.cont-btn 
{
    position: absolute;
    top: 85%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.btn-nav 
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    margin: 0 290px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #333;
    background: #f1f1f1;
    border: 1px solid #333;
}
.btn-nav img {
    width: 20px;
    height: 20px;
}

.footer
{
    font-family: 'Permanent Marker', cursive;
    text-align: center;
    padding-top: 15px;
    grid-area: 4/1/4/-1;
    background: rgb(168, 168, 168);
}
/* --------------- Choix --------------- */

.choix {
    grid-area: 3 / 1 / 4 / 3;
    background: #222;
    color: #f1f1f1;
    border: 1px solid #000;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.titre-choix {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
    font-family: Playfair Display, 'Times New Roman', Times, serif;
}
.choix p {
    font-size: 25px;
    line-height: 1.4;
}

.go-galerie {
    font-size: 22px;
    display: block;
    margin: 20px auto 0;
    width: 300px;
    padding: 20px;
    text-decoration: none;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 5px;
    background: #222;
    color: #f1f1f1;
}
.go-galerie:hover {
    transition: all 0.2s ease-in-out;
    background: #ff6f6f;
    color: #222;
}
.go-galerie2 {
    display: block;
    margin: 20px auto 0;
    width: 300px;
    padding: 20px;
    text-decoration: none;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 5px;
    background: #6fb4ec;
}
.go-galerie2:hover {
    transition: all 0.2s ease-in-out;
    background: #ff6f6f;
}
.cont-medias {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
}
.media {
    margin: 10px 0;
    width: 60px;
    height: 60px;
    border: 1px solid #f1f1f1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.media img {
    width: 25px;
}
/* --------------- Contact --------------- */
.contact {
    grid-area: 3 / 3 / 4 / 4;
    background: #f6db51;
    color: #000;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact h3 {
    font-size: 70px;
    padding-left: 50px;
    font-family: Playfair Display, 'Times New Roman', Times, serif;
}
.go-contact {
    flex-shrink: 0;
    margin-right: 105px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}
.go-contact:hover {
    transform: scale(1.2);
}
.go-contact img {
    width: 50px;
    height: 50px;
}

/* --------------- RESPONSIVE --------------- */

@media screen and (max-width: 1400px){
    .cont-medias {
        display: none;
    }
}

@media screen and (max-width: 1200px){
    .grille-accueil {
        grid-template: 70px 500px 300px 1fr / 400px 1fr 400px;
    }
    .contact h3 {
        font-size: 50px;
        padding-left: 50px;
    }
    .go-contact {
        width: 70px;
        height: 70px;
        margin-right: 55px;
    }
    .go-contact img {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 950px){

    .titre-choix {
        font-size: 35px;
    }
    .go-galerie {
        font-size: 18px;
        width: 250px;
        padding: 18px;
    }

}

@media screen and (max-width: 800px){

    .presentation {
        padding: 30px;
    }
    .presentation h1 {
        font-size: 60px;
        margin-top: 5px;
    }

    .grille-accueil {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .slider {
        height: 500px;
    }
    .titre-choix {
        font-size: 28px;
        margin: 50px 10px 20px;
    }
    .go-galerie {
        font-size: 18px;
        width: 230px;
        padding: 16px;
        margin: 20px auto 50px;
    }
    .presentation{
        border-bottom: 1px solid #000;
    }
    .contact {
        display: block;
    }
    .contact h3 {
        padding-left: 0;
        margin-top: 10px;
        text-align: center;
    }
    .go-contact {
        width: 70px;
        height: 70px;
        margin: 30px auto;
    }
    .go-contact img {
        width: 35px;
        height: 35px;
    }
}