/* Public Header Styles */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    background: rgba(10, 14, 26, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff !important;
    text-decoration: none !important;
}

.logo:hover {
    color: #fff !important;
}

.header-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-links .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.2s;
}

.nav-links .btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7) !important;
}

.nav-links .btn-ghost:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links .btn-primary {
    background: #6C5CE7;
    color: #fff !important;
}

.nav-links .btn-primary:hover {
    background: #5b4cdb;
    transform: translateY(-1px);
    color: #fff !important;
}

@media (max-width: 640px) {
    .landing-header {
        padding: 0.75rem 1rem;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .header-logo-img {
        height: 28px;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .nav-links .btn-ghost {
        display: none;
    }
}

