.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #ffbc02; /* Matches text-theme-yellow */
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul li a {
    color: #252525;
    font-size: 1.1rem;
}

.mobile-menu ul li a:hover {
    color: #ffbc02; /* Matches theme-yellow */
}