/* Hamburger Menu Fix */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #FF6B00; /* Orange color */
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    transform-origin: center;
}

/* Hover state */
.hamburger:hover span {
    background-color: #ff8c42; /* Lighter orange on hover */
}

/* Active state for hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Ensure the hamburger is visible on all backgrounds */
.header .hamburger {
    position: relative;
    z-index: 1001;
}

/* Make sure the hamburger is visible on the header */
.header {
    position: relative;
    z-index: 1000;
}
