/* ========== CSS ========== */
body {
    padding-top: 70px;
    margin: 0;
}

.site-header {
    background-color: #1e3a8a !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

    .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        max-height: 100px;
        margin: 0;
        padding: 12px 30px;
        box-sizing: border-box;
    }

/* ========== LOGO FIX ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-right: auto;
    margin-left: 10px;
    transform: translateY(8px);
}

    .logo img {
        height: 42px;
        width: auto;
        display: block;
        object-fit: contain;
    }

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1;
}

.under-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: #f5f5f5;
    white-space: nowrap;
    margin-top: 2px;
}

/* ========== NAVIGATION ========== */
.site-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

    .site-nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
        position: relative;
        text-transform: uppercase;
        padding-bottom: 4px;
    }

        /* This targets the dynamic "active" class assigned by the JavaScript */
        .site-nav ul li a:hover,
        .site-nav ul li a.active {
            color: #f0d673;
        }

        .site-nav ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: #f0d673;
            transition: width 0.3s ease;
        }

        .site-nav ul li a:hover::after,
        .site-nav ul li a.active::after {
            width: 100%;
        }
