        body, html{
            margin: 0;
            padding: 0;
            width: 100%;
        } 
        
        .site-header{
            background-color: #122B45;
            border-bottom: 1px solid #dcdcdc;
            box-shadow: 0 2px 10px rgba(0,0,0,0,0.1);
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .header-container{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
            box-sizing: border-box;
            width: 100%;
            
        }

        .header-filler, .header-right{
            flex: 1;
        }

        .logo-container{
            text-align: center;
        }

        .logo-container a {
            display: inline-block;
            text-decoration: none;
        }

        .logo-image{
            display: block;
            max-width: 400px;
            width: 100%;
            height: auto;
            margin: 0 auto;

            width: 325px;
            height: 70px;
            object-fit: cover;
            object-position: absolute;

            transition: filter 0.3s ease;
        }

        .logo-image:hover {
            filter:
                drop-shadow(0 0 1px white)
                drop-shadow(0 0 8px rgba(185, 141, 63, 0.9));
        }

        .header-right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            gap: 15px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 300;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 10;

        }

        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: var(--accent-gold); /* Make sure this color contrasts with your header */
            border-radius: 10px;
            transition: all 0.3s linear;
        }

    @media (max-width: 768px) {
        .header-filler, .header-right {
            display: none;
            flex: 0;
            width: 0;
            margin: 0;
            padding: 0; /* Hide them on mobile initially */
        }

        .menu-toggle {
            display: flex; /* Show hamburger */
            position: absolute; /* Take it out of the flex flow */
            right: 20px;
            top: 50%;
            transform: translateY(-50%);       /* Pin it to the far right */
            margin-right: 20px;

        }

        .header-container {
            display: flex;
            justify-content: center; /* Centers the logo in the middle */
            align-items: center;
            position: relative;
            width: 100%;
            padding: 1rem;
        }

        .logo-container img {
            max-width: 225px;
            height: 50px;
        }

        }