.headingSection {
    padding: 3rem 3rem 1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.headingSection h2 {
    font-size: 2.5rem;
    color: #1F3D2B;
}

.reservationSection {
    padding: 1rem 3rem;
    display: flex;
    justify-content: center;
}

.card {
    border: none;
    width: 80%;
    height: 20rem;
}

.card-img,
.reserveImage,
.card-img-bottom,
.card-img-top {
    max-width: 100%;
    height: 20rem;
}

.dropdownDiv {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.card-img-overlay {
    max-width: 85%;
    background-color: rgb(31, 61, 43, 0.95);
    /* tilt the background to create a diagonal effect */
    transform: skewY(-2deg);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.dropdown-item:hover {
    background-color: #1F3D2B;
    color: #F8F5F2;
}

.pictureSection {
    padding: 2rem 3rem;
    margin-bottom: 3rem;
}

.galleryDiv {
    /* display grid with 3 columns */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.galleryImage {
    width: 100%;
    height: 18rem;
    border-radius: 0.8rem;
}

.galleryImage:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.goldButton {
    padding: 0.3rem 0.7rem;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ############### responsive design ###############*/
/* screens below 992px */
@media (max-width: 992px) {
    .galleryImage {
        height: 15rem;
    }
}

/* screens below 791px */
@media (max-width: 791px) {
    .card {
        border: none;
        width: 100%;
        height: 20rem;
    }

    .card-img,
    .reserveImage,
    .card-img-bottom,
    .card-img-top {
        max-width: 100%;
        height: 20rem;
    }

    .galleryImage {
        height: 12rem;
    }
}

/* screens below 569px */
@media (max-width: 569px) {
    .card {
        border: none;
        width: 100%;
        height: 30rem;
    }

    .card-img,
    .reserveImage,
    .card-img-bottom,
    .card-img-top {
        max-width: 100%;
        height: 30rem;
    }

    .dropdownDiv {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pictureSection {
        padding: 2rem 1rem;
    }

    .galleryDiv {
        gap: 0.8rem;
    }

    .galleryImage {
        height: 10rem;
    }
}

/* screens below 520px */
@media (max-width: 520px) {

    /* make two grid columns */
    .galleryDiv {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* screens below 380px */
@media (max-width: 380px) {
    .headingSection {
        padding: 2rem 1rem;
    }

    .card {
        border: none;
        width: 100%;
        height: 35rem;
    }

    .card-img,
    .reserveImage,
    .card-img-bottom,
    .card-img-top {
        max-width: 100%;
        height: 35rem;
    }
}