/*
======================================================
2. HEADER - UPDATED
======================================================
*/
.header-new {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 0; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-gray);
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- NEW LOGO STYLES --- 
  This creates the [Logo] [Name+Tagline] layout
*/
.header-logo-wrapper {
    flex: 1; /* Allows the logo area to take up space */
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between logo and text */
    text-decoration: none;
}

.site-logo {
    height: 45px; /* <-- CHANGE THIS (e.g., from 35px to 45px) */
    width: auto;
    display: block;
}

.site-identity {
    display: flex;
    flex-direction: column;
}

/* In css/header.css, find this rule */
.site-name {
    font-family: 'Space Grotesk', sans-serif; /* --- ADD THIS LINE --- */
    font-size: 2rem; 
    font-weight: 900;
    color: var(--primary-accent);
    line-height: 1.1;
}

.site-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-gray);
    line-height: 1.1;
}
/* --- END OF NEW LOGO STYLES --- */


.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav-links {
    display: flex;
    gap: 2rem;
}

.header-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.header-nav-links a:hover,
.header-nav-links a.active {
    color: var(--primary-accent-dark);
    font-weight: 700;
}

.header-nav-buttons {
    display: flex;
    gap: 0.5rem;
}

/* --- SMALLER BUTTON SIZE --- */
.header-nav-buttons .btn-primary {
    padding: 0.6rem 1.2rem; /* Reduced padding */
    font-size: 0.85rem; /* Reduced font size */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-dark);
}

/* --- Mobile Menu Styles (Cleaned up) --- */
@media (max-width: 900px) {
    .header-nav {
        display: none; /* Hide by default */
        position: absolute;
        top: 100%; /* Position right below header */
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        width: 100%;
        padding: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid var(--border-gray);
    }

    .header-nav.is-active {
        display: flex; /* Show when active */
    }

    .header-nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.5rem;
    }

    .header-nav-links a {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .header-nav-buttons {
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .header-nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block; /* Show the burger icon */
    }

    /* Adjust logo/tagline on mobile */
    .site-name {
        font-size: 1.5rem;
    }
    .site-tagline {
        font-size: 0.8rem;
    }
    .site-logo {
    height: 45px; /* --- LOGO SIZE --- (Adjust as needed) */
    width: auto;
    display: block;
}
}