@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@keyframes idle {
    0% {
        transform: translate(0px, 0px) rotate(335deg);
    }
    25% {
        transform: translate(5px, 5px) rotate(338deg);
    }
    50% {
        transform: translate(0px, 5px) rotate(341deg);
    }
    75% {
        transform: translate(-5px, 0px) rotate(338deg);
    }
    100% {
        transform: translate(0px, 0px) rotate(335deg);
    }
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Noto Sans', sans-serif;
}

header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 15;
}
.fa-bars,
.fa-xmark{
    display: none;
    font-size: 1.8em;
}
.contact-barre{
    background-color: #F49314;
    color: #fefefe;
    display: flex;
    height: 35px;
    align-items: center;
    justify-content: space-between;
}
.contact-barre .left-side{
    flex-basis: content;
}
.contact-barre .left-side a{
    margin-right: 30px;
    text-decoration: none;
    color: #fefefe;
}
.contact-barre .left-side a .fa-solid{
    color: #000;
    margin-right: 5px;
}
.contact-barre .right-side a .fa-brands{
    color: #000;
    font-size: 1.3rem;
    margin-right: 5px;
}
.contact-barre .right-side{
    flex-basis: content;
    display: flex;
    gap:8px;
}

.container{
    padding-inline: 4vw;
}
.main-menu-container{
    height: 65px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fefefe;
    box-shadow: 0px 26px 23px 5px rgba(23,23,23,0.57);
    padding-inline: 4vw;
    padding-block: 0.3vw;
}
.main-menu-container .menu-menu-principale-container{
    flex-basis: 30%;
}
.menu{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    height: 100%;
    list-style: none;
}

.menu li a{
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.logo-container{
    display: flex;
    align-items: center;
}
.fluide{
    width: 100%;
    height: auto;
}
.logo-container-box{
    flex-basis: 20%;
}
.logo-container h1{
    text-transform: uppercase;
    font-size: 2.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.banner{
    position: relative;
}
.banner::after{
    z-index: 1;
    content: "";
    width: 100%;
    position: absolute;
    height: 20vh;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner img{
    width: 100%;
    height: 90vh;
    object-position: center;
    object-fit: cover;
}
.btn-color-green{
    text-decoration: none;
    background-color:  #F49314;
    padding: 15px 18px;
    font-size: 1.2rem;
    color: #fefefe;
    position: absolute;
    bottom: 1.5vw;
    left: 4vw;
    z-index: 2;
}
.services-container{
    padding-inline: 4vw;
}
.reservation{
    padding-inline: 4vw;
}
.nous-joindre{
    padding-inline: 4vw;
}
#services{
    padding-top: 2%;
}
#services h2{
    font-size: clamp(1.5rem, 2.5vw, 4rem) ;
}
.container-flex{
    display: flex;
    justify-content: space-between;
}
.cards-container{
    margin-top: 8vh;
}
.card{
    flex-basis: 30%;
    padding: 15px;
    box-shadow: 2px 26px 23px 5px rgba(23,23,23,0.57);
}
.card:nth-child(1){
    border-top: #F49314 solid 6px;
}
.card:nth-child(2){
    border-top: #70AF27 solid 6px;
}
.card:nth-child(3){
    border-top: #41A6E5 solid 6px;
}

.card img{
    width: 100%;
    height: 18vw;
    object-fit: cover;
}
.card h3{
    font-size: 1.4rem;
}
.reservation{
    margin-top: 10vh;
    color: #fefefe;
    background-color: #000;
    padding-block: 3%;
}
.col-6{
    flex-basis: 45%;
}
.container-info-reservation{
    display: Flex;
    flex-direction: column;
    justify-content: center;
    gap: 65px;
}
.container-info-reservation h2{
    width: 75%;
    font-size: clamp(2.8rem, 4vw, 3.8em);
}
.container-image-reservation{
    flex-basis: 35%;
}
.container-image-reservation .mobile{
    display: none;
}
.btn-reservation{
    text-decoration: none;
    color: #fefefe;
    font-size: 2rem;
    border: #fefefe solid 2px;
    width: fit-content;
    padding: 10px 18px;
}

.col-4{
    flex-basis: 40%;
}
.col-8{
    flex-basis: 60%;
}
.container-image-about .mobile{
    display: none;
}
.about-info{
    padding-top: 5%;
}
.about-info h2{
    font-size: 3rem;
    margin-bottom: 2%;
}
.about-info p{
    font-size: 2rem;
    margin-block: 5%;
}
.nous-joindre h2{
    font-size: 3rem;
    margin-bottom: 5%;
}
textarea{
    resize: none;
}
.contact input, .contact textarea{
    margin-block: 10px;
    padding: 8px;
    width: 100%;
    border:none;
    background-color: #f3f3f3;
    
}
input[type="submit"]{
    background-color: #F49314;
    color: #fefefe;
    margin-top: 2%;
    font-size: 1.1rem;
}
.img-logo-shape-container{
    position: relative;
}

.img-logo-shape-container .drone{
    width: 100%;
    height: auto;
    position: absolute;
    top: -15%;
    left: -15%;
    transform: rotate(335deg);
    /* animation: idle 1s linear infinite; */
}
.logo-shape{
    border-radius: 30% 0 30% 0;
    height: 65vh;
    object-fit: cover;
    width: 85%;
    transform: translate(15%);
}

footer{
    margin-top: 5%;
    background-color: #000;
    color: #f3f3f3;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
}
footer .menu-footer{
    display: flex;
    justify-content: space-between;
    flex-basis: 30%;
    align-items: center;
}
 footer nav {
    height: 20vh;
    padding-block: 8%;
    padding-inline: 10%;
    flex-basis: 55%;
    border-left: #333333 2px solid;
}
.menu-footer .menu{
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.copyright{
    color: #474747;  
}
.menu-footer nav .menu li{
    padding-block: 5px;
}
.menu-footer nav .menu li a{
    color: #333333;

}
.logo-footer{
    flex-basis: 15%;
}
.img-texture-footer{
    flex-basis: 33%;
}
.img-texture-footer .mobile{
    display: none;
}





@media screen and (max-width:1400px) {
    .nous-joindre,.about{
        margin-top: 200px;
    }
    .menu-item a{
        font-size: 0.8em;
    }

}
@media screen and (max-width:1100px) {
    .menu-menu-principale-container{
        transition: all 250ms ease-in-out;
        display: block;
        position: fixed;
        left: 0;
        padding: 10% 20px 20%;
        top: 100px;
        width: 70vw;
        height: 100vh;
        z-index: 10;
        background-color: #f3f3f3;
        transform:translateX(-50%);
        opacity: 0;
        -webkit-box-shadow: 5px 15px 16px 1px rgba(0,0,0,0.34); 
        box-shadow: 5px 15px 16px 1px rgba(0,0,0,0.34);
    } 
    .menu-menu-principale-container.open{
        transform: translate(0);
        opacity: 1;

    }
    .menu-menu-principale-container .menu{
        display: flex;
        flex-direction: column;
    }
    .menu-menu-principale-container .menu li a{
        text-align: center;
        font-size: 1.5em;
    }
    .burger{
        height: 100%;
        display: flex;
        align-items: center;
        padding: 5px;
    }
    .fa-bars{
        display: block;
    }
    .fa-xmark{
        display: none;
    }

    .phone-nb, .mail-address{
        display: none;
    }
    .contact-barre .left-side a .fa-solid{
        font-size: 1.6em;
        margin-right: 2px;
    }
    .contact-barre .right-side a .fa-brands{
        font-size: 1.6em;
    
    }
    .container-image-reservation{
        flex-basis: 45%;
    }
    
    
    .container-info-reservation h2{
        width: 100%;
    }
    
    .container-image-about .desktop{
        display: none;
    }
    .container-image-about .mobile{
        display: block;
    }
    .img-logo-shape-container .drone{
        top: 0;
    }
    

}

@media screen and (max-width:900px) {
    .menu-menu-principale-container{
        padding: 10% 20px 25%;
    } 
    .banner{
        padding-top: 100px;
    }
    .banner img{
        height: auto;
    }

    .btn-color-green{
        padding: 5px 15px;
        font-size: 1rem;
        bottom: 2vw;
    }
    .reservation{
        flex-direction: column;
    }
    .container-image-reservation{
        /* width: 50%; */
        margin-top: 50px;
        float: right;
    }
    .container-image-reservation .desktop{
        display: none;
    }
    .container-image-reservation .mobile{
        display: block;
    }
    .about{
        padding-inline: 0;
        margin-top: 50px;
        flex-direction: column;
    }
    .about-info{
        padding-inline: 4vw;
    }
    .nous-joindre{
        margin-top: 50px;
        flex-direction: column;
    }
    .img-contact-container .logo-shape{
        display: block;
        width: 75%;
        height: 450px;
        margin: 0 auto;
        box-shadow: 10px 10px 20px 0px #11111170;
        transform: none;
    }
    .img-logo-shape-container{
        margin-block: 70px;
    }
    .img-logo-shape-container .drone{
        top: -15%;
    }
}

@media screen and (max-width:650px) {
    .menu-menu-principale-container{
        padding: 30% 20px 50%;
    } 

    
    #services {
        padding-top: 15%;
        padding-inline: 0;
    }
    #services h2{
        margin-left: 4vw;
    }
    .container-scroll{
        overflow-x: scroll;
        padding-bottom: 5rem;
    }
    .cards-container{
        gap: 2rem;
        margin-top: 3vh;
        margin-left: 4vw;
    }
    .card img{
        width: 250px;
        height: auto;
        aspect-ratio: 13 / 9;
    }
    .card h3{
        font-size: 1.2rem;
    }

    .reservation{
        margin-top: 5vh;
        padding-inline: 0;
        padding-block: 4%;
    }
    .container-info-reservation{
        padding-inline: 4vw;
    }
    .container-image-reservation{
        float: none;
        width: 100%;
    }

    
    .container-image-about{
        width: 100%;

    }
    
    
    .about-info h2{
        font-size: 2.5rem;
    }
    .about-info p{
        font-size: 1.4rem;
        margin-block: 8%;
    }
    
    

    .container-info-contact h2{
        font-size: 1.6rem;
    }
    
    


    footer {
        padding: 15px;
        color: #fefefe30;
        text-align: center;
    }
    footer.container-flex {
        display: block;
    }
    .logo-footer{
        width: 60%;
        margin: 0 auto;
    }
    .legal{
        width: fit-content;
        margin: 0 auto;
        padding-inline: 15px;
        padding-block: 1.5rem 1rem;
        border-bottom: 2px solid #333333;
    }
    footer .menu-footer{
        display: block;
    }
    .menu-footer nav{
        height: auto;
        border: none;
    }
    .menu-footer .menu{
        display: block;
    }
    .img-texture-footer .desktop{
        display: none;
    }
    .img-texture-footer .mobile{
        display: block;
    }
}