/* Navigation Landing Specific Styles */
.premium-header.scrolled {
    background: var(--primary-navy) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.premium-header {
    border-bottom: 1px solid rgba(184, 115, 51, 0.3) !important;
}

.nav-landing-header {
    background: var(--primary-navy) !important;
    backdrop-filter: none !important;
}

.nav-landing-icon {
    color: var(--accent-copper);
}

.nav-landing-name {
    color: white !important;
}

.nav-landing-tagline {
    color: var(--accent-copper);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .premium-header {
        padding: 0.5rem 0;
    }
    
    .nav-landing-name {
        font-size: 0.8rem !important;
    }
    
    .nav-landing-tagline {
        font-size: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .nav-landing-name {
        font-size: 0.7rem !important;
    }
    
    .nav-landing-tagline {
        font-size: 0.45rem !important;
    }
}

@media (max-width: 375px) {
    .nav-landing-name {
        font-size: 0.65rem !important;
    }
    
    .nav-landing-tagline {
        font-size: 0.4rem !important;
    }
}