/* Global Landing Header Styles (Ported from landing.css) */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .landing-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .landing-header {
        top: 46px;
    }
}


.landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.landing-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.landing-nav .nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.landing-nav .nav-link:hover {
    color: #fff;
}

/* Landing specific buttons to avoid conflicts */
.btn-landing {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    display: inline-block;
}

.btn-landing.btn-outline {
    border: 1px solid #27272a;
    color: #fff;
    background: transparent;
}

.btn-landing.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-landing.btn-primary-glow {
    background: #ffffff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-landing.btn-primary-glow:hover {
    background: #e5e5e5;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* Responsive Landing Header */
@media (max-width: 768px) {
    .landing-header {
        padding: 0 20px;
        height: 64px;
    }

    .landing-nav {
        display: none;
        /* Can implement mobile menu later if needed, mostly used on desktop pages */
    }

    .landing-header {
        justify-content: center;
        width: 100%;
    }

    .landing-brand {
        margin: 0 auto;
    }
}