@font-face {
    font-family: 'Merriweather-SemiBold';
    src: url("Merriweather_Sans/static/MerriweatherSans-SemiBold.ttf");
}
@font-face {
    font-family: 'Merriweather-Bold';
    src: url("Merriweather_Sans/static/MerriweatherSans-Bold.ttf");
}
@font-face {
    font-family: 'Merriweather';
    src: url("Merriweather_Sans/static/MerriweatherSans-Regular.ttf");
}
@font-face {
    font-family: 'Merriweather-Light';
    src: url('Merriweather_Sans/static/MerriweatherSans-Light.ttf');
}

/* NAVBAR */
#navigation-header-container {
    display: flex;
    background-color: #253031;
    width: 100%;
    height: 6em;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0em 0em .2em .02em #101515;
}

#nav-header-image-title-container {
    display: flex;
    width: 20em;
    min-width: 20em;
    height: 100%;
    gap: 1em;
    background-color: #F37B18;
    align-items: center;

}

#header-image-container {
    display: flex;
    height: 70%;
    align-items: center;
}

#header-image {
    width: 4em;
    height: auto;
    padding-left: 1em;
}

#header-title {
    font-size: 1.5em;
    font-family: "Merriweather";
    cursor: pointer;
}

#nav-header-nav-container {
    display: flex;
    padding: 0 1em;
    height: 100%;
    align-items: center;
}

#header-nav-container {
    display: flex;
    gap: 3em;
    flex-direction: row-reverse;
    align-items: center;
}

#navigation-menu {
    display: flex;
    position: relative;
    z-index: 100;
    width: auto;
    height: 100%;
    background-color: #253031;
    gap: 2em;
    text-align: center;
    align-items: center;
    opacity: 1;
    transform: translateX(20px);
    pointer-events: all;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#navigation-menu.open {
    opacity: 1;
    transform: translateX(0px);
    pointer-events: all;
}

.nav-button {
    font-family: "Merriweather-SemiBold";
    color: #EED6D5;
    word-spacing: .3em;
    text-decoration: none;
    padding: .5em 0em;
    font-size: 1em;
}

.nav-button:hover {
    color: #FED13D;
}

.contact-button {
    text-decoration: none;
    color: #EED6D5;
}

.contact-button:hover {
    color: #FED13D;
}
/* Material Symbols */
#dropdown-indicator {
    display: flex;
}

.menu-dropdown {
    font-size: 3em !important;
    color: #EED6D5;
}

.menu-dropdown:hover {
    color: #FED13D;
    cursor: pointer;
}