/* NAVBAR SPECIFIC STYLES - UK PRECIOUS */

.navbar-custom {
    transition: all 0.4s ease-in-out;
    padding: 20px 0;
    background: transparent;
    z-index: 1200;
}

/* Scrolled State - Changes to white background */
.navbar-scrolled {
    background-color: #ffffff !important;
    padding: 10px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand { 
    font-family: 'Inter', sans-serif; 
    font-size: 1.5rem; 
    color: #ffffff !important; 
    letter-spacing: 1px;
}

.navbar-scrolled .navbar-brand { color: #002741 !important; }

.navbar-custom .nav-link {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #ffffff !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Color adjustments for light background (scrolled) */
.navbar-scrolled .nav-link { color: #444 !important; }
.navbar-scrolled .nav-link:hover, 
.navbar-scrolled .nav-link.active { color: #00d2ff !important; }

/* Active Highlight */
.navbar-custom .nav-link.active { color: #00d2ff !important; }

/* Mobile Toggler */
.navbar-toggler { border: none; }
.navbar-custom .navbar-toggler-icon { filter: invert(1); }
.navbar-scrolled .navbar-toggler-icon { filter: none; }

@media (max-width: 991px) {
    .navbar-collapse { 
        background-color: #ffffff; 
        padding: 20px; 
        border-radius: 8px; 
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .navbar-collapse .nav-link { 
        color: #002741 !important; 
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }
}