@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');
*{
    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%;
    z-index: 5;
}
.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{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fefefe;
    box-shadow: 2px 26px 23px 5px rgba(23,23,23,0.57);
    padding-inline: 4vw;
    padding-block: 0.3vw;
}
.main-menu-container nav{
    flex-basis: 30%;
}
.main-menu{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    height: 100%;
    list-style: none;
}

.main-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: 40%;
}
.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;
}
section{
    padding-inline: 4vw;
}
#services{
    padding-top: 2%;
}
#services h2{
    font-size: 4rem;
}
.container-flex{
    display: flex;
    justify-content: space-between;
}
.cards-container{
    margin-top: 8vh;
}
.card{
    flex-basis: 30%;
    padding: 15px;
    border-top: #F49314 solid 6px;
    box-shadow: 2px 26px 23px 5px rgba(23,23,23,0.57);
}
.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;
    gap: 20%;
}
.container-info-reservation h2{
    width: 85%;
    font-size: 4.5em;
}
.container-image-reservation{
    flex-basis: 35%;
}
.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%;
}
.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(-25deg);
}
.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%;
}
.menu-footer{
    display: flex;
    justify-content: space-between;
    flex-basis: 20%;
    align-items: center;
}
.menu-footer nav {
    height: 20vh;
    padding-block: 3%;
    padding-inline: 15%;
    border-left: #333333 2px solid;
}
.menu-footer nav .main-menu{
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.copyright{
    color: #474747;  
}
.menu-footer nav .main-menu li a{
    color: #333333;

}