*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f1f1f1;
    height: 100vh;
    /* font-family: 'Merienda One', cursive; */
    font-family: 'Jost', sans-serif;

}

/* Navigation */

nav {
    position: fixed;
    height: 70px;
    width: 100%;
    background: rgb(41, 51, 78);
    z-index: 10;
}
.logo-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 50px;
    z-index: 25;
    display: none;
}
.liste-nav {
    background: linear-gradient(to top, rgb(41, 51, 78) , #5f222a 380%);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
    z-index: 20;
}
.item-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-nav a {
    font-size: 22px;
    color: #fff;
    text-shadow: 2px 2px 3px rgb(41, 51, 78);
    text-decoration: none;
    margin: 0 20px;
    text-transform: uppercase;
}
.item-nav a::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #f1f1f1;
    transition: width 0.2s ease-in-out;
}
.item-nav a:hover::after{
    width: 100%;
}

@media screen and (max-width: 700px){
    .logo-menu{
        display: block;
        cursor: pointer;
    }
    .liste-nav{
        padding-top: 70px;
        flex-direction: column;
        height: auto;
        position: relative;
        display: none;
    }
    .liste-nav.active{
        display: block;
    }
    .item-nav{
        height: 70px;
        justify-content: center;
    }
}

/* Accueil */

.accueil {
    /* display: flex;
    justify-content: top;
    align-items: center; */
    width: 100%;
    height: 100vh;
    min-height: 970px;
    /* background-image: url(ressources/accueil-pic-lum-down.jpg); */
    background-color: rgb(41, 51, 78);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px dotted #777;
    padding-top: 1px;
}
.logo-kyoto {
    position: absolute;
    border-radius: 10%;
    width: 150px;
    /* display: block; */
    margin: 120px 0px 0 35px;
}
.logo-kyoto2 {
    position: fixed ;
    left: 15px;
    top: 5px;
    width: 40px;
    height: 60px;
    /* display: block; */

}
.logo-kyoto2-txt {
    position: fixed ;
    left: 65px;
    top: 23px;
    height: 60px;
    color: #f1f1f1;
    font-size: 12px;
    
    /* display: block; */

}
.accueil-div{
    text-align: center;
    display: block;
    margin: 200px auto;
}
.accueil h1 {
    text-align: center;
    font-size: 100px;
    text-shadow: 0 0 10px #000;
    color: #f1f1f1;
    margin-top: 10px;
    margin-bottom: 25px;
    font-family: 'Jost', sans-serif;}
.sous-titre {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #f1f1f1;
    display: block;
    margin: 18px auto;
    text-shadow: 0 0 10px #000;
    max-width: 800px;

}
.btn-accueil {
    border-radius: 9999px;
    background: #5f222a;
    border: 1px solid #333;
    color: #f1f1f1;
    text-align: center;
    font-size: 22px;
    display: block;
    width: 200px;
    height: 70px;
    line-height: 70px;
    text-decoration: none;
    margin: 30px auto 0;
    transition: all 0.2s ease-in-out;
}
.btn-accueil:hover {
    background: rgb(177,0,36);
    color: #fff;
}

@media screen and (max-width: 1450px) {

    .logo-kyoto{
        width: 120px;
    }
    .accueil h1 {
        font-size: 70px;
    }
    .sous-titre {
        font-size: 23px;
    }
    .btn-accueil {
        width: 180px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
        margin: 15px auto 0;
    }
}

@media screen and (max-width: 1050px) {

    .logo-kyoto{
        margin: 120px auto 0;
        width: 100px;
    }
    .accueil h1 {
        font-size: 60px;
    }
    .sous-titre {
        font-size: 20px;
    }
    .btn-accueil {
        width: 170px;
        height: 55px;
        line-height: 55px;
        font-size: 19px;
        margin: 15px auto 0;
    }
}

@media screen and (max-width: 850px) {
    .accueil {
        height: 650px;
        min-height: auto;
        background-position: right;
    }
    .logo-kyoto{
        width: 75px;
    }
    .logo-kyoto2-txt{
        display: none;
    }
    .accueil h1 {
        font-size: 45px;
    }
    .sous-titre {
        font-size: 17px;
        max-width: 350px;

    }
    .btn-accueil {
        width: 150px;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        margin: 15px auto 0;
    }
}

@media screen and (max-width: 650px) {
    .accueil {
        height: 550px;   
    }
    .logo-kyoto{
        width: 75px;
        margin: 110px auto 0;
    }
    .accueil h1 {
        font-size: 30px;
    }
    .sous-titre {
        font-size: 20px;
    }
    .btn-accueil {
        width: 130px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
    .logo-menu{
        top: 15px;
        width: 40px;

    }
}

@media screen and (max-width: 490px) {
    .accueil {
        height: 550px;   
    }
    .logo-kyoto{
        position: initial;
        display: flex;
        width: 75px;
        margin: 75px auto 0;
    }
    .accueil-div{
        margin-top: 10px;
    }
    .accueil h1 {
        font-size: 27px;
    }
    .sous-titre {
        font-size: 19px;
    }
    .btn-accueil {
        width: 130px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
    .logo-menu{
        top: 15px;
        width: 40px;

    }
}

/* Section asymétrique */


.section-asymetrique {
    display: grid;
    grid-template: 200px repeat(3, auto) / 1fr 600px 1fr;
    background: #f1f1f1;
}
.section-asymetrique h2 {
    grid-area: 1 / 1 / 2 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 50px;
    text-transform: uppercase;
    padding-bottom: 20px;

}

/* placement */
.bloc-1, .img-grid-1 {
    grid-area: 2 / 2 / 3 / 3;
}

.bloc-right, .img-grid-2 {
    grid-area: 3 / 2 / 4 / 3;
}

.bloc-3, .img-grid-3 {
    grid-area: 4 / 2 / 5 / 3;
}

.bloc {
    background: rgb(41, 51, 78);
    color: #f1f1f1;
    position: relative;
    border-radius: 2px;
    height: 750px;
    margin-bottom: 250px;
}
.img-grid {
    width: 500px;
    height: 700px; 
    object-fit: cover;
    position: relative;
}

.img-grid-1, .img-grid-3 {
    top: 130px;
    left: 20px;
}
.bloc-left {
    left: -300px;
}
.bloc-txt-left {
    width: 50%;
    height: 100%;
}
.bloc-txt-left h3 {
    white-space: nowrap;
    font-size: 35px;
    margin: 30px 15px;
}
.bloc-txt-left p {
    line-height: 40px;
    padding: 15px;
}
.bloc button {
    border-radius: 9999px;
    outline: none;
    border: none;
    background: #5f222a;
    border: 1px solid #333;
    color: #f1f1f1;
    padding: 20px 35px;
    font-size: 20px;
    margin: 35px auto;
    cursor: pointer;
    display: block;
}

.bloc-right {
    right: -300px;
}
.img-grid-2{
    top: 130px;
    left: 100px;
}
.bloc-txt-right {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}
.bloc-txt-right h3 {
    position: relative;
    font-size: 35px;
    margin: 30px 15px;
}
.bloc-txt-right p {
    line-height: 40px;
    padding: 15px;
}
.bloc-txt-right button {
    margin: 5px auto;
}

/* Lignes verticales */

.ligne-gauche {
    grid-area: 1 / 2 / -1 / 3;
    border-left: 1px solid #333;
}
.ligne-droite {
    grid-area: 1 / 3 / -1 / 4;
    border-left: 1px solid #333;
}

@media screen and (max-width : 1200px) {

    .section-asymetrique{
        grid-template: 200px repeat(6, auto) 100px / 1fr 600px 1fr;
    }
    .section-asymetrique h2 {
        font-size: 50px;
        padding-bottom: 0px;
    }
    .bloc-1 {
        grid-area: 2 / 2 / 3 / 3;
    }
    .img-grid-1 {
        grid-area: 3 / 2 / 4 / 3;
    }
    .bloc-right {
        grid-area: 4 / 2 / 5 / 3;
    }
    .img-grid-2 {
        grid-area: 5 / 2 / 6 / 3;
    }
    .bloc-3 {
        grid-area: 6 / 2 / 7 / 3 ;
    }
    .img-grid-3{
        grid-area: 7 / 2 / 8 / 3;
    }
    .bloc {
        height: 100%;
        margin-bottom: 0px;
    }
    .img-grid {
        position: static;
        width: 600px;
        height: 750px;
    }
    .img-grid-1, .img-grid-3 {
        top: 0px;
        left: 0px;
    }
    .img-grid-2 {
        top: 0px;
        left: 0px;
    }
    .bloc-left {
        left: 0px;
    }
    .bloc-right{
        right: 0px;
    }
    .bloc-txt-left {
        width: 100%;
        height: 100%;
    }
    .bloc-txt-left h3, .bloc-txt-right h3{
        text-align: center;
    }
    .bloc-txt-left p, .bloc-txt-right p {
        font-size: 20px;
        line-height: 1.8;
        padding: 15px;
    }
    .bloc button{
        font-size: 20px;
        padding: 15px 30px;
        margin-bottom: 30px;
    } 
    .bloc-txt-right{
        position: static;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 600px){
    .section-asymetrique{
        grid-template: 150px repeat(6, auto) 100px / 100%;
    }
    .ligne-gauche, .ligne-droite {
        display: none;
    }
    .section-asymetrique h2 {
        font-size: 30px;
    }
    .bloc, .img-grid {
        grid-area: auto;
    }
    .img-grid {
        width: 100%;
        height: 500px;
    }
    .bloc-txt-left h3,
    .bloc-txt-right h3{
        font-size: 25px;
    }
    .bloc-txt-right{
        width: 100%;
    }
}

/*  Section Parallax */

.parallax {
    width: 100%;
    height: 300px;
    background: url(ressources/parallax-large-flou4.png)  no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.parallax p {
    font-size: 65px;
    color: #aa2133;
}
.parallax span {
    display: block;
    font-size: 25px;
    color: #aa2133;
}

@media screen and (max-width: 400px) {
    .parallax p{
        font-size: 55px;
    }
    
}

/* SECTION TARIFS */

.section-tarifs {
    padding-bottom: 150px;
    border-bottom: 1px dashed #333;
}
.section-tarifs h3 {
    text-align: center;
    font-size: 45px;
    margin: 120px 0 20px;
    padding: 0 30px;
}
.section-tarifs hr {
    width: 200px;
    margin: 20px auto 100px;
}
.container-tarifs{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.cartes-tarifs {
    width: 350px;
    height: auto;
    border-radius: 5px;
    margin: 15px 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease-in-out;
    position: relative;
}
.cartes-tarifs:hover{
    transform: translateY(-5px);
}

.cartes-tarifs h4 {
    text-align: center;
    padding: 25px 20px;
    font-size: 35px;
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 100%);
    background: #ffafbf;
}
.cartes-tarifs span {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 25px;
    font-weight: bold;
}
.cartes-tarifs:nth-child(2) h4 {
    background: #ff5073;
}
.cartes-tarifs:nth-child(3) h4 {
    background: #ff0033;
}
.cartes-tarifs p{
    font-size: 18px;
    padding: 20px 10px;
    border-top: 1px solid rgb(194, 197, 194);

}
.cartes-tarifs p:last-of-type{
    border-bottom: 1px solid rgb(194, 197, 194);
}
.cartes-tarifs p:nth-child(odd){
    background: rgba(195,195,195,0.219);   
}
.cartes-tarifs a {
    display: block;
    text-decoration: none;
    border: 1px solid #333;
    text-align: center;
    width: 200px;
    height: 50px;
    border-radius: 8888px;
    color: #333;
    font-size: 18px;
    line-height: 50px;
    margin: 20px auto;
    transition: all 0.2s ease-in-out;
}
.cartes-tarifs a:hover{
    background: #333;
    color: #f1f1f1;
}
@media screen and (max-width: 900px) {
    .section-tarifs h3{
        font-size: 35px;
        margin: 80px 0px 80px;
    }
}
@media screen and (max-width: 425px) {
    .section-tarifs h3{
        font-size: 30px;
        padding: 0 10px;
        margin: 50px 0;
    }
    .section-tarifs hr {
        width: 200px;
        margin: 20px auto 20px;
    }
}

/* SECTION CONTACT */


.section-contact h2 {
    text-align: center;
    color: #333;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 70px 0 0 0;
}
.section-contact h2 strong{
    font-weight: 900;
    
}

.contactez{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(41, 51, 78);
    color: #f1f1f1;
    padding-bottom: 70px;

}
.contactez a {
    color: rgb(182, 16, 49);
}

.facebook {
    background: #3b5998;
    color: white;
}

.contact-container{
align-items: center;
line-height: 30px;
width: 35%;
padding: 20px;
font-size: 18px;
}

.contact-container h4 {
    font-size: 22px;
}

.contact-container-photo{
align-items: center;
width: 40%;
padding: 20px 10px;
}
.photo-camion{
align-items: center;
width: 100%;
padding: 20px;
border-radius: 25px;

}

.contacter-FB{
    display: flex;
    align-items: center;
}
.material-icons, .contacter {
    margin-top: 10px;
}


@media screen and (max-width: 1300px) {
    .section-contact h2{
        padding: 70px 0 0 0;
    }
    .contact-container{
        padding-left: 0;
    }
}

