/* =========================
   Base Styles (default)
============================ */
.navbar {
    position: fixed;
    top: 0;
    height: 10vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: "Cinzel Decorative", serif;
    transition: all 0.2s ease;
    z-index: 100;
    background-color: rgb(25, 25, 25);
    color: white;
}

.left-nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1rem;
    cursor: pointer;
}

.left-icon {
    height: 2rem;
    width: 2rem;
    margin-top: 0.25rem;
}

.left-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-title {
    width: 6rem;
    fill: white;
}

@font-face {
    font-family: 'PBLFont';
    src: url('/web/fonts/Primal_Bloodline_v2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.slogan {
    font-size: 4px;
    font-family: 'PBLFont';
    color: white;
}

#main-navbar.top {
    background: transparent;
    color: rgb(255, 255, 255);
}

#main-navbar.middle {
    background-color: rgb(45, 45, 45, 0.7);
    color: white;
    backdrop-filter: blur(10px);
}

#main-navbar.middle .site-title {
    fill: white;
}

#main-navbar.middle .slogan {
    color: white;
}

#main-navbar.middle-bottom {
    background-color: rgb(255, 255, 255);
    color: black;
}

#main-navbar.middle-bottom .site-title {
    fill: black;
}

#main-navbar.middle-bottom .slogan {
    color: black;
}


#main-navbar.bottom {
    background-color: black;
    color: rgb(255, 255, 255);
}

#main-navbar.bottom .site-title {
    fill: white;
}

#main-navbar.bottom .slogan {
    color: white;
}

.right-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    display: flex;
    padding-top: 3rem;
    flex-direction: column;
    background-color: rgb(21, 21, 21);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-item {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    margin-left: 1.5rem;
    cursor: pointer;
}

.nav-item:hover,
.nav-item:focus {
    opacity: 0.9;
    color: white; /* stays white */
}

.nav-icon {
    height: 1.25rem;
    width: 1.25rem;
    opacity: 0.9;
}

.nav-icon-small {
    align-self: flex-start;
    height: 0.7rem;
    width: 0.7rem;
    margin-left: 0.75rem;
}

.close-nav-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.close-nav-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.nav-link {
    margin-top: 0.1rem;
    margin-left: 1rem;
    font-size: 0.75rem;
    color: white;
}

.right-nav-links.open {
    transform: translateX(0);
}

.burger-menu {
    margin-right: 2rem;
    cursor: pointer;
}

.burger-line {
    width: 1.4175rem;
    height: 0.09rem;
    background-color: white;
    margin-bottom: 0.5rem;
}

.burger-line.middle-bottom {
    background-color: black;
}

/* =========================
   Smallest phones (≥320px)
   ========================= */
@media (min-width: 320px) {
}

/* =========================
   Small devices (≥480px)
   ========================= */
@media (min-width: 480px) {
}

/* =========================
   Tablets (≥768px)
   ========================= */
@media (min-width: 768px) {
}

/* =========================
   Small desktops (≥992px)
   ========================= */
@media (min-width: 992px) {
    .left-nav-container {
        margin-left: 2rem;
    }

    .left-icon {
        height: 3rem;
        width: 3rem;
        background: transparent;
    }

    .site-title {
        display: block;
        width: 10rem;
        fill: white;
    }

    .slogan {
        font-size: 6px;
    }

    .close-nav-icon {
        height: 2rem;
        width: 2rem;
    }

    .nav-item {
        margin-top: 3rem;
    }

    .nav-icon {
        height: 1.5rem;
        width: 1.5rem;
    }

    .nav-icon-small {
        height: 0.8rem;
        width: 0.8rem;
        margin-left: 0.5rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .right-nav-links {
        width: 15vw;
    }

    .burger-menu {
        margin-right: 5rem;
        cursor: pointer;
    }

    .burger-line {
        width: 2.5rem;
        height: 0.2rem;
        background-color: white;
        margin-bottom: 0.5rem;
    }
}

/* =========================
   Large desktops (≥1200px)
   ========================= */
@media (min-width: 1200px) {
}
