/* layout/header/header.css */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .logo {
    font-size: 22px;
    font-weight: bold;
    color: #0284c7;
    text-decoration: none;
}

.site-header .logo:hover {
    color: #0369a1;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-nav ul li a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.site-nav ul li a:hover {
    color: #0284c7;
}

/* تنسيق نموذج البحث في الهيدر */
.header-search-form {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 4px 10px;
    border: 1px solid #cbd5e1;
}

.header-search-form input {
    border: none;
    background: transparent;
    padding: 6px;
    font-size: 14px;
    outline: none;
    color: #334155;
    width: 180px;
}

.header-search-form button {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 6px;
    font-size: 14px;
    transition: color 0.2s;
}

.header-search-form button:hover {
    color: #0284c7;
}

/* Responsive design for Header */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }
    .site-nav ul {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .header-search-form {
        width: 100%;
    }
    .header-search-form input {
        width: 100%;
    }
}