.gallery,
.content-top {
    width: 96%;
    max-width: 900px;
    margin: auto;
}

.decoration {
    width: 30%;
    max-width: 300px;
    height: 10px;
    background-color: var(--water-green);
    border-radius: 150px;

}

i.fa-check {
    display: inline-block;
    margin-left: 20px;
}

.disclaimer {
    font-size: 14px;

}

.cta {
    border-radius: 15px;
    background-color: var(--white);
    border: 3px solid var(--water-green);
    width: 98%;
    margin: 30px auto;
    min-height: 200px;
    margin-bottom: 0px;
    padding: 20px 0px;
}

.cta p {
    width: 90%;
    margin: 20px auto;
}

.cta .small {
    font-size: 14px;
}

/* MAIN IMAGE AREA */
.main-image-container {
    position: relative;
    width: 100%;
}

.main-image-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

/* NAV BUTTONS OVERLAY */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 40px;
    font-size: 28px;
    cursor: pointer;
    background: transparent;
    color: white;
    border: none;
    border-radius: 6px;
    z-index: 10;
}

.nav-btn.prev {
    left: 10px;
}

.nav-btn.next {
    right: 10px;
}

.nav-btn:hover i {
    color: rgb(34, 214, 178);
}


/* THUMBNAILS GRID */
.thumbnails {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.7;
    border: 3px solid transparent;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--water-green);
}

@media screen and (max-width: 500px) {

    .content-top,
    .gallery {
        width: 90%;
    }

    .main-image-container img {
        height: 350px;
    }

    #hotelNameTitle {
        font-size: 25px;
    }

    h2 {
        font-size: 22px;
    }
}