/* hamburger.css */
/* Hamburger Menu Styles */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-icon {
    width: 40px;
    height: 40px;
    background-color: #FFD700; /* Yellow color */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hamburger-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    z-index: 999;
    transition: right 0.3s ease;
    padding-top: 70px;
}

.menu-overlay.active {
    right: 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.menu-items a {
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.menu-items a i {
    margin-right: 10px;
    color: #FFD700;
}

.menu-items a:hover {
    color: #FFD700;
}

/* Animation for hamburger icon when active */
.hamburger-icon.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 15px;
        right: 15px;
    }
    
    .hamburger-icon {
        width: 35px;
        height: 35px;
    }
}