/* ==========================================================================
   Navigation & Top Bar Layout - Urbania King
   ========================================================================== */

/* Universal Reset Box Sizing for Header */
.top-bar-wrapper, 
.nav-wrapper, 
.top-bar-wrapper *, 
.nav-wrapper * {
    box-sizing: border-box;
}

/* --- Mobile responsive menu styles --- */
.menu-toggle-label {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #102a43;
    user-select: none;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        width: 100%;
        flex-direction: column;
        gap: 10px !important;
        padding-top: 15px;
    }
    .nav-links a {
        width: 100%;
        text-align: center;
    }
    .menu-toggle-label {
        display: block !important;
    }
    #menu-toggle:checked ~ .nav-links {
        display: flex !important;
    }
}

/* --- Top Bar Styles --- */
.top-bar-wrapper {
    width: 100%;
    background-color: #0b1528;
    border-bottom: 2px solid #3a86ff;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-tagline {
    font-size: 13px;
    font-weight: 600;
    color: #8ecae6;
    letter-spacing: 0.5px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-bar-phone {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar-phone span {
    color: #8ecae6;
}

.top-bar-whatsapp {
    color: #25D366;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* --- Main Navigation Styles --- */
.nav-wrapper {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e4e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-logo {
    font-size: 26px;
    font-weight: 800;
    color: #102a43;
    letter-spacing: 1.5px;
}

.nav-logo .brand-highlight {
    color: #3a86ff;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: #102a43;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Active/Home Link Specific Style */
.nav-links a.active-link {
    color: #ffffff;
    background-color: #3a86ff;
}