/**
 * Header 2 Simple - CSS بسيط ونظيف
 */

/* Header Container */
.header-2-modern {
    display: block;
    width: 100%;
}

/* Header Container Inner */
.header-2-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    height: 100%;
}

.header-2-home-section,
.header-2-datetime-section,
.header-2-social-section,
.header-2-search-section {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sections */
.header-2-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
}

/* Home Link */
.header-2-home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
}

.header-2-home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.header-2-home-text {
    font-weight: 600;
}

/* Date Time */
.header-2-datetime {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
}

.header-2-date {
    font-size: 13px;
    font-weight: 500;
}

.header-2-time {
    font-size: 14px;
    font-weight: 700;
}

/* Social Links */
.header-2-social-nav {
    display: flex;
    gap: 8px;
}

.header-2-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    transition: transform 0.2s;
}

.header-2-social-link:hover {
    transform: translateY(-2px);
}

.header-2-social-link svg {
    width: 18px;
    height: 18px;
}

/* Search */
.header-2-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.header-2-search-input {
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 280px;
    font-size: 14px;
}

.header-2-search-btn {
    position: absolute;
    right: 5px;
    background: #00A859;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-2-search-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile Hide */
@media (max-width: 768px) {
    .header-2-modern {
        display: none !important;
    }
}

