.header {
    width: 100%;
    background-color: var(--bg);
    max-height: 5rem;
    border-bottom: 1rem solid var(--bg);

    position: fixed;
    display: flex; flex-direction: row;
    z-index: 100;

    max-width: 1312px;
    left: 50%;
    transform: translateX(-50%);
}

.header-container {
    position: fixed;
    background-color: var(--bg);
    width: 100%;
    height: 6rem;
    z-index: 99;
}

/* ======================================================== */

.wordmark {
    display: flex; white-space: nowrap;
    position: relative;
    overflow: hidden;
    align-items: center;
    
    padding-top: 1.1rem;
    padding-left: 4rem;
    transition: transform 0.75s cubic-bezier(.32,.02,.44,1.15);
}

.wordmark span {
    letter-spacing: -0.1rem;
    font-size: 48px;
    color: var(--accent-400);
    margin-right: 0.125rem;
}

.stylized-o {
    width: 3rem; 
    height: 3rem;
    transition: transform 0.75s cubic-bezier(.32,.02,.44,1.15);
}

.wordmark:hover {
    opacity: .8;
}

.wordmark:hover > .stylized-o {
    transform: rotate(90deg);
}

.wordmark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff90, transparent);
    transition: .5s ease-in-out;
}

.wordmark:hover::before, .wordmark:active::before {
    left: 100%;
}

/* ======================================================== */

.menu-options {
    justify-content: right;
    white-space: nowrap;
}

/* ======================================================== */

.hamburger {
    /* Align menu button to the right by putting flexible space to the left */
    margin-left: auto;
    width: 2rem;
}
.ham-bars {
    width: 0px;
    height: 0px;
    background-color: var(--bg);
    border-radius: 5px;
    opacity: 0;

    margin: .3rem;
    margin-right: 2.3rem;
    transition: 0.4s ease-in-out;
}

.hamburger:hover > #bar2 {
    transform: translate(-8px, 0);
}

.hamburger-menu-options {
    font-family: gravity-bold;
    color: var(--accent-800);
    position: fixed;

    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: 0;
    padding: 0;
    padding-right: 4rem;
    opacity: 0;
    pointer-events: none;
}

.hamburger-menu-options li {
    font-family: gravity-bold;
    line-height: unset;
    position: relative;
}

.active #bar1 {
    width: 35px;
    transform: translate(0, 10px) rotate(45deg);
}
.active #bar2 {
    width: 0px;
}
.active #bar3 {
    transform: translate(0, -10px) rotate(-45deg);
}

.menu {
    position: fixed;
    left: 0%;
    width: 100%;
    background-image: var(--navgradient);
    z-index: -1;
    opacity: 0;
    height: 11.8rem;
    transform: translateY(-100%); 
    transition: transform 0.4s ease-in-out;
    cursor: auto;
}

.active ~ .menu {
    transform: translateY(0);
}

/* ======================================================== */

.made-with {
    margin-top: 2rem;
    text-align: center;
}

.made-with span {
    margin-left: .15rem;
    padding: .1rem .5em;
    border-radius: .4rem;
    background-color: var(--accent-100); 
    border: 1.25px solid var(--accent-400);
    white-space: nowrap;
}

/* ======================================================== */

.footer {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--accent-400);
    height: 82px;
    margin-bottom: 0;
    margin-top: 1.5rem;
    padding: 0 4rem;
}

.footer-container {
    display: flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 1312px;
    
    justify-content: space-between;
    align-items: center;
}

.footer span {
    color: var(--bg);
}

.footer b {
    -webkit-text-stroke: 0px var(--bg);
}

.social-media-icons {
    display: flex;
    min-height: 2.25rem;
    align-content: center;
    gap: 2rem;
}

.social-media-icons img {
    width: 2.25rem;
    white-space: nowrap;
}
.social-media-icons img:hover {
    transform: scale(1.1, 1.1);
}
.msocial-media-icons img:active {
    transform: scale(0.9, 0.9);
}

/* ======================================================== */

@media screen and (min-width: 1440px) {
    .wordmark {
        padding-left: 0rem;
    }
    .hamburger-menu-options {
        padding-right: 0rem;
    }
}

@media screen and (min-width: 700px) {
    .hamburger-menu-options {
        gap: 4rem;
    }
}

@media screen and (max-width: 675px) {
    .footer-text, .social-media-icons {
        
        position: relative;
    }
}

@media screen and (min-width: 621px) {
    .hamburger {
        visibility: collapse;
    }
    .menu {
        position: static;
        height: auto;
        opacity: 1;
        transform: none;
    }
    .hamburger-menu-options {
        position: static;
        margin: 0;
        transform: none;
        opacity: 1;
        pointer-events: unset;
        display: flex;
        justify-content: flex-end;
        padding-top: 3rem;
        gap: 3rem;
        line-height: unset;
    }
}

@media screen and (max-width: 620px) {
    .header {
        border-bottom: 0;
    }
    .wordmark span {
        pointer-events: none;
        width: 0;
        visibility: collapse;
    }

    .stylized-o {
        position: relative;
        left: 0;
        margin-top: -1.26rem;
        margin-left: -2.055rem;
    }

    .ham-bars, .menu, .hamburger-menu-options {
        opacity: 1;
        pointer-events: auto;
    }
    .menu-options {
        height: 0;
    }
    .ham-bars {
        width: 35px;
        height: 5px;
        background-color: var(--accent-800);
    }
    .hamburger {
        width: 4.8rem;
    }
    .hamburger-menu-options {
        margin-top: 1.4rem;
        padding-right: 0;
    }

    .footer {
        padding: 1rem 2.2rem 2.5rem 2.2rem;
    }
    .footer-text {
        text-align: center;
        margin-top: 1rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 1rem;
    }
    .social-media-icons img {
        width: 2rem;
    } 
}

@media screen and (max-width: 410px) {
    .footer {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 0.8rem;
    }
    .footer p {
        text-align: center;
        margin-bottom: 1rem;
    }
    .social-media-icons {
        justify-content: center;
        margin-bottom: 1rem;
    }
}