.mobile-nav {
    height: 100vh;
    width: 100vw;
    background: rgba(110, 7, 243);
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    font-family: 'kayak', sans-serif;
    font-size: 20px;
}

/* Open state */
.mobile-nav.open {
    transform: translateX(0);
}


.butt-res-con a{
    text-decoration: none;
    color: inherit;
} 

.nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.close-btn {
    height: 30px;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* Navigation List */
.nav-list {
    list-style: none;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-list li {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: white;
    border-radius: 8px;
}

