@import url('medical_modern.css');
/*----------------------------- Media Screen (Mobile & Tablet) -----------------------------*/
@media (max-width: 991px) {
    
    /* إظهار زر القائمة */
    #menu-btn {
        display: inline-block !important;
        font-size: 2rem;
        margin-right: 1rem;
        color: var(--main-color);
    }

    /* تحويل الهيدر ليكون مرناً أكثر */
    .header-flex {
        justify-content: space-between;
        padding: 1rem 5%;
    }

    /* تنسيق القائمة المنسدلة (Navbar) */
    .navbar {
        position: absolute;
        top: 100%; 
        right: 0;
        left: 0;
        background-color: #fff;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
        /* إخفاء القائمة مبدئياً */
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* عندما يتم الضغط على زر القائمة (Active) */
    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .navbar a {
        display: block;
        margin: 10px 20px;
        padding: 12px;
        background-color: #f8f9fa;
        text-align: center;
        border-radius: 8px;
        font-size: 1.1rem !important;
        color: #333;
        transition: 0.3s;
    }

    .navbar a:hover {
        background-color: var(--main-color);
        color: #fff !important;
    }

    /* تنسيق صندوق البروفايل والأزرار في الجوال */
    .profile {
        position: absolute;
        top: 100%;
        left: 5%;
        right: 5%;
        background-color: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        text-align: center;
        display: none; /* يظهر عبر الـ JS عند الضغط على user-btn */
        z-index: 1001;
    }

    .profile.active {
        display: block;
    }

    .profile .flex-btn {
        flex-direction: column;
        gap: 10px;
    }

    .profile .btn {
        width: 100%;
        margin: 5px 0;
    }

    /* تصغير حجم اللوجو قليلاً في الجوال */
    .logo img {
        width: 80px;
    }
}
