/* Use the Inter font family */
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* --- NEW HEADER STYLES --- */
#header.scrolled {
    background-color: #ffffff; /* solid white */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}
.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-button {
    background-color: #F97316; /* brand-orange */
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    margin-left: 12px;
    transition: background-color 0.3s;
    text-decoration: none;
}
.nav-button:hover {
    background-color: #FB923C; /* lighter orange */
}

/* Scrolled State Styles */
#header.scrolled .nav-link {
    color: #0A2342; /* navy */
}
#header.scrolled .nav-link:hover {
    background-color: #f1f5f9; /* light gray */
}
#header.scrolled .text-brand-orange {
    color: #0A2342; /* navy */
}
#header.scrolled #mobile-menu-button {
    color: #0A2342; /* navy */
}

/* Mobile Menu Links */
.mobile-nav-link {
    display: block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}