/* Insights Page - Solid Navigation Override */
.glass-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-nav .brand img {
    content: url('../images/brenton-logo-color.png');
}

.glass-nav .nav-links a {
    color: #1a1a1a !important;
}

.glass-nav .nav-links a:hover {
    color: #C9A55A !important;
}

.glass-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.glass-nav .dropdown-menu a {
    color: #1a1a1a !important;
}

.glass-nav .dropdown-menu a:hover {
    background: rgba(201, 165, 90, 0.1);
    color: #C9A55A !important;
}

.glass-nav .submenu-items {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.glass-nav .submenu-link {
    color: #1a1a1a !important;
}

.glass-nav .submenu-link:hover {
    background: rgba(201, 165, 90, 0.1);
    color: #C9A55A !important;
}

/* Language Selector */
.glass-nav .language-btn {
    color: #1a1a1a !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

.glass-nav .language-btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.25) !important;
}

.glass-nav .language-dropdown {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.glass-nav .language-option {
    color: #1a1a1a !important;
}

.glass-nav .language-option:hover {
    background: rgba(201, 165, 90, 0.1);
    color: #C9A55A !important;
}

/* Login Button */
.glass-nav .login-btn {
    background: rgba(10, 22, 40, 0.95) !important;
    border-color: rgba(10, 22, 40, 0.95) !important;
    color: #ffffff !important;
}

.glass-nav .login-btn:hover {
    background: rgba(10, 22, 40, 1) !important;
    border-color: rgba(10, 22, 40, 1) !important;
}

/* Mobile Toggle */
.glass-nav .mobile-toggle span {
    background: #1a1a1a !important;
}

/* Scrolled State - Keep solid */
.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .glass-nav .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .glass-nav .nav-links a {
        color: #1a1a1a !important;
    }
}

/* Insights Hero Section */
.insights-hero {
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-insights-new.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.insights-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 22, 40, 0.75) 0%, 
        rgba(10, 22, 40, 0.65) 50%, 
        rgba(10, 22, 40, 0.8) 100%
    );
    z-index: 1;
}

.insights-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.insights-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.insights-hero-eyebrow .eyebrow-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, rgba(201, 165, 90, 0.8), rgba(201, 165, 90, 0));
}

.insights-hero-eyebrow .eyebrow-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
}

.insights-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.insights-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.insights-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .insights-hero {
        height: 75vh;
        min-height: 550px;
    }

    .insights-hero-title {
        font-size: 42px;
    }

    .insights-hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .insights-hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .insights-hero-content {
        padding: 0 24px;
    }

    .insights-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .insights-hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .insights-hero-eyebrow .eyebrow-text {
        font-size: 10px;
    }

    .insights-hero-scroll {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .insights-hero {
        height: 65vh;
        min-height: 450px;
    }

    .insights-hero-content {
        padding: 0 20px;
    }

    .insights-hero-title {
        font-size: 28px;
    }

    .insights-hero-subtitle {
        font-size: 14px;
    }
}
