/* STYLE POUR TOUTES LES PAGES */
* {
    margin: 0;
}

body {
    margin: 0;
    background: #131313;
    color: #F2F2F2;
    font-family: 'Supreme';
    overflow-x: hidden;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    color: #F2F2F2;
}

.vh {
    min-height: 100vh;
}

.horizontal-separator {
    border-top: #2B2B2B solid 2px;
    width: 100%;
}

/* STYLE HEADER */
.clickable-logo {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (width < 1100px) {
    h1 {
        display: none;
    }
}

@media (width < 950px) {
    header {
        flex-direction: column;
    }
    nav {
        position: fixed;
        top: 96px;
        right: 32px !important;
        transition: 0.3s;
        flex-direction: column;
        transform: translateX(calc(100% + 32px));
    }

    /* Menu Hamburger */
    .hamburger {
        width: fit-content;
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: fixed;
        right: 32px;
        top: 32px;
        z-index: 15;
    }

    /* Design des bars du menu hamburger */
    .hamburger-bar {
        width: 33px;
        height: 3px;
        background: #F2F2F2;
        transition: 0.3s ease-in-out;
    }

    /* Pour l'animation du menu */
    .remove-middle-bar {
        opacity: 0;
    }

    .turn-top-bar {
        transform: rotate(45deg) translate(5px, 11px);
    }

    .turn-bottom-bar {
        transform: rotate(-45deg) translate(5px, -11px);
    }

    .show-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        position: fixed;
        margin: 0;
        width: fit-content;
        transform: translateX(0px);
    }
}

.logo-header {
    width: 80px;
}

header p {
    font-size: 48px;
    font-family: 'Rajdhani';
    font-weight: 300;
}

header {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: start;
    padding: 32px 64px;
}

nav {
    display: flex;
    gap: 32px;
    justify-content: center;
    border: 1px solid #2B2B2B;
    padding: 8px;
    border-radius: 8px;
    margin-left: auto;
    position: fixed;
    right: calc(0% + 64px);
    backdrop-filter: blur(5px);
    z-index: 300;
}

nav a {
    background: #2B2B2B;
    padding: 8px 16px;
    border-radius: 8px;  
    font-size: 16px;
    font-weight: 400;
    margin: 0;  
    font-family: Rajdhani;
}

nav a:hover {
    text-decoration: underline;
}

.current-page {
    background: #A2BF95;
    box-shadow: #A2BF95 0px 0px 7px;
    color: #131313;
}


/* STYLE DES TITRES EN VERTS */
.text-title {
    font-family: 'Rajdhani';
    font-weight: 300;
    font-size: 36px;
    color: #A2BF95;
}

/* STYLE DU FOOTER */
footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 32px;
    font-family: rajdhani;
    font-weight: 300;
}

.footer-link {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    gap: 16px;
}

.footer-link a:hover {
    color: #A2BF95;
}

.legal-mention {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.social-media-icon {
    width: 32px;
    transition: 0.3s ease-in-out;
}

.social-media-icon:hover {
    transform: scale(1.1);
}

.footer-logo {
    width: 64px;
}




::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #2B2B2B;
}

::-webkit-scrollbar-thumb {
  background: #A2BF95;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b9cfb0;
  }