/* --- AM2PM PREMIUM STICKY HEADER --- */

/* 1. Header Container */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    background: transparent; /* Starts transparent */
}

/* 2. Scrolling State (Triggered when the user scrolls) */
.site-header.scrolled {
    background: #1e3a8a; /* Your Brand Navy */
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 3. Navigation Links */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: #ffffff; /* White text for the blue background */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #ffc107; /* Your Brand Gold on hover */
}

/* 4. "Get Started" Call-to-Action Button in Menu */
.menu-cta-button {
    background: #ffc107;
    color: #1e3a8a !important;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease !important;
}

.menu-cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* 5. Mobile Responsiveness */
@media (max-width: 768px) {
    .site-header {
        background: #1e3a8a; /* Solid Navy on mobile for readability */
        padding: 15px 20px;
    }
}