#mobile{
    transition: opacity 0.3s ease-in-out;
}

.menu-mobile {
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.menu-button {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    position: relative;
    z-index: 1100;
}

.menu-button span {
    width: 30px;
    height: 3px;
    background: #d76f19;
    position: relative;
    transition: all 0.3s;
}

.menu-button span::before,
.menu-button span::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #d76f19;
    transition: all 0.3s;
}

.menu-button span::before {
    top: -10px;
}
.menu-button span::after {
    top: 10px;
}
.menu-button.active span {
    background: transparent;
}
.menu-button.active span::before {
    transform: rotate(45deg);
    top: 0;
}
.menu-button.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

.sidebar {
    position: absolute;
    top: 0;
    right: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

.sidebar.active {
    transform: translateX(-10px);
}

.sidebar a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

