:root {
    --navbar-height: 60px;

    --nav-menu-text-size: 20px
}

a {
    text-decoration: none;
}

hr {
    border-color: gray;
    margin: 10px var(--content-padding) 20px var(--content-padding);
}

.navbar-content {
    z-index: 120;
    background-color: black;
}

.navbar-content,
.navbar-message {
    position: fixed;
    width: 100%;
}

.navbar {
    max-width: var(--content-width);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    height: var(--navbar-height);
    margin: 0 auto;

}

.navbar-message {
    z-index: 100;
    margin-top: var(--navbar-height);
    background-color: var(--primary-color);
}

.navbar-message p {
    margin: 0;
    color: black;
    /* font-size: 20px; */
    text-align: center;
    margin: 4px;
}

.navbar--logo {
    height: 50px;
    margin-left: 15px;
    float: left;
    user-select: none;
}

.navbar--left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    flex-grow: 4;

    min-width: auto;
    height: var(--navbar-height);
    margin-left: 30px;
}

.navbar--right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;

    margin-right: 5px;
    height: var(--navbar-height);
}

.navbar--right a img {
    width: 45px;
    height: 45px;
    color: red !important;
    fill: red !important;
}

.navbar--right a img path {
    color: red !important;
    fill: red !important;
}

.navbar a {
    text-decoration: none;
    user-select: none;
}

.navbar .button {
    --button-height: 45px;

    justify-content: flex-end;
    float: right;
    margin: 10px;
    height: var(--button-height);
    line-height: var(--button-height);
    font-weight: 500;
    user-select: none;
}

.navbar--hamburger,
.navbar--hamburger--close {
    display: none;
}

.nav-social-links {
    display: flex;
    gap: 10px;
}

.nav-social-links a {
    height: 25px;
    width: 25px;
}

/* NAV MENU (mobile)*/
#nav-menu {
    display: none;
}

.nav-menu {
    z-index: 110;
    display: block;
    margin-top: var(--navbar-height);
    position: fixed;

    width: 100%;
    height: 100%;
    /* height: calc(100% - var(--navbar-height)); */
    background-color: #2d2d2dd8;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

.nav-menu .button {
    margin: 0 var(--content-padding) 10px var(--content-padding);
    width: calc(100% - var(--content-padding) * 2);
    font-size: var(--nav-menu-text-size);
    text-align: start;
}

.nav-menu--close-button {
    float: right;
    width: 30px;
    padding: 10px;
    color: white;
}

.nav-menu--nav-links {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.nav-menu--nav-links a {
    font-size: var(--nav-menu-text-size);
    padding: 10px var(--content-padding);
}

.nav-menu--social-links {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--content-padding);
    max-width: 400px;
}

.nav-menu--social-links a svg {
    height: 25px;
    width: 25px;
}

@media only screen and (max-width: 900px) {
    .nav-social-links {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    :root {
        --navbar-height: 40px;
        --button-height-small: 35px;
    }

    .navbar--hamburger,
    .navbar--hamburger--close {
        display: block;
        background-color: var(--primary-color);
        margin-left: 2.5px;
        height: 30px;
        width: 30px;
        padding: 0;
    }

    .navbar--hamburger svg,
    .navbar--hamburger--close svg {
        margin: auto;
        width: 70%;
    }

    .navbar--left,
    .navbar--right {
        display: none;
    }

    .navbar--logo {
        flex: 1;
        display: flex;
        justify-content: center;
        height: var(--button-height-small);
        margin: 0;
    }

    .navbar .button {
        height: 30px;
        line-height: 30px;
        margin: 5px;
    }

}