/* Header Solid Background Styles */
.header-solid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 50%, #1a4d2e 100%);
    z-index: 1;
}

/* Modern Header Full Width */
.modern-header {
    width: 100vw !important;
    margin: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    min-height: 90px;
    padding: 1rem 0;
    background: #1a4d2e !important; /* Solid dark green */
}

.modern-header .container-fluid {
    max-width: none !important;
    width: 100% !important;
    padding: 0 2rem !important;
    margin: 0 !important;
    position: relative;
    z-index: 10;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

/* Modern Brand Styling with Solid Background */
.modern-brand {
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.modern-brand-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff !important;
}

.modern-brand-logo {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Navigation with Solid Background */
.modern-nav {
    position: relative;
    z-index: 10;
}

.modern-nav-link {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* CTA Button with Solid Background */
.modern-cta {
    position: relative;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Toggle with Solid Background */
.modern-mobile-toggle {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for header solid background */
@media (max-width: 768px) {
    .header-solid-background {
        background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    }
    
    .modern-header {
        min-height: 75px;
        padding: 0.8rem 0;
    }
    
    .modern-brand-text {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .header-solid-background {
        background: #2c5530;
    }
    
    .modern-header {
        min-height: 65px;
        padding: 0.6rem 0;
    }
    
    .modern-brand-text {
        font-size: 1rem !important;
    }
}