html,
body {
    scroll-behavior: smooth;
    min-width: 380px;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'Raleway', sans-serif;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #F4EFEB;
    background: #ffffff;
    font-size: 1.125rem;
    line-height: 1.65555;
}

body.light {
    background: #fafafa;
}

body.white {
    background: #ffffff;
}

body.modal-open {
    overflow-y: hidden;
}

.main {
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.main.home {
    height: 100%;
    padding-top: 0;
}

.content {
    flex-grow: 1;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h2 {
    color: #40F2B0;
    color: #338464;
}

a.anchor {
    display: block;
    position: relative;
    top: -65px;
    visibility: hidden;
}

a:link {
    color: #ffa500;
    color: #41C9F2;
    color: #40F2B0;
    color: #338464;

    text-decoration: none;
}

a:visited {
    color: #ffa500;
    color: #41C9F2;
    color: #40F2B0;
    color: #338464;
}

a:hover {
    color: #d68b01;
    color: #41C9F2;
    color: #40F2B0;
    color: #338464;
}

a:active {
    color: #d68b01;
    color: #41C9F2;
    color: #40F2B0;
    color: #338464;
}

a.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 6px;
    background-color: #338464;
    color: white;
    text-align: center;
    text-decoration: none;
}

a.btn.grey {
    background-color: #36454F;
}

a.btn:hover {
    background-color: #4b9b7a;
}

a.btn.grey:hover {
    background-color: #5e6a72;
}

input[type=submit] {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: #338464;
    color: white;
    text-align: center;
    text-decoration: none;
    margin: 0;
    outline: none;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #4b9b7a;
}

span.error {
    color: red;
    font-weight: bold;
}

.main-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 1s ease;
    transition: box-shadow 0.3s ease;
}

body.home .main-bar {
    background: none;
    box-shadow: none;
}

.main-bar-logo {
    height: 5rem;
    float: left;
    padding: 0.5rem 2rem 0.5rem 2rem;
    margin-top: 0px;
}

.main-bar-logo img {
    width: auto;
    height: 100%;
}

.main-bar-logo a {
    display: block;
    height: 100%;
}

.main-bar-nav {
    height: 5rem;
    float: right;
    padding-right: 1rem;
}

.main-bar-toggle {
    display: none;
}

.main-bar-nav a {
    line-height: 5rem;
    font-size: 1.25rem;
    padding: 0px 1rem 0px 1rem;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.main-bar-nav a.active {
    color: #338464;
}

/* START content */

.home-banner {
    height: 80%;
    width: 100%;
    background: #F4EFEB;
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.home-banner .home-content {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 2rem;
}

.home-banner a {
    color: #333;
    text-decoration: none;
}

.home-banner h1 {
    font-size: 0px;
}

.home-banner img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.home-banner p {
    width: 100%;
    max-width: 820px;
    max-width: 720px;
    font-size: 1.5rem;
}

.home-banner p.button {
    color: #338464;
    margin-bottom: 0rem;
}

.home-banner a.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: #338464;
    color: white;
    text-align: center;
    text-decoration: none;
    margin: 0;
}

.banner-image-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem 1rem 1rem 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.banner-image-socials img {
    width: 100%;
    max-width: 40px;
    height: auto;
    margin-right: 0.5rem;
}

.section {
    background: #ffffff;
}

body.light .section {
    background: none;
}


.section.grey {
    background-color: #f1f1f1;
}

.section-inverse {
    background: #f2f2f2;
}

.section.green {
    background: #338464;
    color: #fff;
    border-top: 4px dashed #7aac95;
    border-bottom: 4px dashed #7aac95;
}

.section.border-top {
    border-top: 3px solid #40F2B0;
}

.section-inner {
    width: 100%;
    max-width: 1280px;
    min-height: 300px;
    margin: 0 auto;
    border-left: 0px solid lightgrey;
    border-right: 0px solid lightgrey;
    padding: 2rem 1rem 2rem 1rem;
}

.section-inner.home {
    font-size: 1.25rem;
}

.section-inner .home-link {
    text-align: center;
}

.section-inner h2 {
    text-align: left;
}

.section-inner.home h2 {
    text-align: center;
}

.section.green .section-inner h2 {
    color: #fff;
}

.section-inner.center {
    text-align: center;
}

/* START home feature images */
.home-feature-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 1rem;
}

.home-feature-image-container {
    width: 25%;
    height: 360px;
    padding: 1rem;
    border-radius: 1rem;
}

.home-feature-image {
    width: 100%;
    height: 100%;
    background: grey;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.home-feature-image.view-more .button {
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    font-size: 1.25rem;
}


.home-feature-image img {
    border-radius: 1rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* filter: blur(4px);
    transition: filter 0.25s linear; */
}

.home-feature-image img:hover {
    /* filter: blur(0); */
}

.home-feature-image.view-more img {
    filter: blur(6px);
}


.home-feature-image-text {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
    padding: 1rem;
    color: #ffffff;
    font-size: 2rem;
}

.home-section-banner {
    background: #F4EFEB;
    background-image: url("../img/accommodation/GSuite-img2-large.jpg");
    background-size: cover;
    background-position: center;
    height: 480px;
    border-top: 4px solid #40F2B0;
    border-bottom: 4px solid #40F2B0;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* START Page banner */

.page-banner {
    background: #fafafa;
    background-color: #fafafa;
    position: relative;

    background: #F4EFEB;
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-position: bottom;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    /* background-color: rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(10px);
}

.page-banner-inner {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 980px;
    min-height: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-text {
    text-align: center;
    max-width: 75%;
    font-family: Georgia, serif;
}

.page-banner-text h1 {
    color: #338464;
    font-size: 4rem;
}


/* START gallery */

.image-gallery {
    width: 100%;
    font-size: 0px;
}

.image-item {
    display: inline-block;
    width: 50%;
}

.image-gallery .image-item-inner {
    padding: 1rem;
    border: 1px solid lightgrey;
    background: #ffffff;
    border-radius: 5px;
    margin: 0.5rem;
    opacity: 0.95;
    filter: alpha(opacity=95);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    cursor: pointer;
}

.image-gallery .image-item-inner:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.image-gallery .image-item-inner img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    height: 300px;
}

#image-modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.90);
    z-index: 1001;
    display: none;
    padding: 2rem;
}

body.modal-open #image-modal {
    display: block;
}

#image-modal-content {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#image-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.80;
    filter: alpha(opacity=80);
    z-index: 9999;
}

#image-modal-left {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 1rem;
    cursor: pointer;
    margin-top: -55px;
    opacity: 0.80;
    filter: alpha(opacity=80);
    z-index: 9999;
}

#image-modal-right {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 1rem;
    cursor: pointer;
    margin-top: -55px;
    opacity: 0.80;
    filter: alpha(opacity=80);
    z-index: 9999;
}

.image-modal-arrow {
    width: 75px;
    height: auto;
    cursor: pointer;
}

#image-modal-close img {
    width: 75px;
    height: auto;
    cursor: pointer;
}

#image-modal-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 9998;
}

/* END gallery */




/* START content text and image */

.suite-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    margin: 2rem 0rem 2rem 0rem;
    border: 2px solid #40F2B0;
    align-content: flex-start;
}

.suite-image-container {
    margin-bottom: -1rem;
}

.suite-image {
    width: 280px;
    height: auto;
    cursor: pointer;
}

.suite-image.horizontal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 360px;
}

.suite-content {
    flex: 1;
    padding: 2rem;
    font-size: 1.25rem;
}

.suite-content.horizontal {
    font-size: 1.25rem;
}

.suite-content.horizontal h3 {
    font-size: 1.5rem;
}

.suite-sub-image-container {
    width: 100%;
    /* background: red; */
    padding: 1rem;
    flex-basis: 100%;
    flex: 1;
    display: flex;
}

.suite-sub-image {
    width: 25%;
    /* background: green; */
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.sub-image {
    border-radius: 1rem;
    overflow: hidden;
}

/* START price grid */

.boardings {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.boarding {
    flex: 1 1 40%;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    padding-left: 100px;

}

.boarding h2 {
    color: #2c6e49;
    margin-top: 0;
}

.boarding ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boarding li {
    margin: 5px 0;
    color: #338464;
}

.boarding li.small-text {
    font-size: 1rem;
}


.tick {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 72px;
    height: 72px;
}

.pricing-banner {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.pricing-banner img {
    height: 100%;
    max-height: 350px;
    width: auto;
}


/* START footer */


.footer {
    background: #f1f1f1;
}

.footer.blue {
    background-color: #41C9F2;
}

.footer.green {
    background-color: #40F2B0;
}

.footer-inner {
    width: 100%;
    max-width: 980px;
    padding: 1rem;
    margin: 0 auto;
    color: grey;
    text-align: center;
}

.footer-logo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-us-link {
    display: inline-block;
}

.iframe-container {
    padding-top: 100%;
    position: relative;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

gmp-map {
    height: 100%;
}

/* START contact form */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2rem;
}

.contact-container h2 {
    margin-bottom: 1rem;
}

.contact-details {
    width: 50%;
    text-align: left;
    float: left;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
}

.contact-form {
    width: 50%;
    text-align: left;
    float: left;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.contact-form-inner {
    width: 100%;
    margin: 0 auto;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: Georgia, serif;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 20px;
    resize: vertical;
    font-size: 1.125rem;
    font-family: 'Roboto', sans-serif;
}

.contact-form textarea {
    height: 200px;
    font-size: 1.125rem;
    font-family: 'Roboto', sans-serif;
}

.contact-form .success {
    color: #338464;
    font-weight: bold;
    border: 1px solid #338464;
    padding: 1rem;
}

/* START Rabbit booking form */

.booking-form {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.65555;
}

.booking-form input[type=text],
.booking-form input[type=email],
.booking-form input[type=date],
.booking-form input[type=time],
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.65555;
}

.booking-form textarea {
    min-height: 225px;
}

.booking-form button {
    width: 100%;
    background-color: #212421;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.booking-form button:hover {
    background-color: #282b28;
}

.booking-form input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.booking-form input[type=submit]:hover {
    background-color: #45a049;
}

.rabbit {
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}


@media only screen and (max-width: 1300px) {
    .main-bar-nav {
        padding-right: 1rem;
    }

    .main-bar-nav a {
        padding: 0px 1rem 0px 1rem;
    }
}

@media only screen and (max-width: 1050px) {
    .main-bar-nav a {
        font-size: 1.2rem;
        padding: 0px 0.5rem 0px 0.5rem;
    }
}

@media only screen and (max-width: 950px) {
    .main-bar-nav a {
        font-size: 18px;
        padding: 0px 1rem 0px 1rem;
    }

    .home-banner p {
        max-width: 500px;
    }

    .header-inner .logo {
        flex: 0 0 auto;
        height: 100%;
        padding: 1rem 0;
    }

    .home-feature-image-container {
        width: 50%;
    }


    .header-inner {
        padding: 0 1rem;
    }

    .image-item {
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
    }

    #image-modal-caption {
        bottom: 1rem;
        left: 0;
        width: 100%;
        text-align: center;
        padding-left: 90px;
        padding-right: 90px;
    }

    #image-modal-left,
    #image-modal-right {
        top: auto;
        bottom: 0;
    }

    .main-bar-logo {
        padding-left: 1rem;
    }

    .main-bar-toggle {
        display: block;
        cursor: pointer;
        height: 64px;
        width: 64px;
        float: right;
        padding: 1rem;
    }

    body.nav-open {
        overflow-y: hidden;
    }

    .main-bar-toggle img {
        width: 100%;
    }

    .nav-open .main-bar {
        height: 100%;
    }

    .main-bar-nav {
        display: none;
    }

    .nav-open .main-bar-nav {
        font-size: 18px;
        padding: 0px 1rem 0px 1rem;
        display: block;
        height: 100%;
        width: 100%;
        background: #fff;
        border-top: 1px solid lightgrey;
    }

    .nav-open .main-bar-nav a {
        width: 100%;
        float: left;
        text-align: center;
    }

    img.home-logo {
        max-width: 300px;
    }

    .home-banner p {
        font-size: 1rem;
    }

    .home-banner .home-content {
        margin: 1rem;
        padding: 1rem;
    }

    .home-banner {
        height: 90%;
    }

    .home-feature-images {
        padding: 0;
    }

    .banner-image-socials {
        padding: 1rem;
    }

    .page-banner-text {
        max-width: 100%;
        padding: 1rem;
    }

    .page-banner-text h1 {
        font-size: 2.5rem;
    }

    .pricing-banner img {
        height: auto;
        width: 100%;
    }

    .boardings {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .boarding {
        flex: none;
        width: 100%;
    }

    .suite-content {
        font-size: 1.125rem;
        order: -1;
        padding-bottom: 0;
    }

    .suite-content.horizontal {
        font-size: 1.125rem;
    }

    .suite-container {
        flex-direction: column;
        align-items: center;
    }

    .suite-image-container {
        margin-bottom: 1rem;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-details,
    .contact-form {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 600px) {
    .main-bar-toggle {
        display: block;
        cursor: pointer;
        height: 5rem;
        width: 5rem;
        padding: 1.6rem;
    }

    .main-bar-toggle img {
        width: 100%;
    }

    .nav {
        display: none;
    }

    body.nav-open {
        overflow-y: hidden;
    }

    .nav-open .main-bar {
        height: 100%;
    }

    body.home.nav-open .main-bar {
        background: #ffffff;
    }

    .nav-open .header {
        font-size: 18px;
        display: block;
        height: 100%;
        width: 100%;
        background: #fff;
        border-top: 1px solid lightgrey;
    }

    .nav-open .main-bar-nav a {
        width: 100%;
        float: left;
        text-align: center;
    }
}

@media only screen and (max-width: 550px) {
    .image-item {
        width: 100%;
        max-width: 100%;
    }

    .image-gallery .image-item-inner img {
        height: 200px;
    }

    .home-feature-image-container {
        width: 100%;
    }
}

@media only screen and (max-height: 900px) {
    .home-banner {
        height: 100%;
    }
}

/* New Accommodation Page Styles */
.intro-section {
    margin-bottom: 4rem;
    text-align: left;
}

.intro-content {
    margin: 0 auto;
    line-height: 1.8;
}

.accommodation-section {
    margin-bottom: 4rem;
}

.accommodation-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #338464;
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.suite-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.suite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.suite-card.wide {
    grid-column: 1 / -1;
}

.suite-card.coming-soon {
    opacity: 0.8;
}

.suite-image-gallery {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.suite-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.suite-card:hover .suite-main-image {
    transform: scale(1.05);
}

.suite-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 132, 100, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suite-card:hover .suite-image-overlay {
    opacity: 1;
}

.view-more {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.suite-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.suite-details {
    padding: 2rem;
}

.suite-details h3 {
    color: #338464;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.suite-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    background: #e8f5e8;
    color: #338464;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.suite-details p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.suite-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive design for accommodation page */
@media only screen and (max-width: 768px) {
    .suite-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .suite-details {
        padding: 1.5rem;
    }

    .suite-specs {
        flex-direction: column;
    }

    .suite-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accommodation-section h2 {
        font-size: 2rem;
    }
}