:root {
    --navbar-height: 3rem;
}

.sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: var(--dark-background-color);
    z-index: 1000;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    height: var(--navbar-height);
}

.navbar_void {
    height: var(--navbar-height);
}

.sticky-header .navbar-desktop_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 100%;
    margin: auto;
}

.sticky-header .navbar-desktop_container a {
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    font-size: var(--font-size-s);
}



.navbar_button {
    padding: 0.5rem 0.5rem;
    background-color: var(--navbar-button-background);
    color: var(--navbar-button-font-color);
    border-radius: var(--border-radius-s);
    font-weight: bold;
    transition: background-color ease-in-out 0.2s;
}

.nav_left_links {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin: auto;
}

@media (hover: hover) {
    .navbar_button:hover {
        background-color: var(--navbar-button-background-hover);
        cursor: pointer;
    }

    .footer-section a:hover {
        text-decoration: underline;
    }
}

.sticky-header .navbar-desktop_container .nav_left {
    width: 3rem;
    height: 100%;
}

.sticky-header .navbar-desktop_container .nav_left img {
    z-index: 10;
}

.sticky-header .navbar-desktop_container .nav_right {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}


footer {
    background-color: var(--footer-background-color);
    color: white;
    padding: 10px;
    text-align: center;
}


.footer-section {
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--main-background-color);
}

.footer-section p,
.footer-section ul {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
    color: var(--main-background-color);
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    color: var(--main-background-color);
}

.footer-section a {
    color: white;
    text-decoration: none;
}



/* Responsive adjustments */
@media (min-width: 600px) {
    footer {
        text-align: left;
        padding: 10px 30px;
        height: 160px;

    }

    .footer-section {
        display: inline-block;
        vertical-align: top;
        width: 25%;
        padding: 0 10px;
        margin: 10px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
}

/* Desktop Navbar Style */
.navbar-desktop {
    display: block;
}

/* Mobile Navbar Style */
.navbar-mobile {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    padding-top: 2rem;
}

.mobile-menu a {
    border-top: var(--border-width-m) solid var(--white-border);
    padding: 1rem;
    font-weight: bold;
    color: white;
}

.mobile-menu a:last-child {
    border-bottom: var(--border-width-m) solid var(--white-border)
}

.navbar_merchsloth {
    color: white;
    font-weight: bold;
    margin: 0 1rem;
    font-size: var(--font-size-m);
}

@media screen and (max-width: 768px) {
    .navbar-desktop {
        display: none;
    }

    .navbar-mobile {
        display: block;
    }

    .navbar_merchsloth {
        font-weight: bold;
        margin: 0 0.5rem;
        font-size: var(--font-size-s);
    }
}

.hamburger {
    color: white;
    cursor: pointer;
}