/* Smart Sticky Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header.header-visible {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* إضافة padding للـ body لتعويض الهيدر الثابت */
body {
    padding-top: 140px; /* ارتفاع الهيدر تقريباً */
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }
}
