/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--accent-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-header ul {
        position: fixed;
        top: 90px;
        /* Below header */
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        padding-bottom: 2rem;
    }

    .main-header ul.active {
        left: 0;
    }

    .main-header ul li {
        margin: 1.5rem 0;
    }

    .main-header ul li a {
        font-size: 1.5rem;
    }
}