/**********SCROLL BAR **************** */
/* Width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000000;
  /* border-radius: 5px; */
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: #474747;
  border-radius: 10px;
}

/* Thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #6a6a6a;
}

/* ========================================= */
/* ==========   MOBILE VIEW 480px  ========= */
/* ========================================= */

@media (max-width: 480px) {}

/* mobile menu style */
.mobile-menu {
    position: fixed !important;
    /* fixed to viewport */
    top: 0 !important;
    right: -100% !important;
    /* hidden by default */
    width: 80% !important;
    max-width: 420px !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.697) !important;
    backdrop-filter: blur(16px);
    color: #fff !important;
    padding: 2rem !important;
    transition: right 0.35s ease !important;
    z-index: 2147483646 !important;
    /* extremely high z-index */
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.6) !important;
    overflow-y: auto !important;
}
.mobile-menu ul{
    list-style: none !important;
}
.mobile-menu ul li {
    padding: 1rem;
}

.mobile-menu ul li a {
    font-family: "Quattrocento Sans", sans-serif;
    text-decoration: none;
    color: rgb(54, 54, 54);
    font-weight: bolder;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a::after,
.mobile-menu ul li a:focus {
    transform: scale(1.2);
    border-radius: 2px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(105deg, #6666FF, #FF4750, #6666FF) 1;
    transition: all 1s ease-out;
}

/* When open */
.mobile-menu.open {
    right: 0% !important;
}

/* Menu button should float above everything */
#menuBtn {
    position: fixed !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 2147483647 !important;
    /* one above menu */
    background: transparent !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: end !important;
}

.menu-btn img {
    width: 24px;
    height: 24px;
}

/* In case GSAP adds spacer class names */
.pin-spacer,
.gsap-pin-spacer,
.gsap-pin-spacer * {
    z-index: 1 !important;
    /* push pin spacers behind the menu */
    position: relative !important;
}

/* Small overlay to dim content when menu open (optional) */
.body-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2147483645;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.body-menu-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* hide desktop nav on mobile if desired */
#menuBtn {
    display: none !important;
}

@media (max-width: 768px) {
    #nav-right {
        display: none !important;
    }

    #menuBtn {
        display: flex !important;
    }

    /* if you used .menu-btn elsewhere */
}