/* Header Common Styles */
.landing-header {
    background: #242526;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 12px;
    /* حواف مستديرة */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e4e6eb;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e4e6eb;
    border: 1px solid #3a3b3c;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #e4e6eb;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-header {
        padding: 15px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 5px;
    }

    .auth-buttons {
        gap: 8px;
    }
}