/* Header Component - Minimal custom styles (Tailwind handles most) */

/* Mobile Drawer */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.mobile-drawer-overlay.open {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    direction: rtl;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #1A3263;
    cursor: pointer;
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-drawer nav a {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-drawer nav a:hover {
    color: #1A3263;
}

.mobile-drawer-btn {
    margin-top: 1.5rem;
    background: #1A3263;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}

.mobile-drawer-btn:hover {
    background: #0f1f3d;
}