:root {
    --header-height: 10vh;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #fdffff;
}

body {
    background-color: #393e41;
    background: url('/assets/img/00-CROWD-TRURO.jpg') center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

h1 {
    font-family: 'Academic M54', sans-serif;
}

h3 {
    font-family: 'Dark Twenty', sans-serif;
    color: #fae200;
}

footer p {
    font-family: "futura-pt-bold", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fdffff;
    text-align: center;
}

header {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 0 30px;
    background: #000;
    position: fixed;
    width: 100vw;
    border-bottom: #fdffff 5px solid;
}

nav,
.logoContainer,
.shopIconsContainer {
    flex: 1;
}

.logoContainer {
    text-align: center;
    white-space: nowrap;
}

.logoContainer h1 {
    margin: 0;
    font-family: 'Dark Twenty', sans-serif;
    font-weight: 100;
    color: #fae200;
    font-size: 48px;
    line-height: 1;
}

.emoji {
    height: 1.2em;
    vertical-align: middle;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

main h1 {
    font-size: 120px;
    text-align: center;
    opacity: 0.6;
}

.mainNav {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;

}

.mainNav li {
    font-family: 'Academic M54', sans-serif;
}



main {
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
}

.socialsContainer {
    border: #000 5px solid;
    padding: 10px 40px;
    background-color: #fae200;
    display: flex;
    align-items: center;
    justify-content: center;

}

.socialsLinks {
    display: flex;
    list-style: none;

}

.socialsLinks li {
    padding: 10px;
}

.socialLink i {
    color: #393e41;
    font-size: 24px;
}

.socialLink:hover i {
    color: #fdffff;
}

.hero {
    height: 70vh;

}

.menuToggle,
.menuClose {
    display: none;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    header {
        position: relative;
    }

    .menuToggle {
        display: block;
        background: none;
        border: 0;
        color: white;
        font-size: 32px;
        cursor: pointer;
        flex: 1;
        text-align: left;
    }

    header nav {
        position: fixed;
        inset: 0;
        background: #fae200;
        z-index: 999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    header nav.open {
        display: flex;
    }

    .menuClose {
        display: block;
        position: absolute;
        top: 25px;
        right: 30px;
        background: none;
        border: 0;
        color: #393e41;
        font-size: 45px;
        cursor: pointer;
    }

    .mainNav {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        font-size: 32px;
    }

    .mainNav li {
        color: #393e41;
    }

    .logoContainer {
        flex: 1;
    }

    .logoContainer h1 {
        font-size: 24px;
    }

    .shopIconsContainer {
        flex: 1;
    }

    main {
        padding-top: 0;
    }

    .hero {
        height: 35vh;
    }

    main h1 {
        font-size: 80px;
    }
}