﻿:root,
[data-bs-theme=light] {
    --primary-theme: #0f054c !important;
    --secondary-theme: #00caeb !important;
    --tertiary-theme: #ebfaff !important;
}

.menu-btn {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
    color: #faebd7;
}

    .menu-btn.hide {
        display: none;
    }

/* ================= MOBILE SLIDE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-theme);
    transition: 0.4s ease;
    z-index: 999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .mobile-menu.active {
        right: 0;
    }

/* ================= MENU HEADER ================= */

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: 250px;
}

    .logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.close-btn {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

/* ================= MENU LINKS ================= */

.menu-links {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

    /* Optional: Hide scrollbar */

    .menu-links::-webkit-scrollbar {
        width: 0;
    }

.menu-links {
    scrollbar-width: none;
}

    .menu-links li {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 14px 0;
    }

    .menu-links a {
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        display: block;
    }

/* ================= SUBMENU ================= */

.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
}

    .submenu li {
        border: none;
        padding: 8px 0;
        border-radius: 10px;
    }

    .submenu a {
        font-size: 16px;
        color: #373636;
    }

/* ================= SOCIAL ICONS ================= */

.social-icons {
    flex-shrink: 0;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

    .social-icons i {
        color: #fff;
        margin: 0 12px;
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

        .social-icons i:hover {
            transform: scale(1.1);
        }

/* ================= HIDE ON DESKTOP ================= */

@media (min-width: 992px) {
    .menu-btn,
    .mobile-menu {
        display: none;
    }
}
