/* ===============================
   HEADER BASE STYLES
=============================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.3s ease, transform 0.3s ease-in-out;
    /* Shadow overlay from top, covering the header section */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.35) 80%,
        rgba(0,0,0,0.0) 100%
    );
    box-shadow: none; /* Remove bottom shadow, use only top overlay */
}

.header .container {
    display: flex;
    flex-direction: column;
    padding: 6px 24px 10px;
    row-gap: 12px; /* Add space between the two lines (location and navbar) */
}

/* Location strip */
.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 2px;
    margin-top: 15px;
    opacity: 0.85;
    letter-spacing: 0.2px;
    text-align: center;
}
.location-info i {
    margin-right: 8px;
    /* color: #C08A00; */
}

/* ===============================
   NAVIGATION
=============================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Links (Desktop default) */
.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0 auto;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease, font-weight 0.15s ease;
    padding: 5px 0;
    opacity: 0.95;
    font-family: 'Reem Kufi', sans-serif; /* Add Reem Kufi font for the menu content */
}
.nav-link:hover {
    /* color: #ffd700; */
    font-weight: 700;
}
.nav-link.active {
    font-weight: 700;
    /* color: #ffd700; */
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 6px 12px;
    font-family: 'Reem Kufi', sans-serif; /* Add font for the mobile menu icon/button too */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        margin-right: auto; /* forces it to left */
    }
    .navbar {
        justify-content: flex-start; /* align items to left */
        width: 100%;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        padding: 20px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        text-align: center;
    }
    .nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 15px;
    }
}