:root {
    --colour-primary: #C5D86D;
    --colour-dark: #0D1321;
    --colour-light: #ffeddf;
    --colour-secondary: #AFE0CE;
}

/* All elements should be within this container */
.container {
    max-width: 960px;
    padding: 0 1rem; 
    margin: 0 auto;
}

body {
    background-color: var(--colour-dark);
    color: var(--colour-light);
    font-family: 'Nunito Sans', sans-serif;
}

/* Header */

header {
    max-width: 960px;
    display: flex;
    height: 4rem;
    padding: 2rem 1rem;
    align-items: center;
    margin: 0 auto;
    gap: 1rem;
}

@media only screen and (max-width: 768px) {
    header {
        height: 4rem;
    }
}

#header-logo {
    height: 100%;
    border-radius: 8%;
    transition: all 0.3s ease;
    z-index: 2;
}

#header-logo:hover {
    box-shadow: 0 0 1rem #c4d86d70;
}

#header-logo-text {
    display: block;
}

#header-logo-text > * {
    line-height: 0.4rem;
}

#header-logo-text-secondary {
    font-weight: 200;
}

nav {
    display: flex; 
    margin-left: auto;
    gap: 0.4rem;
}

nav > a {
    color: var(--colour-light);
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    text-underline-offset: 0.2rem;
}

nav > a:hover {
    text-decoration: underline;
    text-decoration-color: var(--colour-secondary);
}

nav > a.active {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--colour-light);
}

#hamburger-menu-button {
    display: none;
    margin-left: auto;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--colour-light);
    font-size: 1.5rem;
    z-index: 2;
}

#hamburger-menu-button:hover {
    color: var(--colour-secondary);
}

@media only screen and (max-width: 768px) {
    #header-logo-text {
        display: none;
    }

    #hamburger-menu-button {
        display: block;
    }

    nav {
        display: none; 
        background-color: black;
        text-align: right;
        font-size: 1.6rem;
        width: 100vw;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        padding-top: 8rem;
        padding-right: 4rem;
        flex-direction: column;
        z-index: 1;
    }

    nav.show {
        display: flex;
    }
}

/* Section 1 */ 
#coming-soon {
    display: flex;
    background-color: var(--colour-secondary);
    color: var(--colour-dark);
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 12rem 0;
}