html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Gotham', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1 {
    display: none;
}


/* HEADER------------------------------ */

/* NAV */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #f46428;
    height: 10vh;
}

#logo img {
    height: 25px;
    /* Ajuster la taille du logo */
}

.nav-links {
    display: flex;
    gap: 60px;
    font-size: 0.8rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: bolder;
    color: #fff;
    transition: 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    opacity: 100%;
}

.nav-links a:hover{
    
    color: #fff;
    opacity: 50%;
    
}

.nav-links.mobile{
    font-size: 1.2rem;
}



.dropdown {
    position: relative;
    display: inline-block;
}




.dropdown-content {
    text-align: center;
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    z-index: 1;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    background-color: #074F34;
}


.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


.dropdown:hover .dropdown-content {
    display: block;
}



#burger {
    width: 30px;
    height: 20px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#burger div {
    width: 100%;
    height: 4px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

#burger div:nth-child(1) {
    top: 0;
}

#burger div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

#burger div:nth-child(3) {
    bottom: 0;
}

.nav-links.desktop {
    display: none;
}

.nav-links.mobile {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f46428;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    overflow-y: auto;
}

.nav-links.mobile.show {
    transform: translateX(0);
}

#close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    font-weight: bolder;
    cursor: pointer;
    color: #fff;
    margin-right: 40px;

}


@media (min-width: 769px) {

    #burger,
    .nav-links.mobile {
        display: none;

    }

    .nav-links.desktop {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
}

/* FIN NAV */




/*MAIN------------------------------------ */


















































/* FIN MAIN------------------------------------ */


#btnTop {
    transition: opacity 0.5s; /* this line makes the button fade in and out */
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #074F34;
    color: white;
    font-weight: bolder;
    cursor: pointer;
    padding: 12px 15px 15px 15px;
    border-radius: 50px;
    font-size: 18px;
    width: 50px;
    height: 50px;
}

#btnTop:hover {
    background-color: #033823;
}


/* FOOTER--------------------------------------- */

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 30vh;
    background-color: #f46428;
   
}

.footer-content{
    display: inline-block;
    width: 60%;
    margin: 0 auto;
    padding-top: 2%;
        
}

@media screen and (max-width: 768px) {
    footer{
        height: 33vh;
    }

    .footer-content{
        padding-top: 15% ;
        width: 80%;
        height: 100%;
    }
}



  /* FIN FOOTER--------------------------------------- */