.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    z-index: 9999;
    background: rgba(25, 25, 25, 0.55);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}


/* LEFT SIDE */

.left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.logo img {
    height: 3vw;
    border-radius: 25%;

}


.logo p {
    margin: 0;
    font-size: 1.5vw;
    font-weight: 600;
    font-family: 'Bebas Neue', sans-serif;
    color: rgb(229, 69, 69);
    letter-spacing: 0.1vw;
}

/* RIGHT SIDE */

.right {
    display: flex;
    align-items: center;

}

/* NAV LINKS */

.right .section {
    display: flex;
    gap: 3vw;
    max-width: 100%;
}

.right .section a {
    text-decoration: none;
    color: white;

}

.right .section a p {
    font-size: 1vw;

        font-weight: 600;
        letter-spacing: 0.5px;
      
}

.right .section a:hover {
    color: #ff4d4d;
}

.right .section p {
    font-size: 1.5vw;
}


/* HAMBURGER */

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 6000;
}

.hamburger i {
    font-size: 32px;
}

/* CLOSE BUTTON */

.close-btn {
    display: none;
}

.close-btn i {
    color: rgb(124, 38, 38);
    font-size: 28px;
}

.navbar {
    height: 80px;
}

.left,
.right {
    height: 100%;
}


/* ================================
        MOBILE MENU
================================ */

@media (max-width: 480px) {

    .hamburger {
        display: block;
        margin-right: 20px;
        color: white;
    }

    .right .section {
        width: 85%;
        max-width: 340px;
        height: 100vh;

        background: linear-gradient(180deg, #050505, #111);

        position: fixed;
        top: 0;
        left: 0;

        transform: translateX(-100%);
        transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);

        z-index: 12000;

        padding: 90px 30px;

        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* ACTIVE */
    .right .section.active {
        transform: translateX(0);
    }



    .close-btn {
        display: block;
        align-self: flex-end;
    }

    .right .section a p {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-left: 20px;
    }

    .right .section a {
        opacity: 0;
        transform: translateX(-20px);
    }

   
    .right .section.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .right .section.active a:nth-child(2) {
        transition-delay: 0.1s;
    }

    .right .section.active a:nth-child(3) {
        transition-delay: 0.4s;
    }

    .right .section.active a:nth-child(4) {
        transition-delay: 0.6s;
    }

    .right .section.active a:nth-child(5) {
        transition-delay: 0.8s;
    }

    .right .section.active a:nth-child(6) {
        transition-delay: 1s;
    }

    .right .section a {
        transition: 0.4s ease;
    }

    .left .logo p {
        font-size: 24px;
    }

    .left .logo img {
        height: 40px;
    }
}