html,
*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: background-color .5s ease-in-out;
}

.container-navbar {
    width: 85%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-navbar img {
    width: 4rem;
}

.container-navbar button {
    display: none;
    color: white;
    outline: none;
}

.container-navbar div ul {
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    gap: 1vw;
}

.navbar-icon{
    display: none;
}

.container-navbar div ul li a:hover {
    opacity: .8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.menu-toggle input {
    position: absolute;
    width: 43px;
    height: 28px;
    opacity: 0;
    left: -8px;
    top: -8px;
    cursor: pointer;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: .5s;
}

.menu-toggle span:nth-child(2) {
    transform-origin: 0 0;
}

.menu-toggle span:nth-child(4) {
    transform-origin: 0 100%;
}

.menu-toggle input:checked~span:nth-child(2) {
    transform: rotate(45deg) translate(-1px, -1px);
}

.menu-toggle input:checked~span:nth-child(4) {
    transform: rotate(-45deg) translate(-1px, 0);
}

.menu-toggle input:checked~span:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

.img-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

header .img-header>* {
    position: relative;
    z-index: 2;
}

#background-section {
    position: relative;
}

#background-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 20, 0, 0.2);
    z-index: 1
}

#background-section>div {
    position: relative;
    z-index: 2;
}

.btn {
    background: rgba(0, 0, 0, 0.2)
}


#suite::-webkit-scrollbar {
    display: none;
}

#executive::-webkit-scrollbar {
    display: none;
}

#deluxe::-webkit-scrollbar {
    display: none;
}

#family::-webkit-scrollbar {
    display: none;
}

#exclusive::-webkit-scrollbar {
    display: none;
}

#cottage::-webkit-scrollbar {
    display: none;
}

#cottagee::-webkit-scrollbar {
    display: none;
}

#buton {
    display: none; 
}

#buton.show {
    display: block; 
}

@media screen and (min-width: 832px) {
    #kamarDekstop {
        display: block;
    }

    #kamarMobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .container-navbar{
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .container-navbar div ul li {
        background-color: transparent;
    }

    .container-navbar div ul li:first-child  {
        margin-top: 7.5rem;
    }
    
    .navbar-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        gap: 1rem;
        display: flex;
    }
    
    .navbar-icon i{
        font-size: 1.5rem;
        overflow: hidden;
    }   

    .container-navbar div ul {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 50%;
        flex-direction: column;
        align-items: center;
        gap: 2em;
        transform: translateX(100%);
        transition: all 1s;
        opacity: 0;
        background-color: #111;
    }
    
    .container-navbar ul.slide {
        opacity: 1;
        transform: translateX(0);
    }

    .mid{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}