@font-face {
    font-family: 'Bagel';
    src: url('../src/fonts/Bagel/BagelFatOne-Regular.woff2') format('woff2'),
        url('../src/fonts/Bagel/BagelFatOne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBook';
    src: url('../src/fonts/Gotham/GothamBook.woff2') format('woff2'),
        url('../src/fonts/Gotham/GothamBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBold';
    src: url('../src/fonts/Gotham/GothamBold.woff2') format('woff2'),
        url('../src/fonts/Gotham/GothamBold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #fff;
    background-color: #000;
    font-family: 'GothamBook', sans-serif;
}

/* ------------------- HEADER ------------------- */
header {
    height: 93px;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #fff;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

#logo {
    font-family: 'Bagel', sans-serif;
    font-size: 1.7rem;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-bottom: 0;
}

nav ul li {
    cursor: pointer;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'GothamBold';
    font-size: 1.2rem;
    padding: 20px 7px;
}
nav ul li:hover {
   text-decoration: underline;
}

.burger {
    display: none;
}

/* --- header responsive --- */
@media (max-width: 745px) {
    .burger {
        display: block;

        cursor: pointer;
        background-color: #000;
        border: 0;
    }

    .burger img {
        width: 45px;
    }
    
    .burgerOpen {
        display: block;
    }

    .burgerClose {
        display: none;
    }

    nav ul {
        display: none;
        
        flex-direction: column;
        gap: 37px;
        background-color: #000;
        border-bottom: #fff 2px solid;
        z-index: 1;
        padding: 30px 80px;
        width: 100%;
        
        position: absolute;
        top: 94px;
        left: 0;
    }

    nav ul li a {
        font-size: 1.3rem;
    }
}

 @media (max-width: 400px) {
    header {
        height:90px;
    }
}


/* ------------------- Footer ------------------- */
footer {
    background-color: #FFFCF6;
    color: #000000;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
    
footer a {
    color: #000;
    text-decoration: none;
}
    
footer h2 {
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-family: 'GothamBold', sans-serif;
}
    
footer ul {
    margin: 0;
    list-style: none;
}

.mention {
    margin-top: 25px;
}   

    /* Footer responsive */ 
    @media (max-width: 775px) {
        footer ul {
            padding-left: 12px;
        }   
    }

    @media (min-width: 650px) {
        footer {
            flex-direction: row;
            justify-content: center;
            gap: 7%;
        }   
    }