:root {
    /* --background: #3c2c26; */
    --background: #191515;
    --light: #ffe9c6;
    --emph: #ffe01a;
    --emph2: #ff9900;
    --emph3: #813e08;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Libre Baskerville", serif;
}

body {
    font-size: 20px;
    line-height: 1.4;
}

header {
    position: relative;
    background: var(--background);
    border-bottom: 1px solid var(--emph2);
}

nav.desktop-nav ul {
    display: flex;
    letter-spacing: 1.5px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    font-size: 22px;
}

nav.desktop-nav ul li {
    position: relative;
    display: block;
    marker: none;
    padding: 15px;
}

nav.desktop-nav .dropdown {
    position: absolute;
    margin-top: 15px;
    background: var(--background);
    border: 1px solid var(--emph2);
    padding: 0;
    z-index: 100;
    width: max-content;
    display: none;
    flex-direction: column;
}

nav.desktop-nav>ul>li:hover .dropdown {
    display: flex;
}

.dropdown li {
    display: block;
    border-bottom: 1px solid var(--emph2);
    padding: 12px 5px;
}

nav a {
    /* text-transform: uppercase;
    font-family: 'Nunito', sans-serif; */
    text-decoration: none;
    color: var(--emph);
    padding: 5px 10px;
    font-weight: 400;
    border: none;
    margin: none;
}

nav li a:hover {
    color: white;
}

.logo {
    font-family: 'Work Sans', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2em;
    color: white;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid var(--emph2);
}

.emphasis{
    color: var(--emph);
}

.logo .emphasis {
    font-size: .6em;
    font-family: 'Nunito';
    text-transform: uppercase;
    padding: 10px 10px 0;
    color: var(--emph);
}

.logo img {
    width: 40px;
}

footer {
    line-height: 1.6;
    padding: 40px 30px;
    background: var(--background);
    color: white;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.footer-wrapper>* {
    padding: 0 10px;
    flex: 0 0 50%;
}

footer h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 10px;
}

.byline-logo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.byline-logo img {
    width: min(80px, 20%);
}

.byline p {
    font-size: 14px;
    padding-bottom: 20px;
    max-width: 500px;
}

section.stats {
    color: white;
    background: var(--background);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.stats-card {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

.stats-card .counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3em;
    color: var(--emph);
}

.stats.light .stats-card .counter {
    color: var(--emph3);
}

.stats-card p {
    width: 100%;
}

.light {
    background: var(--light) !important;
    color: black !important;
}

h1 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 2em;
}

a {
    color: var(--emph3);
    text-decoration: none;
    margin-bottom: 2px;
    border-bottom: 2px solid var(--emph3);
}

.info {
    font-weight: 400;
    color: var(--emph3);
    padding-left: 10px;
    border-left: 1px solid var(--emph3);
    margin-bottom: 20px;
    margin-left: 10px;
}

h3,
h4 {
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 10px;
}


.card>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    list-style: none;
}

.card>ul>li {
    flex: 1 1 500px;
    display: block;
}

.tagline {
    font-size: .6em;
    font-style: italic;
    color: var(--emph3);
}

section {
    font-size: .9em;
    padding: 20px;
    border-bottom: 1px solid var(--emph2);
}


.content {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px;
}

.text-block {
    flex: 0 0 60%;
    max-width: calc(60% - 40px);
    box-sizing: border-box;
    padding-left: 10px;
}

.side-image {
    flex: 0 0 40%;
    max-width: 40%;
    margin-left: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
}

.contact-us {
    align-self: flex-end;
}

.links {
    padding: 20px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.links a {
    border: none;
    margin: none;
}

.links a img {
    width: 40px;
    height: 40px;
    display: block;
}

.card-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid var(--emph2);
    border-radius: 10px;
    flex: 1 1 200px;
    padding: 20px 30px;
    margin-bottom: 10px;
    width: fit-content;
    min-width: 30vw;
    max-width: 600px;
}

.card img {
    width: 100%;
}

.card h3 {
    margin-top: 5px;
}

.card .description {
    color: black;
}

.content p {
    margin-bottom: 10px;
    max-width: 800px;
}

.content ul li {
    margin: 0 0 20px 20px;
}

.content li::marker {
    color: var(--emph3);
}

.content li b {
    color: var(--emph3);
}


.card .tagline {
    font-style: italic;
    margin: 10px 0;
    font-size: 0.8em;
}

.mobile-nav,
.hamburger {
    display: none;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    padding-right: 20px;
    color: var(--emph);
    text-align: right;
}

.hidden {
    display: none;
}

@media (max-width:900px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo{
        gap: 5px;
        justify-content: flex-start;
    }
    header .logo{
        border: none;
        font-size: 1.5em;
    }

    .hamburger{
        display: block;
    }

    .content {
        flex-direction: column;
    }

    .text-block,
    .side-image {
        width: 100%;
        max-width: 100%;
    }

    .footer-wrapper {
        gap: 30px;
        flex-direction: column;
    }

    .footer-wrapper>* {
        flex: 0 0 100%;
    }

    .byline-p {
        width: 100%;
        max-width: 100%;
    }

    .text-block {
        padding: 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: absolute;
        top: 100%; 
        background: var(--background);
        border-top: 1px solid var(--emph2);
        right: 0;
        width: 100%;
    }

    .mobile-nav .dropdown li {
        border: none;
    }

    .mobile-nav ul {
        list-style: none;
        /* padding-left: 10px; */
        padding: 0;
    }

    .mobile-nav ul li {
        padding: 10px 0 10px 20px;
        border-bottom: 1px solid var(--emph2);
    }

    .mobile-nav .dropdown {
        margin-left: 15px;
    }
}

section>h3,
section>h2,
section>h1,
section>h4 {
    margin: 0 0 20px 20px;
}

.center-block {
    max-width: 800px;
    margin: 0 auto 15px;
}

.full-width {
    max-width: 100vw;
    margin: 20px 0;
}