@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    flex-direction: column;
    font-family: 'Poppins, sans-serif';
    padding: 0;
    margin: 0;
    background: #F6F1ED;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #F6F1ED;
    padding: 5px;
    font-weight: bolder;
    gap: 250px;
    height: 11vh;
    width: 100%;
    z-index: 5;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #1C1D21;
    border-radius: 10px;
}

.logo > img {
    width: 150px;
    height: 75px;
    /* width: 100px; */
    /* padding-top: 5px; */
}

.list ul {
    cursor: pointer;
    margin: 0;
    padding: 0;
    display: flex;
}

.list li {
    line-height: 40px;
    margin: 15px;
    list-style: none;
}

.list li a {
    color: #000;
    display: inline;
    text-decoration: none;
}

.list li a:hover, .list li a:active {
    color: #CBA044;
    border-bottom: 2px solid #CBA044;
}

#book {
    color: #fff;
    background-color: #CBA044;
    padding: 10px 25px;
}

#book:hover {
    color: #1C1D21;
    outline: 2px solid #CBA044;
    border-bottom: none;
    background-color: transparent;
    cursor: pointer;
}

body nav {
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
}

.about {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 110px;
}

.image {
    text-align: center;
}

.image > img {
    width: 90vw;
    height: 75vh;
    border-radius: 5px;
    margin: auto;
}

h1 {
    margin: .5rem 5rem;
    color: #CBA044;
}

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

.line {
    margin: 50px;
    background-color: #CBA044;
    width: 95%;
    height: 2px;
}

h3 {
    margin-left: 50px;
    font-size: 29px;
    color: #980000;
}

.text {
    padding: 30px;
}

.text p {
    margin-left: 20px;
    font-size: 22px;
    padding: 5px;
}

footer {
    display: flex;
    justify-content: space-around;
    background-color: #1C1D21;
    padding: 40px;
    gap: 650px;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 0px;
}

.hotel-logo > img {
    width: 200px;
}

.link {
    display: flex;
    margin-top: 12px;
}

.link a {
    font-size: 35px;
    margin: 10px;
    color: #fff;
    cursor: pointer;
}

.link a:hover {
    color: #CBA044;
}

@media (max-width: 375px) {
    body nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-sizing: border-box;
        width: 100%;
        z-index: 5;
        padding-top: 25px;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


    .toggle-button {
        display: flex;
        margin-top: 18px;
    }

    .list {
        display: none;
        width: 100%;
    }

    .logo > img {
        width: 70px;
        margin-top: -70px;
        margin-left: 10px;
    }

    .list ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #F6F1ED;
        top: 80px;
        left: 0;
        flex-direction: column;
    }

    .list li {
        text-align: center;
    }

    .list li a {
        padding: .5rem 1rem;
    }

    a:hover {
        color: #CBA044;
    }

    .list.active {
        display: flex;
    }

    h1 {
        margin: 15px;
    }

    .image > img {
        width: 95vw;
        height: 30vh;
       filter: grayscale (10px);

    }

    .text p {
        /* margin-left: 20px; */
        font-size: 15px;
        padding: 5px;
    }

    h3 {
        font-size: 20px;
        text-align: center;
    }

    .line {
        margin: auto;
        margin-bottom: 20px;
    }

    footer {
        display: flex;
        justify-content: space-between;
    }

    .hotel-logo {
        display: flex;
    }

    .hotel-logo > img {
        width: 70px;
        height: 40px;
        margin-left: -20px;
    }
    
    .link {
        display: flex;
        margin-right: -30px;
    }
    
    .link a {
        font-size: 25px;
        margin: 10px;
        color: #fff;
        cursor: pointer;
    }
}