/* ============================
   MENU WRAPPER
   ============================ */
.my-menu {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.menu-logo {
    height: 50px;
    max-width: 150px;
    flex-shrink: 0;
}


/* ============================
   DESKTOP NAV LINKS
   ============================ */
.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}


/* ============================
   NEON PINK HOVER
   ============================ */
.nav-links a:hover {
    color: #ff00c8 !important;
    text-shadow: 0 0 6px #ff00c8,
                 0 0 12px #ff00c8,
                 0 0 18px #ff00c8;
}


/* ============================
   ACTIVE PAGE (NEON ALWAYS)
   ============================ */
.nav-links a.active {
    color: #ff00c8 !important;
    text-shadow: 0 0 6px #ff00c8,
                 0 0 12px #ff00c8,
                 0 0 18px #ff00c8;
}

.nav-links a.active:hover {
    text-shadow: 0 0 10px #ff00c8,
                 0 0 20px #ff00c8,
                 0 0 30px #ff00c8;
}


/* ============================
   HAMBURGER (VISIBLE!)
   ============================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: #cbd5e1; /* visible light gray */
    border-radius: 4px;
    display: block;
}

/* Make the lines glow on hover */
.hamburger:hover span {
    background: #ff00c8;
    box-shadow: 0 0 6px #ff00c8,
                0 0 12px #ff00c8;
}


/* ============================
   MOBILE MENU
   ============================ */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px;
        gap: 18px;
        display: none;
        box-sizing: border-box;
        border-top: 2px solid #ff00c8;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 22px;
        text-align: center;
        padding: 10px 0;
    }

    .menu-logo {
        max-width: 120px;
    }
}


/* ============================
   PREVENT ANY HORIZONTAL SCROLL
   ============================ */
html, body {
    overflow-x: hidden;
}
