/* ===================================================
   ROYA PLATFORM
   NAVBAR
=================================================== */

.roya-navbar {
    background: linear-gradient(
        90deg,
        #0D1B3D 0%,
        #1E88E5 100%
    );

    padding: 10px 0;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

    transition: 0.3s;
}


/* ===================================================
   CONTAINER
=================================================== */

.roya-navbar .container {
    display: flex;
    align-items: center;
}


/* ===================================================
   LOGO
=================================================== */

.roya-navbar .navbar-brand {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    text-decoration: none;
}

.roya-navbar .roya-brand-logo {
    display: block;

    width: auto;
    height: 92px;

    max-width: 230px;

    object-fit: contain;
    object-position: center;
}


/* ===================================================
   MENU
=================================================== */

.roya-navbar .navbar-collapse {
    align-items: center;
}

.roya-navbar .navbar-nav {
    align-items: center;
}

.roya-navbar .nav-link {
    position: relative;

    margin-left: 18px;

    padding: 12px 4px !important;

    color: rgba(255, 255, 255, 0.92) !important;

    font-size: 18px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.roya-navbar .nav-link:hover {
    color: #FFD166 !important;
    transform: translateY(-1px);
}

.roya-navbar .nav-link.active {
    color: #FFD166 !important;
    font-weight: 800;
}


/* الخط الذهبي تحت الصفحة النشطة */

.roya-navbar .nav-link.active::after {
    content: "";

    position: absolute;

    right: 15%;
    bottom: 2px;

    width: 70%;
    height: 3px;

    border-radius: 10px;

    background: #FFD166;
}


/* ===================================================
   MENU BUTTON
   مخفي على الكمبيوتر
=================================================== */

.roya-navbar .navbar-toggler {
    display: none !important;
}


/* ===================================================
   TABLET + MOBILE
=================================================== */

@media (max-width: 991.98px) {

    .roya-navbar {
        padding: 8px 0;
    }

    .roya-navbar .roya-brand-logo {
        display: block !important;

        height: 76px;
        width: auto;

        max-width: 190px;

        object-fit: contain;
    }

    /* إظهار زر القائمة فقط على الشاشات الصغيرة */

    .roya-navbar .navbar-toggler {
        display: flex !important;

        width: 58px !important;
        height: 58px !important;

        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;

        border: 2px solid rgba(255, 255, 255, 0.75) !important;
        border-radius: 12px !important;

        background: rgba(255, 255, 255, 0.08) !important;

        box-shadow: none !important;
    }

    .roya-navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.25) !important;
    }

    /* الخطوط الثلاثة */

    .roya-menu-lines {
        width: 30px;
        height: 24px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .roya-menu-lines span {
        display: block !important;

        width: 30px !important;
        height: 4px !important;

        background: #ffffff !important;

        border-radius: 6px;

        opacity: 1 !important;
        visibility: visible !important;
    }

    /* القائمة بعد فتحها */

    .roya-navbar .navbar-collapse {
        margin-top: 12px;

        padding: 14px 18px;

        border-radius: 12px;

        background: rgba(13, 27, 61, 0.96);
    }

    .roya-navbar .navbar-nav {
        align-items: stretch;
    }

    .roya-navbar .nav-link {
        margin: 2px 0;

        padding: 10px 6px !important;

        text-align: right;
    }

    .roya-navbar .nav-link.active::after {
        display: none;
    }
}


/* ===================================================
   MOBILE
=================================================== */

@media (max-width: 575.98px) {

    .roya-navbar {
        padding: 6px 0;
    }

    .roya-navbar .roya-brand-logo {
        height: 62px;
        width: auto;

        max-width: 155px;
    }

    .roya-navbar .navbar-toggler {
        width: 56px !important;
        height: 56px !important;
    }

    .roya-menu-lines {
        width: 28px;
        height: 22px;
    }

    .roya-menu-lines span {
        width: 28px !important;
        height: 4px !important;
    }

    .roya-navbar .nav-link {
        font-size: 17px;
    }
}