/* Mobile Menu Styles */
.burger-btn {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.burger-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #9CA3AF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn span:nth-child(1) { top: 0; }
.burger-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-btn span:nth-child(3) { bottom: 0; }

/* Active state */
.burger-btn.burger-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.burger-btn.burger-active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.burger-active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; /* Height of the header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(8px);
    z-index: 40;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-open {
    transform: translateX(0);
}

.mobile-menu nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-size: 1.125rem;
    color: #D1D5DB;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #34D399;
}

.no-scroll {
    overflow: hidden;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        bottom: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(8px);
        z-index: 40;
        padding: 2rem;
    }

    .menu.menu-open {
        display: block;
    }

    .menu.menu-open .ml-10 {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .menu.menu-open a {
        font-size: 1.25rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .burger-btn {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
        cursor: pointer;
        padding: 0;
        background: transparent;
        border: none;
    }

    .burger-btn i {
        transition: transform 0.3s ease;
    }

    .burger-btn.is-active i {
        transform: rotate(90deg);
    }
} 