/*
Theme Name: My Custom Theme
Author: Your Name
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&family=Edu+NSW+ACT+Cursive:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&family=Outfit:wght@100..900&display=swap');

@font-face {
    font-family: 'Optician-Sans';
    src: url('assets/font/Optician-Sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flyInFromBottom {
    from {
        opacity: 0;
        transform: translate(-50%, 50%);
    }

    to {
        opacity: 0.8;
        transform: translate(-50%, -50%);
    }
}

@keyframes unblurZoom {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: scale(1.2);
        object-position: center;
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
        object-position: center;
    }

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

html {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

#primary main {
    min-height: calc(85vh - 103px);
    justify-content: center;
}

.room-detail #rooms-bg-video,
.room-detail main,
.rooms-detail-hero {
    min-height: 70vh;
    height: 70vh;
}

.hero {
    position: relative;
    height: 100vh;
}

.testimonials-wrapper {
    position: absolute;
    right: clamp(1.5rem, 4.5vw, 7rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: clamp(.6rem, 1.2vw, 1rem);
    z-index: 4;
    max-height: 60vh;
    padding-right: 0.25rem;
}

.testimonial {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(400px, 35vw, 500px);
    max-width: calc(100% - 3rem);
    padding: clamp(.85rem, 1.2vw, 1.25rem);
    min-height: clamp(155px, 12vh, 200px);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(4px);
    color: white;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 420ms cubic-bezier(.2, .9, .2, 1), transform 420ms cubic-bezier(.2, .9, .2, 1);
    will-change: opacity, transform;
    box-sizing: border-box;
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-quote {
    font-size: clamp(1.25rem, 1.2vw, 1.5rem);
    line-height: 1.35;
    margin: 0;
    font-style: italic;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.testimonial-author {
    margin: 0;
    align-self: flex-end;
    --logo-w: clamp(95px, 18vw, 160px);
    --logo-h: clamp(20px, 3.6vw, 48px);
    width: var(--logo-w);
    height: var(--logo-h);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0.15rem;
}

.testimonial-author img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(1) brightness(0) invert(1);
    -webkit-filter: grayscale(1) brightness(0) invert(1);
    transition: transform .15s ease;
}

.testimonial.fade-out {
    opacity: 0;
    transform: translateY(-48%);
}

body.ada-page .navbar {
    background-color: #262626;
    padding: 1rem;
}

main.ada-main-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(2rem, 4vw, 5rem);
    min-height: 60vh;
}

main.ada-main-content h1 {
    font-size: 4rem;
    line-height: .9;
    display: block;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 1em;
    font-weight: 500;
    transform-origin: left;
}

main.ada-main-content p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

main.ada-main-content h2 {
    margin: 0;
    margin-top: 2em;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.rooms-hero,
.rooms-detail-hero,
#primary.hero {
    height: 85vh;
}

#primary.content button {
    padding: .7rem 1.2rem;
    border: 2px solid #262626;
    color: #262626;
    background-color: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-family: 'Montserrat', sans-serif;
    animation: textFadeUp .5s ease-in-out;
}

#primary.content button:hover {
    background-color: #262626;
    color: white;
}

#primary.content button#alt {
    border: 2px solid white;
    color: white;
}

#primary.content button#alt:hover {
    background-color: white;
    color: #262626;
}
#secondary.hero,
#secondary.hero main {
    position: relative;
    z-index: 1;
    height: 35vh;
}

#secondary.hero main {
    height: calc(35vh - 103px);
    min-height: calc(35vh - 103px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.9);
    pointer-events: none;
}

#primary.hero .hero-background {
    filter: brightness(70%);
}

#secondary.hero-background {
    min-height: 35vh;
    filter: brightness(0.7);
}

video::-webkit-media-controls {
    display: none !important;
}

.navbar,
.content {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
    justify-content: space-between;
    z-index: 7;
    gap: 3rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.navbar .logo {
    transition: opacity 0.3s;
}

.navbar .logo:hover {
    cursor: pointer;
    opacity: 0.8;
}

.navbar .logo img {
    width: clamp(80px, 18vw, 300px);
}

.nav-options {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.nav-options a,
.nav-buttons button {
    font-size: .9rem;
    font-weight: 300;
    color: lightgray;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.nav-options a:hover,
.nav-buttons button:hover {
    color: white;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.nav-buttons button {
    background: none;
    border: none;
}

.nav-options a.active,
.sidebar-links a.active {
    color: #fff;
    font-weight: 400;
}

.content h2,
.rooms-content h2,
#primary.hero .content h2,
.bungalow h3,
.deluxe-king h3,
.queen h3,
.superior-king h3,
.studio-queen h3,
.two-bed-suite h3,
.master-suite h3,
.amenities-header h3,
.modal-room-desc h4,
.wellness-info .info-text-header h3,
.wellness-faq .info-box h3,
.guest-gallery h1,
.hotel-gallery h1,
.wellness-faq .event-types a,
.gallery-header,
.explore-grid .grid-item .overlay h3,
.room-end-card h3,
main.ada-main-content h1,
.btn-primary,
.modal-suggestions h3,
.info-text-body a {
    -webkit-transform: scaleX(1.17);
    -moz-transform: scaleX(1.17);
    -ms-transform: scaleX(1.17);
    -o-transform: scaleX(1.17);
    transform-origin: left;
    letter-spacing: -0.07em;
}

#index.content {
    position: relative;
    max-width: 600px;
    padding: 0 0 10% 0;
    margin: 0 0 0 10%;
    text-align: left;
    z-index: 1;
}

#index.content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    padding: 0;
    margin-bottom: 1rem;
    color: white;
}

#index.content a {
    font-size: 1.2rem;
    font-weight: 200;
    color: white;
    text-decoration: underline;
    text-decoration-color: #D4AF37;
    text-decoration-thickness: 2px;
    transition: text-decoration 0.3s;
    opacity: 0;
    animation: textFadeUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

#index.content a:hover {
    text-decoration-color: white;
}

.reveal-text {
    visibility: hidden;
}

.reveal-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-right: 1rem;
}

.reveal-text .word:last-child {
    margin-right: 0;
}

.reveal-text .word.revealed {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.rooms .reveal-text .word.revealed {
    margin-right: 0;
}

.rooms-content,
#primary.content,
#secondary.content {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 15vh;
    width: 100%;
}

.rooms-content h2,
#primary.content h2,
#secondary.content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    padding: 0;
    margin: 0rem;
    color: white;
    transform-origin: center !important;
}

.rooms-content p,
#primary.content p,
#secondary.content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 300;
    color: white;
    margin-top: 0.5rem;
    opacity: 0;
    animation: textFadeUp 0.5s ease forwards;
    animation-delay: 0.1s;
}

.room-detail .rooms-content p {
    margin: 0.5rem auto 0 auto;
}

.wellness-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem clamp(1rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

#intro.wellness-info {
    padding: 3rem 0rem;
    margin-bottom: 0rem;
}

#intro.wellness-info p {
    text-align: center;
}

.wellness-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    max-width: 100%;
    /* Add constraint */
    box-sizing: border-box;
    /* Add box-sizing */
}

.wellness-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.wellness-text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 650px;
    text-align: center;
}

.wellness-info .info-text-header {
    order: 1;
    margin-bottom: 0;
    transform-origin: center;
}

.wellness-info .info-text-body {
    order: 2;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.wellness-info .info-text-header h5,
.wellness-faq .info-box h5 {
    font-size: 0.9rem;
    font-weight: 400;
    color: darkgray;
    margin: 0;
    letter-spacing: .2em;
    font-family: 'Montserrat', sans-serif;
}

.wellness-info .info-text-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    margin: 0;
    transform-origin: center;
}

.wellness-info .info-text-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 0;
    margin-bottom: 0.1rem;
}

.wellness-info .info-text-header hr,
.wellness-faq .info-box hr,
.contact-info hr {
    width: 50px;
    border: none;
    border-top: 2px solid #D4AF37;
    margin: .5rem auto;
}

.wellness-info .info-text-body p {
    margin: 0;
    margin-bottom: 1.5rem;
}

.wellness-info .info-text-body button {
    padding: .7rem 1.2rem;
    border: 2px solid #262626;
    color: #262626;
    background-color: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.wellness-info .info-text-body button:hover {
    background-color: #262626;
    color: white;
}

.wellness-faq {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: clamp(1rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.wellness-faq .info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 40vh;
    width: 100%;
    max-width: 50vh;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    border: darkgrey 2px solid;
    padding: 1.5rem;
}

.wellness-faq .info-box h5 {
    font-size: 0.7rem;
    margin: 0.5rem auto;
}

.wellness-faq .info-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    transform-origin: center;
}

.wellness-faq .info-text-header hr {
    margin: 0.75rem auto 1.25rem auto;
}

.wellness-faq .info-box p {
    font-size: 1.1rem;
    margin: .3rem auto;
}

.wellness-faq .info-box ul {
    list-style: inside;
    text-align: left;
    margin-top: 1rem;
    font-weight: 400;
}

.wellness-faq .info-box ul li {
    font-size: clamp(0.5rem, 2vw, 0.8rem);
}

.signature-scent {
    margin-top: 1.5rem !important;
    font-style: italic;
}

.wellness-faq .info-box-options a {
    text-decoration: none;
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
}

.wellness-faq .info-box-options {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    gap: 2rem;
}

.wellness-text-content,
.wellness-faq .info-box,
.info-image img {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wellness-content-wrapper,
.wellness-content-wrapper.reverse {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wellness-content-wrapper.animate .wellness-text-content {
    opacity: 1;
    transform: translateY(0);
}

.wellness-content-wrapper.animate {
    opacity: 1;
    transform: translateY(0);
    animation: textFadeUp 1s ease forwards;
}

.wellness-content-wrapper .info-image img.animate {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    animation: unblurZoom 1s ease forwards;
}

.wellness-faq .info-box.animate {
    opacity: 1;
    transform: translateY(0);
}

#wedding-inq {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
}

#wedding-inq .info-box {
    padding: 1rem;
    width: 100%;
    max-width: 85vh;
    min-height: 30vh;
    justify-content: center;
}

#wedding-inq .info-box p {
    font-size: clamp(0.4rem, 2vw, 0.9rem);
    margin: .3rem auto 1.5rem auto;
}

#wedding-inq .info-box h5 {
    font-size: 0.7rem;
    margin: 0.3rem auto;
}

#wedding-inq .info-box .btn {
    padding: .7rem 1.2rem;
    border: 2px solid #262626;
    background-color: white;
    color: #262626;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

#wedding-inq .info-box .btn:hover {
    color: white;
    background-color: #262626;
}

#wedding-inq .info-box hr {
    margin: 0.5rem auto;
}

.info-text-body a,
.flavor-div a {
    text-decoration: none;
    color: #262626;
    font-weight: 300;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    transform-origin: center;
}

.info-text-body a:hover,
.flavor-div a:hover {
    color: #D4AF37;
}

.info-text-body ul {
    list-style: none;
    margin-top: 1rem;
    font-weight: 300;
    padding: 0;
}

.info-text-body ul h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    margin-bottom: 0.1rem;
}

.info-text-body ul p {
    margin: 0;
}

.info-text-body ul li {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wellness-faq .event-types {
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    padding: 0;
}

.wellness-faq .event-types li {
    list-style: none;
    margin-bottom: 0.5rem;
    text-align: center;
}

.wellness-faq .event-types a {
    text-decoration: none;
    color: #D4AF37;
    font-weight: 500;
    font-size: 1.5rem;
    transition: text-decoration 0.3s ease;
}

.wellness-faq .event-types a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.form-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.form-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="month"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #555;
}

.form-success {
    color: green;
    text-align: center;
    margin-bottom: 20px;
}

.form-error {
    color: rgb(165, 1, 1);
    display: block;
    height: 1em;
    margin-top: .3rem;
    margin-left: .2rem;
    font-size: .8rem;
}

.form-error.is-visible {
    animation: fadeIn 0.5s ease-in-out;
}

.input-error {
    border-color: rgb(165, 1, 1) !important;
}

.form-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: #333;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

#wedding-faq .info-box {
    max-width: 65vh;
    width: 100%;
    min-height: 40vh;
}

#wedding-faq .info-box p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: .3rem auto;
}

#spa-policy-modal .modal-overlay {
    background: rgba(0, 0, 0, 0.8);
}

#spa-policy-modal .modal-panel {
    max-width: 600px;
    width: 90%;
    background: #262626;
    color: #f5f5f5;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    font-family: 'Montserrat', sans-serif;
}

#spa-policy-modal .modal-close {
    color: #fff;
}

#spa-policy-modal .modal-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: #D4AF37;
    margin-bottom: 1rem;
}

#spa-policy-modal .modal-body {
    font-size: 1rem;
    line-height: 1.6;
}

#spa-policy-modal .modal-body h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #bbb;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

#spa-policy-modal .modal-body ul {
    list-style: disc inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

#spa-policy-modal .modal-body ul li {
    margin-bottom: 0.5rem;
    list-style: none;
}

.simple-modal .modal-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.simple-modal .modal-panel {
    max-width: 800px;
    width: 100%;
    background: #FAF0E6;
    color: #333;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.simple-modal .modal-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.simple-modal .modal-body {
    font-size: 1rem;
    line-height: 1.6;
}

.simple-modal .modal-body h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.simple-modal .modal-header hr,
.modal-panel .modal-suggestions hr {
    width: 60px;
    border: none;
    border-top: 2px solid #D4AF37;
    margin: 0.5rem auto;
}

.simple-modal .btn {
    padding: .7rem 1.2rem;
    border: none;
    color: white;
    background-color: #262626;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin: 1rem auto;
}

.simple-modal p {
    margin: 0;
}

.simple-modal .modal-body ul {
    list-style: disc inside;
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.simple-modal .modal-body ul li {
    margin-bottom: 0.75rem;
}

.info-image {
    flex: 0 0 auto;
    overflow: hidden;
    max-width: 45%;
}

.info-image img {
    width: 100%;
    /* Change to 100% */
    max-width: 600px;
    /* Add reasonable max-width */
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rooms-gallery {
    padding: 1.5rem clamp(1rem, 3vw, 2rem) 0rem clamp(1rem, 3vw, 2rem);
    width: min(100%, 1600px);
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

.flavor-text {
    max-width: 950px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 0rem 1rem 0 1rem;
    line-height: 1.5;
    font-weight: 300;
    font-size: 1.1rem;
}

.flavor-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.flavor-div .flavor-text {
    margin-bottom: 1.5rem;
}

.flavor-div a {
    font-size: 1.1rem;
}

.rooms .flavor-div .flavor-text,
.wellness .flavor-div .flavor-text {
    margin-bottom: 0;
}

.wellness .flavor-div {
    margin-bottom: 1rem;
}

.amenities-flavor-text {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 2rem 1rem 0 1rem;
    font-weight: 400;
}

.wellness-bottom-text {
    max-width: 650px;
    margin: 2rem auto 0 auto;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
    font-size: 1rem;
    color: #555;
}

.rooms-gallery h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.rooms-gallery h4 {
    color: darkgray;
    font-weight: 400;
    font-size: .9rem;
    margin: 0;
    margin-top: 1rem;
}

.rooms-gallery p {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.rooms-gallery .rooms-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0;
    margin: 0 auto;
    max-width: 1600px;
    list-style: none;
}

.rooms-gallery .room-item {
    width: 100%;
}

.rooms-gallery .room-item img,
.suggestion-card img {
    width: 95%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    height: auto;
    opacity: 0;
    transform: scale(1.2);
    filter: blur(8px);
    animation: unblurZoom 0.8s ease-in-out 0.2s both;
}

.room-item:hover {
    cursor: pointer;
}

.room-item:hover .img-wrap img,
.room-item:hover img {
    opacity: 0;
}

.bungalow,
.deluxe-king,
.queen,
.superior-king,
.studio-queen,
.two-bed-suite,
.master-suite {
    position: relative;
    overflow: visible;
}

.bungalow .img-wrap,
.deluxe-king .img-wrap,
.queen .img-wrap,
.superior-king .img-wrap,
.studio-queen .img-wrap,
.two-bed-suite .img-wrap,
.master-suite .img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.bungalow .img-wrap img,
.deluxe-king .img-wrap img,
.queen .img-wrap img,
.superior-king .img-wrap img,
.studio-queen .img-wrap img,
.two-bed-suite .img-wrap img,
.master-suite .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 1;
}

.bungalow .img-wrap::after,
.deluxe-king .img-wrap::after,
.queen .img-wrap::after,
.superior-king .img-wrap::after,
.studio-queen .img-wrap::after,
.two-bed-suite .img-wrap::after,
.master-suite .img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.bungalow h4,
.deluxe-king h4,
.queen h4,
.superior-king h4,
.studio-queen h4,
.two-bed-suite h4,
.master-suite h4 {
    transition: color 0.25s ease;
    color: darkgray;
    font-size: .95rem;
}

.bungalow h3,
.deluxe-king h3,
.queen h3,
.superior-king h3,
.studio-queen h3,
.two-bed-suite h3,
.master-suite h3 {
    position: relative;
    display: inline-block;
    z-index: 5;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transform: scaleX(1.1);
    -webkit-transform: scaleX(1.17);
    -moz-transform: scaleX(1.17);
    -ms-transform: scaleX(1.17);
    -o-transform: scaleX(1.17);
    transform-origin: left;
    letter-spacing: -0.07em;
}

.bungalow h3::after,
.deluxe-king h3::after,
.queen h3::after,
.superior-king h3::after,
.studio-queen h3::after,
.two-bed-suite h3::after,
.master-suite h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: .06em;
    height: 2px;
    width: 100%;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.bungalow .bungalow-desc,
.deluxe-king .deluxe-king-desc,
.queen .queen-desc,
.superior-king .superior-king-desc,
.studio-queen .studio-queen-desc,
.two-bed-suite .two-bed-suite-desc,
.master-suite .master-suite-desc {
    height: 40px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    margin-bottom: 0rem;
    font-size: .9rem;
}

.bungalow .action-links,
.deluxe-king .action-links,
.queen .action-links,
.superior-king .action-links,
.studio-queen .action-links,
.two-bed-suite .action-links,
.master-suite .action-links {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

#events.action-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    text-align: center;
}

/* Room Type Background Images */
.bungalow .img-wrap::after {
    background-image: url('../assets/img/Accommodations/Bungalow/BungalowG1.jpg');
}

.deluxe-king .img-wrap::after {
    background-image: url('../assets/img/Accommodations/King/KingG1.jpg');
}

.queen .img-wrap::after {
    background-image: url('../assets/img/Accommodations/Queen/QueenG1.jpg');
}

.superior-king .img-wrap::after {
    background-image: url('../assets/img/Accommodations/SupKing/SupKingG1.jpg');
}

.studio-queen .img-wrap::after {
    background-image: url('../assets/img/Accommodations/StudioQueen/StudioQueenG1.jpg');
}

.two-bed-suite .img-wrap::after {
    background-image: url('../assets/img/Accommodations/2BedSuite/2BedSuiteG1.jpg');
}

.master-suite .img-wrap::after {
    background-image: url('../assets/img/Accommodations/MasterSuite/MasterSuiteG1.jpg');
}

/* Room Type Hover States */
.bungalow:hover .img-wrap::after,
.deluxe-king:hover .img-wrap::after,
.queen:hover .img-wrap::after,
.superior-king:hover .img-wrap::after,
.studio-queen:hover .img-wrap::after,
.two-bed-suite:hover .img-wrap::after,
.master-suite:hover .img-wrap::after {
    opacity: 1;
}

.bungalow:hover .img-wrap img,
.deluxe-king:hover .img-wrap img,
.queen:hover .img-wrap img,
.superior-king:hover .img-wrap img,
.studio-queen:hover .img-wrap img,
.two-bed-suite:hover .img-wrap img,
.master-suite:hover .img-wrap img {
    opacity: 0;
}

.bungalow:hover h4,
.deluxe-king:hover h4,
.queen:hover h4,
.superior-king:hover h4,
.studio-queen:hover h4,
.two-bed-suite:hover h4,
.master-suite:hover h4 {
    color: #D4AF37;
}

.bungalow .img-wrap:hover+h4,
.deluxe-king .img-wrap:hover+h4,
.queen .img-wrap:hover+h4,
.superior-king .img-wrap:hover+h4,
.studio-queen .img-wrap:hover+h4,
.two-bed-suite .img-wrap:hover+h4,
.master-suite .img-wrap:hover+h4 {
    color: #D4AF37;
}

.bungalow:hover h3::after,
.deluxe-king:hover h3::after,
.queen:hover h3::after,
.superior-king:hover h3::after,
.studio-queen:hover h3::after,
.two-bed-suite:hover h3::after,
.master-suite:hover h3::after {
    transform: scaleX(1);
}

.bungalow:hover .bungalow-desc,
.deluxe-king:hover .deluxe-king-desc,
.queen:hover .queen-desc,
.superior-king:hover .superior-king-desc,
.studio-queen:hover .studio-queen-desc,
.two-bed-suite:hover .two-bed-suite-desc,
.master-suite:hover .master-suite-desc {
    opacity: 0;
    visibility: hidden;
}

.bungalow:hover .action-links,
.deluxe-king:hover .action-links,
.queen:hover .action-links,
.superior-king:hover .action-links,
.studio-queen:hover .action-links,
.two-bed-suite:hover .action-links,
.master-suite:hover .action-links {
    opacity: 1;
    transform: translateY(-39px);
    pointer-events: auto;
}

.room-item.placeholder .placeholder-content .img-wrap {
    background-color: #D4AF37;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    cursor: default;
}

.room-filters {
    display: flex;
    justify-content: center;
    margin: 0rem auto 2rem auto;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.room-detail-main {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.room-end-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    padding: 0rem 2rem;
}

.room-stats p {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

.end-card-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    transform-origin: center !important;
    padding-top: 3rem;
}

.end-card-text {
    align-items: center;
    justify-content: center;
    font-size: 1rem !important;
    font-weight: 300;
    line-height: 1.5;
    width: 100%;
}

.end-card-bottom-text {
    align-items: flex-end;
    justify-content: center;
    font-size: 1rem !important;
    padding-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid #262626;
    color: #262626;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    background: #262626;
    color: #fff;
}

#bungalow.filter-btn:hover,
#bungalow.filter-btn.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #fff;
}

#rooms.filter-btn:hover,
#rooms.filter-btn.active {
    background: #657A77;
    border-color: #657A77;
    color: #fff;
}

#suite.filter-btn:hover,
#suite.filter-btn.active {
    background: #585C3D;
    border-color: #585C3D;
    color: #fff;
}

/* Hide filtered rooms */
.room-item.hidden {
    display: none;
}

.services-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    text-align: center;
    padding: 0 0 0 1rem;
    border: darkgray 2px solid;
}

.services-block .info-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.services-block .info-box .amenities-header hr {
    width: 200px;
    border: none;
    border-top: 2px solid #D4AF37;
    margin: 0rem auto;
}

.services-block .info-box .amenities-header h5 {
    font-size: 0.8vw;
    font-weight: 400;
    color: darkgray;
    margin: 0.5rem auto;
    letter-spacing: .2em;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.services-block .info-box .amenities-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4vw;
    font-weight: 500;
    margin: 1rem auto;
    text-align: center;
    transform-origin: center;
}

.services-block .info-box ul {
    list-style: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0;
    font-weight: 500;
}

.services-block .info-box ul li {
    font-size: .8vw;
    margin-bottom: 0.7rem;
}

.services-block .info-box a {
    text-decoration: none;
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
}

.services-block .amenities-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.services-block img {
    width: 30vw;
    min-width: 25vw;
    flex-shrink: 0;
    aspect-ratio: 3 / 3;
}

.modal-panel .services-block img {
    width: 45%;
}

.modal-panel .services-block .info-box {
    gap: 4rem;
}

.btn {
    text-decoration: none;
    padding: 0.45rem 0.7rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-primary:hover {
    color: #D4AF37;
    transition: color 0.2s, background 0.2s;
}

.btn-primary {
    background: transparent;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: .9rem;
    padding: 0;
    transform-origin: left;
}

footer {
    background-color: #262626;
    padding: 2rem 2rem 0rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 4vw, 1.5rem);
}

footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

footer a:hover {
    color: #ccc;
}

.copyright {
    width: 100%;
    text-align: center;
    font-size: 0.55rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

}

.contact-info a:hover,
.contact-info a:hover svg path {
    fill: #ccc;
}

.contact-info svg {
    width: 1.3em;
    height: 1.3em;
    transition: fill 0.2s;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-header {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.email-header p {
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.email-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.social-media-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.instagram,
.facebook {
    align-items: flex-start;
}

.instagram svg,
.facebook svg {
    fill: white;
    transition: fill 0.3s;
    width: 2.5em;
    height: 2.5em;
}

.instagram svg:hover path,
.facebook svg:hover path {
    fill: #ccc;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10px);
    background: #262626;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 1rem 1rem;
    color: white;
    text-decoration: none;
    text-align: center;
}

.dropdown-content a:hover {
    background: #333;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-panel {
    position: relative;
    z-index: 2;
    background: white;
    color: #262626;
    width: 90%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    max-height: 97vh;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.open .modal-panel {
    animation: fadeUp 0.35s ease-out forwards;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close svg {
    transition: transform 0.2s ease;
}

.modal-close svg path {
    fill: #333;
    transition: fill 0.2s ease;
}

.modal-close:hover svg {
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
}

.modal-header h4 {
    margin: .5rem;
    font-weight: 200;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

#modal-room-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 100;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

#modal-room-occupancy,
#modal-room-sqft {
    margin: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.modal-more-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 2rem;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 1rem 1rem 2.5rem 1rem;
    justify-content: center;
    align-content: center;
    box-sizing: border-box;
}

.modal-more-details a {
    color: #333;
    font-weight: 500;
}

.modal-more-details .detail-group:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.modal-more-details .detail-group:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.modal-more-details .detail-group:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.modal-more-details .detail-group:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / span 2;
}

.modal-more-details .detail-group:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

.modal-more-details .detail-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    gap: 1rem;
}

.modal-more-details .detail-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-weight: 500;
    color: #333;
    font-size: 1.3rem;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.modal-more-details .detail-list {
    list-style: disc;
    padding: 0;
    margin: 0;
    margin-left: 1.25rem;
    width: 100%;
    color: #444;
    font-size: 0.95rem;
}

.modal-more-details .detail-list li {
    margin-bottom: 0.5rem;
}

.modal-more-details svg {
    width: 1.7em;
    height: 1.7em;
    flex-shrink: 0;
}

.modal-panel .btn-modal,
.room-detail-main .btn-modal {
    text-decoration: none;
    text-align: center;
    margin: 1.5rem auto;
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    width: 10%;
    background: white;
    color: #262626;
    border: 2px solid #262626;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.modal-panel .btn-modal:hover,
.room-detail-main .btn-modal:hover {
    background: #262626;
    color: white;
}

.modal-panel hr,
.room-detail-main hr,
.wellness-info hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
    width: 100%;
}

.modal-media {
    position: relative;
    margin: 1rem auto;
}

.modal-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60vw;
    height: auto;
    min-height: 250px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #262626;
    padding: clamp(0.5rem, 3vh, 2rem) 0;
    aspect-ratio: 16 / 10;
}

.modal-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--bg-image);
    filter: blur(8px) brightness(0.5);
    transform: scale(1.2);
    z-index: 0;
    transition: background-image 0.4s ease;
    will-change: background-image;
}

.carousel-track {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.modal-carousel::after {
    display: none;
}

.modal-carousel.transitioning::before {
    display: none;
}

.modal-carousel.transitioning::after {
    display: none;
}

.carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    background: transparent;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-20%);
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
    transition: background 0.15s ease, transform 0.08s ease;
    padding: 0;
    line-height: 1;
}

.carousel-prev {
    left: max(2%, 0.5rem);
}

.carousel-next {
    right: max(2%, 0.5rem);
}

.carousel-prev svg,
.carousel-next svg {
    width: 2vw;
    height: 2vw;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-25%) scale(1.03);
}

.carousel-counter {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    letter-spacing: .3em;
}

.amenities-carousel-wrapper {
    width: 25vw;
    min-width: 25vw;
}

.amenities-carousel-wrapper .modal-carousel {
    background: transparent;
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    padding: 0;
    min-height: unset;
}

.amenities-carousel-wrapper .carousel-track {
    height: auto;
}

.amenities-carousel-wrapper .carousel-track img {
    height: auto;
    aspect-ratio: 2.5 / 3;
    object-fit: fill;
}

.amenities-carousel-wrapper .carousel-counter {
    display: none;
}

.amenities-carousel-wrapper .carousel-prev,
.amenities-carousel-wrapper .carousel-next {
    width: 3vw;
    height: 3vw;
    font-size: 0.9rem;
}

.amenities-carousel-wrapper .carousel-prev {
    left: max(12%, 0.5rem);
}

.amenities-carousel-wrapper .carousel-next {
    right: max(12%, 0.5rem);
}

.amenities-carousel::before {
    display: none !important;
}

.modal-room-desc {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 0 auto;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.modal-room-desc h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    transform-origin: center;
    
}

.modal-actions {
    margin-top: 1rem;
    display: flex;
    gap: .75rem;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.modal-panel .services-block {
    width: 95%;
    margin: auto;
}

.modal-panel .modal-suggestions hr {
    margin-bottom: 1.5rem;
}

.modal-suggestions {
    padding: 2rem;
}

.modal-suggestions h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    transform-origin: center;
    font-weight: 500;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    gap: 1rem;
    max-width: 1250px;
    margin: 0 auto;
}

.suggestions-grid:has(.suggestion-card:only-child) {
    justify-items: center;
}

.suggestion-card {
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: visible;
    max-width: 600px;
}

.suggestion-card .img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.suggestion-card .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 1;
}

.suggestion-card .img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hover-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.suggestion-card h4 {
    color: darkgray;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
    margin-top: 0.75rem;
    transition: color 0.25s ease;
}

.suggestion-card h3 {
    position: relative;
    display: inline-block;
    z-index: 5;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
    transform-origin: left;
}

.suggestion-card h3::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.suggestion-card:hover .img-wrap::after {
    opacity: 1;
}

.suggestion-card:hover .img-wrap img {
    opacity: 0;
}

.suggestion-card:hover h4 {
    color: #D4AF37;
}

.suggestion-card:hover h3::after {
    width: 100%;
}

.no-video .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 7;
}

.hero-gallery {
    height: 100vh;
    width: 100%;
    position: relative;
}

.gallery-main {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    box-sizing: border-box;
    gap: 0;
}

.guest-gallery,
.hotel-gallery {
    margin: 0;
    padding: 0;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guest-gallery img,
.hotel-gallery img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transform-origin: center;
}

.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
}

.gallery-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    animation: fadeUp 1s ease forwards;
}

.guest-gallery h1,
.hotel-gallery h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0 .5rem 0;
    color: white;
    animation: fadeUp .9s ease forwards;
}

.guest-gallery::before,
.hotel-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.guest-gallery img,
.hotel-gallery img {
    animation: unblurZoom 0.8s ease forwards;
}

.guest-gallery:hover img,
.hotel-gallery:hover img {
    transform: scale(1.05);
}

.guest-gallery:hover::before,
.hotel-gallery:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.sidebar,
.nav-toggle,
.hamburger,
.hamburger-container {
    display: none;
}

.gallery-header,
.gallery-header-sub {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    transform-origin: center;
}

.gallery-header {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.gallery-header-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    margin-top: 0;
}

/*Guest Gallery*/
.grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100vh;
    width: 100%;
}

.grid1>div {
    position: relative;
    overflow: hidden;
}

.grid1>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.div1 {
    grid-row: span 2 / span 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.div1 img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.div3 {
    grid-column-start: 2;
}

.grid2-container {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 90vh;
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 1fr;
    width: 50%;
    height: auto;
}

.div4,
.div5 {
    height: 45vh;
    min-height: 35vh;
}

.div4 {
    grid-column: 1 / span 2;
    width: 100%;
    position: relative;
}

.div4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.div5 {
    grid-column: 3 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background-color: #D4AF37;
}

.div5 h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(.5rem, 2vw, 1rem);
    font-weight: 300;
    color: white;
    padding: 1.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.div5 p {
    font-size: clamp(.8rem, 2vw, 1rem);
    font-weight: 300;
    color: white;
    text-align: center;
}

.div6 {
    width: 50%;
    height: auto;
}

.div6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.div7 {
    grid-column: 1 / span 4;
    grid-row: 3;
}

.div7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    height: 80vh;
    width: 100%;
}

.grid3>div {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.div8,
.div9 {
    grid-row: 1;
}

.div8 {
    grid-column: 1;
}

.div9 {
    grid-column: 2;
}

.grid4-container {
    display: flex;
    width: 100%;
    height: 90vh;
    flex-direction: row-reverse;
}

.grid4-container.reverse {
    flex-direction: row;
}

.grid4-container.reverse .grid4 .div10 {
    grid-column: 1 / span 2;
}

.grid4-container.reverse .grid4 .div11 {
    grid-column: 3 / span 2;
}

#eat-gallery .grid4-container.reverse .div13::after {
    background: none;
}

#eat-gallery .grid4-container {
    height: auto;
}

#eat-gallery .grid4-container .div12 {
    height: 55vh;
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 45vh 45vh;
    width: 50%;
    height: 90vh;
    gap: 0;
}

.div10,
.div11 {
    height: 45vh;
    width: 100%;
}

#eat-gallery .div10 img {
    height: 47vh;
}

.div10 {
    grid-column: 3 / span 2;
    grid-row: 1;
}

.div11 {
    grid-column: 1 / span 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background-color: #D4AF37;
}

.div11 h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(.5rem, 2vw, 1rem);
    font-weight: 300;
    color: white;
    margin: 0 0 1rem 0;
    text-align: center;
}

.div11 p {
    font-size: clamp(.8rem, 2vw, 1rem);
    font-weight: 300;
    color: white;
    text-align: center;
    padding: 0 2rem;
}

.div12 {
    grid-column: 1 / span 4;
    grid-row: 2;
    height: 45vh;
}

.div10 img,
.div12 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.div13,
.div14 {
    width: 50%;
    height: 90vh;
}

.div13 img,
.div14 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photoCredit {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    z-index: 2;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.div2,
.div3,
.div4,
.div6,
.div7,
.div8,
.div9,
.div10,
.div12,
.div13,
.div14 {
    position: relative;
    overflow: hidden;
}

/*Hotel Gallery*/
.press-logo {
    margin: 0 auto 1rem auto;
    display: block;
}

#nyt {
    width: 70%;
}

#forbes {
    width: 40%;
}

#elle {
    width: 50%;
}

#hotel-gallery .div1::after {
    background: none;
}

#hotel-gallery .grid4-container {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: row-reverse;
}

#hotel-gallery .grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 50vh 50vh;
    width: 50%;
    height: 100vh;
    gap: 0;
}

#hotel-gallery .div10,
#hotel-gallery .div11 {
    height: 50vh;
    width: 100%;
}

#hotel-gallery .div11 h5,
#hotel-gallery .div5 h5 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    padding: 1rem;
}

#hotel-gallery .div12,
#eat-gallery .div12 {
    grid-column: 1 / span 4;
    grid-row: 2;
    height: 50vh;
}

#hotel-gallery .div13,
#hotel-gallery .div14,
#eat-gallery .div13 {
    grid-column: 3 / span 2;
    grid-row: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 50%;
    height: 100vh;
}

#hotel-gallery .div13::after,
#eat-gallery .div13::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

#eat-gallery .div13::after {
    background: rgba(0, 0, 0, 0.6);
}

#eat-gallery #end-photo.div13::after {
    background: none;
}

#hotel-gallery .div13 img,
#hotel-gallery .div14 img,
#eat-gallery .div13 img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hotel-gallery .div14::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
}

#gallery-modal .modal-panel {
    padding: 0;
    max-width: 50vw;
    max-height: 80vh;
    background: transparent;
    box-shadow: none;
}

#gallery-modal .carousel-counter {
    color: white;
}

#gallery-modal .modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: clamp(1.5rem, 8vw, 2.5rem);
    height: clamp(1.5rem, 8vw, 2.5rem);
    border-radius: 50%;
    top: 0rem;
    right: 0rem;
}

#gallery-modal .modal-close svg path {
    fill: white;
}

.gallery-modal-panel {
    max-width: 70vw;
    max-height: 80vh;
    padding: 1rem;
    background: transparent;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.gallery-carousel .carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s ease-in-out;
    position: relative;
}

.gallery-carousel .carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#hotel-gallery img:not(.press-logo),
#guest-gallery img,
#eat-gallery img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#hotel-gallery img:not(.press-logo):hover,
#guest-gallery img:hover,
#eat-gallery img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

#hotel-gallery .div1,
#hotel-gallery .div2,
#hotel-gallery .div3,
#hotel-gallery .div4,
#hotel-gallery .div6,
#hotel-gallery .div7,
#hotel-gallery .div8,
#hotel-gallery .div10,
#hotel-gallery .div12,
#hotel-gallery .div14,
#guest-gallery .div2,
#guest-gallery .div3,
#guest-gallery .div4,
#guest-gallery .div6,
#guest-gallery .div7,
#guest-gallery .div8,
#guest-gallery .div9,
#guest-gallery .div10,
#guest-gallery .div12,
#guest-gallery .div13,
#guest-gallery .div14,
#eat-gallery .div10,
#eat-gallery .div12,
#eat-gallery .div13,
#eat-gallery .grid4-container.reverse .div11 {
    position: relative;
}

#hotel-gallery .div1:hover::after,
#hotel-gallery .div2:hover::after,
#hotel-gallery .div3:hover::after,
#hotel-gallery .div4:hover::after,
#hotel-gallery .div6:hover::after,
#hotel-gallery .div7:hover::after,
#hotel-gallery .div8:hover::after,
#hotel-gallery .div10:hover::after,
#hotel-gallery .div12:hover::after,
#hotel-gallery .div14:hover::after,
#guest-gallery .div2:hover::after,
#guest-gallery .div3:hover::after,
#guest-gallery .div4:hover::after,
#guest-gallery .div6:hover::after,
#guest-gallery .div7:hover::after,
#guest-gallery .div8:hover::after,
#guest-gallery .div9:hover::after,
#guest-gallery .div10:hover::after,
#guest-gallery .div12:hover::after,
#guest-gallery .div13:hover::after,
#guest-gallery .div14:hover::after,
#eat-gallery .div10:hover::after,
#eat-gallery .div12:hover::after,
#eat-gallery .grid4-container.reverse .div13:hover::after,
#eat-gallery #end-photo.div13:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2em;
    height: 2em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 14 14'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M1.25 6a4.75 4.75 0 1 1 9.5 0a4.75 4.75 0 0 1-9.5 0M6 0a6 6 0 1 0 3.266 11.034l2.6 2.6a1.25 1.25 0 0 0 1.768-1.768l-2.6-2.6A6 6 0 0 0 6 0' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    animation: flyInFromBottom 0.3s ease-out forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

#eat-gallery .grid4-container.reverse .div11,
#eat-gallery .grid4-container.reverse .div10 {
    overflow: hidden;
}

.desktop-grid {
    display: block;
}

.mobile-grid {
    display: none;
}

.eat-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    ;
    z-index: 2;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    border: #D4AF37 1px solid;
    padding: 1rem 2rem;
    margin: 2rem;
}

.eat-menu:hover {
    color: white;
    background: #D4AF37;
    transition: background 0.2s ease, color 0.2s ease;
}

.policies-table {
    padding: 2rem;
    background: #f5f7fa;
}

.policies-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.policies-table thead {
    background: #333;
}

.policies-table th,
.policies-table td {
    padding: 1rem 1.5rem;
}

.policies-table th {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .05em;
    border: none;
}

.policies-table tbody tr {
    background: #fff;
    transition: background 0.3s ease;
}

.policies-table tbody tr:nth-child(even) {
    background: #f9fbfc;
}

.policies-table tbody tr:hover {
    background: #eef4f9;
}

.policies-table td {
    color: #444;
    font-weight: 300;
    border-bottom: 1px solid #eee;
}

/* Press section styling */
.press-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    width: 100%;
}

.press-tag {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 2.5rem;
}

.press-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 80%;
    margin: 1rem auto;
    padding: 0;
    justify-items: center;
    align-items: center;
}

.press-item {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    min-height: 280px;
    width: 85%;
    min-width: 280px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.2s;
    transition: box-shadow 0.3s ease;
}

.press-item img {
    height: auto;
    align-self: center;
    margin-bottom: 1rem;
}

.press-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.5rem 0 0;
    color: #333;
    margin-top: auto;
    align-self: flex-start;
}

.press-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    margin: 0;
    align-self: flex-start;

}

.press-item p a,
#wedding-faq a,
.info-text-body p a,
.info-box-options a,
.services-block a {
    position: relative;
    color: #D4AF37;
    text-decoration: none;
}

.press-item p a::after,
#wedding-faq a::after,
.info-text-body p a::after,
.info-box-options a::after,
.services-block a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.press-item p a:hover::after,
#wedding-faq a:hover::after,
.info-text-body p a:hover::after,
.info-box-options a:hover::after,
.services-block a:hover::after {
    transform: scaleX(1);
}

.press-logos-grid img {
    max-width: 20vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.press-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.press-item hr {
    width: 100%;
    border: none;
    border-top: 1px solid #eee;
    margin: 1rem 0;
}

#travel-leisure img {
    max-width: 125px;
}

#new-york-times img {
    max-width: 250px;
}

#boutique-hotels h3 a {
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.press-logos-grid .press-item:nth-child(1) {
    animation-delay: 0.1s;
}

.press-logos-grid .press-item:nth-child(2) {
    animation-delay: 0.2s;
}

.press-logos-grid .press-item:nth-child(3) {
    animation-delay: 0.3s;
}

.press-logos-grid .press-item:nth-child(4) {
    animation-delay: 0.4s;
}

.press-logos-grid .press-item:nth-child(5) {
    animation-delay: 0.5s;
}

.press-logos-grid .press-item:nth-child(6) {
    animation-delay: 0.6s;
}

.press-logos-grid .press-item:nth-child(7) {
    animation-delay: 0.7s;
}

.press-logos-grid .press-item:nth-child(8) {
    animation-delay: 0.8s;
}

.press-logos-grid .press-item:nth-child(9) {
    animation-delay: 0.9s;
}

.press-logos-grid .press-item:nth-child(10) {
    animation-delay: 1s;
}

.press-logos-grid .press-item:nth-child(11) {
    animation-delay: 1.1s;
}

.press-logos-grid .press-item:nth-child(12) {
    animation-delay: 1.2s;
}

.press-logos-grid .press-item:nth-child(13) {
    animation-delay: 1.3s;
}

.press-logos-grid .press-item:nth-child(14) {
    animation-delay: 1.4s;
}

.press-logos-grid .press-item:nth-child(15) {
    animation-delay: 1.5s;
}

.press-logos-grid .press-item:nth-child(16) {
    animation-delay: 1.6s;
}

.press-logos-grid .press-item:nth-child(17) {
    animation-delay: 1.7s;
}

.press-logos-grid .press-item:nth-child(18) {
    animation-delay: 1.8s;
}

/* Explore Grid Section */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    gap: 1rem;
    padding: 2rem;
}

.explore-grid .grid-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 0.6s ease forwards;
}

.explore-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.explore-grid .grid-item .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(250px, 40%, 350px);
    padding: clamp(0.5rem, 2vw, 2rem);
    box-sizing: border-box;
    max-height: 100%;
    overflow-wrap: break-word;
    text-align: center;
    color: #fff;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    line-height: 1.2;
}

.explore-grid .grid-item .overlay h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    transform-origin: center;
}

.explore-grid .grid-item .overlay p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: .9rem;
}

.explore-grid .grid-item .overlay hr {
    width: 50%;
    border: none;
    border-top: 1px solid #ddd;
    margin: 0.5rem 0;
}

.explore-grid .grid-item:hover img {
    transform: scale(1.01);
    filter: brightness(0.7);
    z-index: 2;
}

.explore-grid .grid-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.explore-grid .grid-item--wide {
    grid-column: span 2;
}

.explore-grid .grid-item--tall {
    grid-row: span 2;
}

.filter-controls {
    display: flex;
    gap: 0rem;
    justify-content: center;
    margin: 2rem 0rem 0rem;
    width: 100%;
}

.filter-controls button {
    font-size: clamp(0.7rem, 1vw, 1.2rem);
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 4rem;
    border: 1px solid #262626;
    background: transparent;
    color: #262626;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.filter-controls button.active,
.filter-controls button:hover {
    background: #262626;
    color: #fff;
}

.explore-grid .grid-item[data-type="Food & Drink"] .overlay {
    background-color: rgba(212, 175, 55, 0.85);
}

.explore-grid .grid-item[data-type="Family & Fun"] .overlay {
    background-color: rgba(101, 122, 119, 0.85);
}

.explore-grid .grid-item[data-type="Shops & Galleries"] .overlay {
    background-color: rgba(88, 92, 61, 0.85);
}

.explore-grid .grid-item[data-type="Nightlife"] .overlay {
    background-color: rgba(152, 81, 70, 0.85);
}

.filter-controls button[data-filter="Food & Drink"] {
    border-color: rgba(212, 175, 55, 0.85);
    color: rgba(212, 175, 55, 0.85);
}

.filter-controls button[data-filter="Food & Drink"].active,
.filter-controls button[data-filter="Food & Drink"]:hover {
    background-color: rgba(212, 175, 55, 0.85);
    color: #fff;
}

.filter-controls button[data-filter="Family & Fun"] {
    border-color: rgba(101, 122, 119, 0.85);
    color: rgba(101, 122, 119, 0.85);
}

.filter-controls button[data-filter="Family & Fun"].active,
.filter-controls button[data-filter="Family & Fun"]:hover {
    background-color: rgba(101, 122, 119, 0.85);
    color: #fff;
}

.filter-controls button[data-filter="Shops & Galleries"] {
    border-color: rgba(88, 92, 61, 0.85);
    color: rgba(88, 92, 61, 0.85);
}

.filter-controls button[data-filter="Shops & Galleries"].active,
.filter-controls button[data-filter="Shops & Galleries"]:hover {
    background-color: rgba(88, 92, 61, 0.85);
    color: #fff;
}

.filter-controls button[data-filter="Nightlife"] {
    border-color: rgba(152, 81, 70, 0.85);
    color: rgba(152, 81, 70, 0.85);
}

.filter-controls button[data-filter="Nightlife"].active,
.filter-controls button[data-filter="Nightlife"]:hover {
    background-color: rgba(152, 81, 70, 0.85);
    color: #fff;
}