body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Poiret One', sans-serif;
    font-weight: bold;


}

h1 {
    font-size: var(--fs-hero-h1) !important;
    font-weight: bold;
}

h2 {
    font-size: var(--fs-section-h2) !important;
}

.hero-mini-refined {
    margin-top: 0;
    background: url('../Resource/Accomodation/primitive/image5.JPG') center/cover fixed;
    height: 60vh;
}

.room-overview-content h3 {
    font-size: var(--fs-h3-card);
}

/* Brand-Aligned Modern Layout Styles */
#rooms-section {
    background-color: #f4f1e9;
    /* Soft Ivory Background */
    padding: 100px 0;
}

.room-stack-container {
    display: flex;
    flex-direction: column;
    gap: 180px;
    padding: 0 5vw;
    max-width: 1500px;
    margin: 0 auto;
}

.room-row-modern {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
}

.room-row-modern.reverse {
    flex-direction: row-reverse;
}

/* Large Visual Side */
.room-visual-modern {
    flex: 0 0 60%;
    /* Balanced ratio */
    height: 650px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 40px;
    /* Uniform Radius */
}

.room-visual-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Content Card */
.room-card-modern {
    flex: 0 0 45%;
    background: #ffffff;
    padding: 50px 60px;
    /* Reduced vertical padding */
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    min-height: 550px;
    /* Changed from fixed height */
    overflow: hidden;
    /* Prevent content spill */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-row-modern:not(.reverse) .room-card-modern {
    margin-left: -5%;
}

.room-row-modern.reverse .room-card-modern {
    margin-right: -5%;
}

/* Typography Refinements - Brand Palette */
.modern-type-label {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-section-topper);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c9a63c;
    /* Brand Gold */
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
}

.modern-room-title {
    font-family: 'Poiret One', sans-serif;
    font-size: var(--fs-page-h1);
    color: #2E2318;
    /* Brand Dark Brown */
    margin-bottom: 30px;
    line-height: 1.05;
    font-weight: 300;
}

.modern-room-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: var(--fs-lead-p);
    color: #555;
    line-height: 1.9;
    margin-bottom: 45px;
    max-width: 90%;
}

/* Modern Spec Grid */
.modern-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.modern-spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modern-spec-item i {
    color: #c9a63c;
    /* Brand Gold icons */
    font-size: 1.1rem;
}

.modern-spec-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-body-p);
    color: #444;
    font-weight: 500;
}

/* Brand Action Buttons */
.modern-actions {
    display: flex;
    gap: 15px;
    /* Compact gap */
}

.btn-solid-moss {
    padding: 14px 30px;
    /* Compact padding */
    background: #2E2318;
    /* Brand Dark Brown */
    color: #c9a63c;
    /* Brand Gold text */
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    /* Reduced font size */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    border-radius: 50px;
}

.btn-solid-moss:hover {
    background: #c9a63c;
    /* Brand Gold on hover */
    color: #2E2318;
    /* Brand Dark on hover */
    box-shadow: 0 15px 30px rgba(201, 166, 60, 0.2);
    transform: translateY(-3px);
}

.btn-outline-modern {
    padding: 13px 29px;
    /* Compact padding offset for border */
    background: transparent;
    border: 1px solid #2E2318;
    /* Brand Dark border */
    color: #2E2318;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    /* Reduced font size */
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 50px;
}

.btn-outline-modern:hover {
    background: #2E2318;
    color: #f4f1e9;
}

@media (max-width: 1300px) {
    .modern-room-title {
        font-size: var(--fs-page-h1);
    }

    .room-card-modern {
        padding: 50px 40px;
    }
}

@media (max-width: 1100px) {
    #rooms-section {
        padding: 60px 0;
    }

    .room-stack-container {
        gap: 80px;
    }

    .room-row-modern,
    .room-row-modern.reverse {
        flex-direction: column;
        min-height: auto;
    }

    .room-visual-modern {
        width: 100%;
        flex: none;
        height: 450px;
        border-radius: 30px !important;
    }

    .room-card-modern,
    .room-row-modern.reverse .room-card-modern {
        width: 95%;
        margin: -80px auto 0 auto !important;
        padding: 40px 30px;
        text-align: center;
    }

    .modern-spec-grid {
        justify-items: start;
        margin: 0 auto 30px auto;
        width: fit-content;
        text-align: left;
    }

    .modern-actions {
        flex-direction: column;
        gap: 15px;
    }

    .modern-room-title {
        font-size: var(--fs-h3-card);
    }

    .btn-solid-moss,
    .btn-outline-modern {
        width: 100%;
    }
}