/* ==========================================
   DYORE HERITAGE ROOMS PAGE STYLES
   ========================================== */

/* Hero Banner */
.heritage-rooms-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/dyore-heritage-rooms/main-Banner.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.heritage-rooms-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.heritage-rooms-banner .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

/* ===================================================
   HERITAGE ROOMS SHOWCASE SECTION
   =================================================== */
.heritage-rooms-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 150px 0 100px;
    box-sizing: border-box;
}

.heritage-rooms-container {
    width: 100%;
    max-width: var(--site-max-width, 1440px);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Section Header Stack */
.rooms-showcase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.rooms-showcase-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 18px;
    object-fit: contain;
}

.rooms-showcase-header .sub-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin-bottom: 14px;
}

.rooms-showcase-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0;
    max-width: 900px;
}

/* Room Cards List Stack */
.room-cards-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    width: 100%;
}

.room-card {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Top Main Image Viewport */
.room-main-viewport {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: #f7f7f7;
    margin-bottom: 36px;
}

.room-main-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.02);
}

.room-hero-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Floating Rating Pill Badge */
.room-rating-pill {
    position: absolute;
    top: 24px;
    right: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 18px 6px 14px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.room-star-box {
    width: 22px;
    height: 22px;
    border: 1.2px solid #97033C;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.room-star-box svg {
    display: block;
}

.room-rating-val {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #151312;
    letter-spacing: 0.02em;
}

/* Room Info Grid (Left: Text 367px, Right: Thumbnails + Amenities Stack) */
.room-info-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.room-text-col {
    flex: 0 0 367px;
    width: 367px;
    max-width: 367px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.room-name {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 16px 0;
    width: 100%;
}

.room-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    width: 100%;
}

/* Room Book Now CTA Button */
.room-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #151312;
    color: #ffffff !important;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 44px;
    margin-top: 30px;
    border: 1px solid #151312;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    cursor: pointer;
}

.room-book-btn:hover {
    background-color: #97033C;
    border-color: #97033C;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 3, 60, 0.25);
}

/* Right Details Column */
.room-details-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Thumbnails Strip */
.room-thumbs-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 22px;
}

.room-thumb-btn {
    position: relative;
    flex: 1 1 0;
    max-width: 280px;
    height: 160px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.38;
    filter: grayscale(15%);
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    outline: none;
}

.room-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.room-thumb-btn:hover {
    opacity: 0.75;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.room-thumb-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.room-thumb-btn.active img {
    transform: scale(1.03);
}

/* Amenities Specs Bar (Directly Under Thumbnails on Right) */
.room-amenities-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    padding-top: 22px;
    border-top: 1px solid #ECECEC;
}

.room-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-icon-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.amenity-icon-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.amenity-label {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .heritage-rooms-container {
        padding: 0 30px;
    }

    .room-main-viewport {
        height: 440px;
    }

    .room-thumb-btn {
        height: 105px;
    }

    .room-amenities-bar {
        gap: 22px;
    }
}

@media (max-width: 992px) {
    .heritage-rooms-section {
        padding: 60px 0 90px;
    }

    .rooms-showcase-title {
        font-size: 30px;
    }

    .room-cards-list {
        gap: 70px;
    }

    .room-main-viewport {
        height: 380px;
        margin-bottom: 26px;
    }

    .room-info-grid {
        flex-direction: column;
        gap: 28px;
    }

    .room-text-col {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }

    .room-desc {
        max-width: 100%;
    }

    .room-thumbs-strip {
        justify-content: flex-start;
        gap: 12px;
    }

    .room-thumb-btn {
        max-width: 180px;
        height: 100px;
    }

    .room-amenities-bar {
        flex-wrap: wrap;
        gap: 20px 28px;
    }
}

@media (max-width: 576px) {
    .heritage-rooms-container {
        padding: 0 18px;
    }

    .rooms-showcase-emblem {
        width: 32px;
        margin-bottom: 14px;
    }

    .rooms-showcase-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .room-cards-list {
        gap: 55px;
    }

    .room-main-viewport {
        height: 260px;
        margin-bottom: 20px;
    }

    .room-rating-pill {
        top: 14px;
        padding: 4px 12px 4px 10px;
    }

    .room-rating-val {
        font-size: 13px;
    }

    .room-name {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .room-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .room-thumbs-strip {
        gap: 8px;
    }

    .room-thumb-btn {
        height: 70px;
    }

    .room-amenities-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding-top: 16px;
    }

    .amenity-icon-box {
        width: 38px;
        height: 38px;
    }

    .amenity-icon-box img {
        width: 22px;
        height: 22px;
    }

    .amenity-label {
        font-size: 12px;
    }
}

/* ===================================================
   HERITAGE ROOMS AMENITIES SECTION (HOVER REVEAL)
   =================================================== */
.rooms-amenities-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0 130px;
    box-sizing: border-box;
}

.rooms-amenities-container {
    width: 100%;
    max-width: var(--site-max-width, 1440px);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Header Stack */
.rooms-amenities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 75px;
}

.rooms-amenities-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 18px;
    object-fit: contain;
}

.rooms-amenities-header .sub-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin-bottom: 14px;
}

.rooms-amenities-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0;
    max-width: 950px;
}

/* 3x2 Amenities Interactive Cards Grid */
.amenities-hover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
    width: 100%;
}

.amenity-hover-card {
    position: relative;
    width: 100%;
    height: 680px;
    background-color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Text Content Container */
.amenity-card-text {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px 24px 0;
    box-sizing: border-box;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.amenity-card-num {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #97033C;
    margin-bottom: 22px;
    display: inline-block;
    letter-spacing: 0.04em;
}

.amenity-card-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #151312;
    margin: 0 0 28px 0;
}

.amenity-card-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    color: #4a4a4a;
    margin: 0;
    max-width: 360px;
}

/* Image Layer that slides in from Right to Left on Hover (2s Smooth Transition) */
.amenity-card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    transform: translateX(101%);
    transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    pointer-events: none;
}

.amenity-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.08);
    transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover Interaction: Image slides in from Right to Left */
.amenity-hover-card:hover .amenity-card-media,
.amenity-hover-card.is-hovered .amenity-card-media {
    transform: translateX(0);
}

.amenity-hover-card:hover .amenity-card-media img,
.amenity-hover-card.is-hovered .amenity-card-media img {
    transform: scale(1);
}

.amenity-hover-card:hover .amenity-card-text,
.amenity-hover-card.is-hovered .amenity-card-text {
    opacity: 0;
    transform: translateX(-20px);
}

/* Responsive Media Queries for Amenities Section */
@media (max-width: 1200px) {
    .amenities-hover-grid {
        gap: 40px 36px;
    }

    .amenity-hover-card {
        height: 600px;
    }

    .amenity-card-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .rooms-amenities-section {
        padding: 70px 0 90px;
    }

    .rooms-amenities-header {
        margin-bottom: 50px;
    }

    .rooms-amenities-title {
        font-size: 28px;
    }

    .amenities-hover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .amenity-hover-card {
        height: 520px;
    }
}

@media (max-width: 576px) {
    .rooms-amenities-section {
        padding: 50px 0 70px;
    }

    .rooms-amenities-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .amenities-hover-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amenity-hover-card {
        height: 440px;
    }

    .amenity-card-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .amenity-card-desc {
        font-size: 13px;
        line-height: 1.65;
    }
}

/* ===================================================
   YOUR STAY BEGINS HERE CTA BANNER SECTION
   =================================================== */
.stay-cta-banner-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    background-image: url('../images/dyore-heritage-rooms/cta-banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 20px 0;
    box-sizing: border-box;
}

.stay-cta-content-card {
    position: relative;
    width: 100%;
    max-width: 1040px;
    background-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 50px 40px 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.stay-cta-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #151312;
    margin: 0 0 16px 0;
    max-width: 965px;
    width: 100%;
}

.stay-cta-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    color: #000000;
    max-width: 965px;
    width: 100%;
    margin: 0 0 28px 0;
}

.stay-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stay-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #151312;
    color: #ffffff !important;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    width: 252px;
    height: 52px;
    padding: 0;
    border: 1px solid #151312;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    cursor: pointer;
}

.stay-btn-dark:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.stay-btn-burgundy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #97033C;
    color: #ffffff !important;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    width: 252px;
    height: 52px;
    padding: 0;
    border: 1px solid #97033C;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    cursor: pointer;
}

.stay-btn-burgundy:hover {
    background-color: #7b0230;
    border-color: #7b0230;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 3, 60, 0.35);
}

/* Responsive for Stay CTA Banner */
@media (max-width: 992px) {
    .stay-cta-banner-section {
        min-height: 580px;
    }

    .stay-cta-content-card {
        padding: 40px 30px;
    }

    .stay-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .stay-cta-banner-section {
        min-height: 480px;
        padding: 40px 15px 0;
    }

    .stay-cta-content-card {
        padding: 30px 20px;
    }

    .stay-cta-title {
        font-size: 24px;
    }

    .stay-cta-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .stay-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .stay-btn-dark,
    .stay-btn-burgundy {
        width: 100%;
    }
}

/* ===================================================
   HERITAGE ROOMS PHOTO GALLERY SECTION (ALIGNED GEOMETRY)
   =================================================== */
.rooms-gallery-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 150px;
    box-sizing: border-box;
}

.rooms-gallery-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Header Stack */
.rooms-gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.rooms-gallery-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 18px;
    object-fit: contain;
}

.rooms-gallery-header .sub-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin-bottom: 14px;
}

.rooms-gallery-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0;
}

/* 3-Column Geometry Layout */
.gallery-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.58fr 0.92fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

/* Individual Column */
.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
}

/* Row 1 (Top Images: COL 1 & COL 2) */
.gallery-col-1 .gallery-img-box:nth-child(1),
.gallery-col-2>.gallery-img-box:nth-child(1) {
    height: 380px;
}

/* Row 2 (Middle Images: COL 1 & COL 2) */
.gallery-col-1 .gallery-img-box:nth-child(2),
.gallery-row-split {
    height: 185px;
}

/* Nested 2-Image Row in Column 2 */
.gallery-row-split {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.gallery-row-split .gallery-img-box {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
}

/* Row 3 (Bottom Images: COL 1 & COL 2) */
.gallery-col-1 .gallery-img-box:nth-child(3),
.gallery-col-2>.gallery-img-box:nth-child(3) {
    height: 355px;
}

/* COL 3 Specific Heights (Total = 175 + 20 + 550 + 20 + 195 = 960px, Perfectly Flush at Bottom) */
.gallery-col-3 .gallery-img-box:nth-child(1) {
    height: 175px;
}

.gallery-col-3 .gallery-img-box:nth-child(2) {
    height: 550px;
}

.gallery-col-3 .gallery-img-box:nth-child(3) {
    height: 195px;
}

/* Image Container */
.gallery-img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-img-box:hover img {
    transform: scale(1.035);
}

.gallery-col.gallery-col-1 {
    margin-top: unset !important;
}

.gallery-col.gallery-col-2 {
    margin-top: unset !important;
}

/* Responsive Media Queries for Photo Gallery */
@media (max-width: 1200px) {
    .rooms-gallery-section {
        padding: 80px 0 90px;
    }

    .rooms-gallery-header {
        margin-bottom: 45px;
    }

    .rooms-gallery-title {
        font-size: 32px;
    }

    .gallery-columns-wrapper,
    .gallery-col,
    .gallery-row-split {
        gap: 16px;
    }

    .gallery-col-1 .gallery-img-box:nth-child(1),
    .gallery-col-2>.gallery-img-box:nth-child(1) {
        height: 320px;
    }

    .gallery-col-1 .gallery-img-box:nth-child(2),
    .gallery-row-split {
        height: 160px;
    }

    .gallery-col-1 .gallery-img-box:nth-child(3),
    .gallery-col-2>.gallery-img-box:nth-child(3) {
        height: 300px;
    }

    .gallery-col-3 .gallery-img-box:nth-child(1) {
        height: 150px;
    }

    .gallery-col-3 .gallery-img-box:nth-child(2) {
        height: 465px;
    }

    .gallery-col-3 .gallery-img-box:nth-child(3) {
        height: 165px;
    }
}

@media (max-width: 992px) {
    .rooms-gallery-section {
        padding: 65px 0 75px;
    }

    .rooms-gallery-header {
        margin-bottom: 40px;
    }

    .rooms-gallery-title {
        font-size: 28px;
    }

    .gallery-columns-wrapper,
    .gallery-col,
    .gallery-row-split {
        gap: 14px;
    }

    .gallery-col-1 .gallery-img-box:nth-child(1),
    .gallery-col-2>.gallery-img-box:nth-child(1) {
        height: 260px;
    }

    .gallery-col-1 .gallery-img-box:nth-child(2),
    .gallery-row-split {
        height: 130px;
    }

    .gallery-col-1 .gallery-img-box:nth-child(3),
    .gallery-col-2>.gallery-img-box:nth-child(3) {
        height: 240px;
    }

    .gallery-col-3 .gallery-img-box:nth-child(1) {
        height: 120px;
    }

    .gallery-col-3 .gallery-img-box:nth-child(2) {
        height: 376px;
    }

    .gallery-col-3 .gallery-img-box:nth-child(3) {
        height: 134px;
    }
}

@media (max-width: 768px) {
    .gallery-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-col {
        gap: 16px;
    }

    .gallery-row-split {
        gap: 12px;
        height: auto;
    }

    .gallery-img-box,
    .gallery-col-1 .gallery-img-box:nth-child(1),
    .gallery-col-1 .gallery-img-box:nth-child(2),
    .gallery-col-1 .gallery-img-box:nth-child(3),
    .gallery-col-2>.gallery-img-box:nth-child(1),
    .gallery-col-2>.gallery-img-box:nth-child(3),
    .gallery-col-3 .gallery-img-box:nth-child(1),
    .gallery-col-3 .gallery-img-box:nth-child(2),
    .gallery-col-3 .gallery-img-box:nth-child(3) {
        height: auto;
        aspect-ratio: 4/3;
    }

    .gallery-col-1 .gallery-img-box:nth-child(1),
    .gallery-col-1 .gallery-img-box:nth-child(3),
    .gallery-col-3 .gallery-img-box:nth-child(2) {
        aspect-ratio: 4/5;
    }

    .gallery-row-split .gallery-img-box {
        aspect-ratio: 1/1;
    }
}

@media (max-width: 576px) {
    .rooms-gallery-section {
        padding: 40px 0 45px !important;
    }

    .rooms-gallery-container {
        padding: 0 20px;
    }

    .rooms-gallery-title {
        font-size: 22px;
        line-height: 1.25;
    }

    .rooms-gallery-header .sub-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .rooms-gallery-emblem {
        width: 30px;
        margin-bottom: 12px;
    }
}