/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-red);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-red);
}

@media (max-width: 768px) {


    .grid-column {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(10, 0, 0, 0.98);
        border-top: 1px solid var(--neon-red);
        padding: 1rem 0;
        box-shadow: 0 10px 20px var(--shadow-red);

    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        margin: 0.5rem 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        /* Ensure it's above menu when open */
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .card {
        padding: 1rem;
        margin: 1rem 0.5rem;
    }

    .card-content,
    .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .text {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .image {
        justify-content: center;
        flex: unset;
        width: 100%;
    }

    .image img {
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .title h1,
    .title p {
        font-size: 1.2rem;
    }

    .hero-container {
        padding: 1rem;
    }

    .notification {
        width: 90%;
        font-size: 0.8rem;
    }

    section {
        padding: 2rem 1rem;
    }
}