@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: var(--background-color-1);
    width: 100%;
    height: 5.5em;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0em 0em .2em .02em #101515;
    padding: 0 1%;
    box-sizing: border-box;
}

#nav-header-image-title-container {
    display: flex;
    width: 56%;
    min-width: 20em;
    height: 100%;
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
}

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

#header-image {
    width: auto;
    height: 98%;
}

/* #header-title is a <div> on interior pages and an <h1> on the homepage.
   These resets neutralize the browser's default h1 margin/font-weight so it
   renders identically either way. */
#header-title {
    margin: 0;
    font-weight: normal;
    font-size: clamp(2em, 3.2vw, 3.4em);
    letter-spacing: .05em;
    word-spacing: .1em;
    line-height: 90%;
    font-family: "Merriweather-SemiBold";
    color: var(--color-1);
    cursor: pointer;
    white-space: nowrap;
}

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

#header-nav-container {
    display: flex;
    gap: 2.5em;
    align-items: center;
}

/* hidden on desktop, shown on mobile */
#dropdown-indicator {
    display: none;
    cursor: pointer;
}

#navigation-menu {
    display: flex;
    gap: 2em;
    align-items: center;
}

.nav-button {
    font-family: "Merriweather";
    color: var(--color-1);
    letter-spacing: .05em;
    text-decoration: none;
    padding: .5em 0em;
    font-size: clamp(1em, 1.3vw, 1.3em);
    white-space: nowrap;
}

#quote-nav {
    font-size: clamp(.9em, 1.2vw, 1.2em);
}

.nav-button:hover {
    color: var(--highlight-color-1);
    cursor: pointer;
}
