.simple-nav {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(13, 18, 29, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.75rem 2rem;
    z-index: 10000;
    display: flex;
    justify-content: flex-end;
    width: auto;
    border-bottom-left-radius: 10px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--accent-cyan);
}

.nav-menu a.active {
    color: var(--accent-cyan);
}

.nav-cta {
    background-color: rgba(106, 226, 255, 0.8);
    color: #0D121D !important;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

.nav-cta:hover {
    background-color: var(--accent-cyan);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s ease;
}

/* Remove padding from hero section in desktop view */
#hero {
    padding-top: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .nav-menu {
        position: fixed;
        flex-direction: column;
        align-items: center;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        padding-top: 5rem;
        background-color: rgba(13, 18, 29, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        gap: 1.5rem;
    }

    .nav-menu.show {
        right: 0;
    }

    .simple-nav {
        width: 100%;
        justify-content: flex-end;
        padding: 1rem;
        border-radius: 0;
    }

    /* Add padding to the hero section in mobile view */
    #hero {
        padding-top: 3.5rem;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
