/* Landing Page Navbar Styles */

.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 11, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 0;
}

.landing-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white !important;
    text-decoration: none;
}

.landing-navbar .navbar-brand > span,
.landing-navbar .navbar-brand > text,
.landing-navbar .navbar-brand::after,
.landing-navbar .navbar-brand::before {
    display: none !important;
    visibility: hidden !important;
    content: none !important;
}

.landing-navbar-logo,
.landing-navbar .navbar-brand img {
    /* Height-first sizing keeps wide wordmarks readable; width follows aspect ratio. */
    height: clamp(42px, 5.2vh, 52px) !important;
    width: auto !important;
    max-width: min(340px, 72vw) !important;
    min-height: 38px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .landing-navbar-logo,
    .landing-navbar .navbar-brand img {
        height: clamp(36px, 9vw, 44px) !important;
        max-width: min(280px, 78vw) !important;
        min-height: 34px;
    }

    .nav-cta {
        gap: 0.45rem;
    }
}

