/* Mobile Menu Styles */
#mobile-menu .fixed.left-0.top-0 {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.hidden .fixed.left-0.top-0 {
    transform: translateX(-100%);
}

#mobile-menu:not(.hidden) .fixed.left-0.top-0 {
    transform: translateX(0);
}

/* Add hamburger menu animation */
#nav-icon {
    width: 30px;
    height: 25px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: currentColor;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2) {
    top: 10px;
}

#nav-icon span:nth-child(3) {
    top: 20px;
}

#nav-icon.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
} 