@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Jost:wght@400;500&display=swap');

.section-container {
    max-width : 1100px;
    margin    : 0 auto;
    padding   : 0 2rem;
}

.section-eyebrow {
    font-size     : 0.68rem;
    font-weight   : 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color         : var(--ink-muted);
    margin-bottom : 0.5rem;
}

.section-heading {
    font-size    : 2rem;
    font-weight  : 700;
    font-family: 'Cormorant Garamond', serif;
    color        : var(--ink);
    margin-bottom: 1rem;
    line-height  : 1.25;
}

.section-body {
    font-size    : 0.9rem;
    line-height  : 1.75;
    color        : var(--ink-muted);
    margin-bottom: 2rem;
}


.btn-gold {
    display         : inline-block;
    background-color: #c9a96e;
    color           : white;
    border          : none;
    text-decoration : none;
    padding         : 10px 28px;
    border-radius   : 5px;
    font-size       : 0.9rem;
    font-weight     : 500;
    cursor          : pointer;
    transition      : background 0.2s;
}

.btn-gold:hover {
    background-color: #b8956a;
    color           : white;
}


/* ══════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════ */
.hero-section {
    height   : 100vh;
    position : relative;
    display  : flex;
    align-items    : center;
    justify-content: center;
    color    : white;
    text-align     : center;
    overflow : hidden;
}

.hero-slides {
    position: absolute;
    inset   : 0;
    z-index : 0;
}

.hero-slide {
    position           : absolute;
    inset              : 0;
    background-size    : cover;
    background-position: center;
    opacity            : 0;
    transition         : opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position  : absolute;
    inset     : 0;
    background: rgba(0, 0, 0, 0.45);
    z-index   : 1;
}

.hero-content {
    position : relative;
    z-index  : 2;
    max-width: 700px;
    padding  : 0 2rem;
}

/* ── Dots ── */
.hero-dots {
    position       : absolute;
    bottom         : 2rem;
    left           : 50%;
    transform      : translateX(-50%);
    display        : flex;
    gap            : 8px;
    z-index        : 2;
}

.hero-dot {
    width        : 8px;
    height       : 8px;
    border-radius: 50%;
    background   : rgba(255, 255, 255, 0.45);
    cursor       : pointer;
    transition   : background 0.3s, transform 0.3s;
}

.hero-dot.active {
    background: #fff;
    transform : scale(1.3);
}

.hero-eyebrow {
    font-size     : 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity       : 0.85;
    margin-bottom : 1rem;
}

.hero-heading {
    font-size    : clamp(2.2rem, 5vw, 3.5rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight  : 700;
    line-height  : 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtext {
    font-size    : 1rem;
    line-height  : 1.7;
    opacity      : 0.85;
    margin-bottom: 2rem;
}


.comfort-section {
    padding         : 80px 0;
    background-color: #f8f9fa;
}

.comfort-grid {
    display            : grid;
    grid-template-columns: 1fr 1fr;
    gap                : 4rem;
    align-items        : center;
}

.comfort-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap    : 12px;
}

.comfort-images-col-left img,
.comfort-images-col-right img {
    width        : 100%;
    border-radius: 6px;
    object-fit   : cover;
    display      : block;
}

.comfort-images-col-left img {
    height: 100%;
}

.comfort-images-col-right {
    display       : flex;
    flex-direction: column;
    gap           : 12px;
}

.comfort-images-col-right img {
    height: 180px;
}

/* Stats */
.comfort-stats {
    display      : flex;
    gap          : 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size  : 2rem;
    font-weight: 700;
    color      : #c9a96e;
    line-height: 1;
}

.stat-label {
    font-size  : 0.75rem;
    color      : var(--ink-muted);
    margin-top : 0.25rem;
}


/* Amenities */
.amenities {
    display       : flex;
    flex-direction: column;
    gap           : 0.65rem;
    margin-bottom : 2rem;
}

.amenity-item {
    display    : flex;
    align-items: center;
    font-size  : 0.88rem;
    color      : var(--ink-muted);
}

.amenity-icon {
    color       : #c9a96e;
    margin-right: 10px;
    width       : 16px;
}

/* ── Rooms Section ──────────────────────────────────────────────── */

.rooms-section {
    padding         : 80px 0;
    background-color: #fff;
}

.rooms-header {
    text-align   : center;
    margin-bottom: 2.5rem;
}

.rooms-grid-container {
    height    : 600px;
    overflow-y: auto;
    padding   : 20px 0;
}

.rooms-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap                  : 20px;
    padding              : 0 20px;
}

.room-card {
    box-shadow   : 0 4px 12px rgba(0,0,0,0.1);
    transition   : all 0.3s ease;
    border-radius: 10px;
    overflow     : hidden;
    background   : white;
}

.room-card:hover {
    transform : translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.room-image {
    height    : 200px;
    width     : 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display   : block;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-card-body {
    padding: 1rem;
}

.room-category {
    background-color: #c9a96e;
    color           : white;
    padding         : 4px 12px;
    border-radius   : 20px;
    font-size       : 0.8rem;
    display         : inline-block;
    margin-bottom   : 0.5rem;
}

.room-title {
    font-size    : 1rem;
    font-weight  : 600;
    color        : var(--ink);
    margin-bottom: 0.4rem;
}

.room-desc {
    font-size    : 0.8rem;
    color        : var(--ink-muted);
    margin-bottom: 1rem;
}

.room-footer {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
}

.room-price {
    display    : flex;
    align-items: baseline;
    gap        : 0.25rem;
}

.price-tag {
    font-size  : 1.1rem;
    font-weight: 700;
    color      : #c9a96e;
}

.room-price small {
    font-size: 0.75rem;
    color    : var(--ink-muted);
}

/* ── Scrollbar ──────────────────────────────────────────────────── */

.rooms-grid-container::-webkit-scrollbar {
    width: 8px;
}

.rooms-grid-container::-webkit-scrollbar-track {
    background   : #f1f1f1;
    border-radius: 10px;
}

.rooms-grid-container::-webkit-scrollbar-thumb {
    background   : #c9a96e;
    border-radius: 10px;
}

.rooms-grid-container::-webkit-scrollbar-thumb:hover {
    background: #b8956a;
}

.stats-banner-section {
    background         : url('/images/metrorest_main_home.jpg') center/cover no-repeat;
    position           : relative;
}

.stats-banner-overlay {
    background: rgba(120, 85, 10, 0.72);
    padding   : 3.5rem 2rem;
}

.stats-banner-inner {
    max-width      : 1100px;
    flex-direction: column;
    text-align    : center;
    margin         : 0 auto;
    display        : flex;
    align-items    : center;
    gap            : 4rem;
}

.stats-banner-stats {
    display    : flex;
    align-items: center;
    gap        : 0;
    flex-shrink: 0;
}

.stat-banner-item {
    padding   : 0 2.5rem;
    text-align: center;
    color     : #fff;
}

.stat-banner-item:first-child {
    padding-left: 0;
}

.stat-banner-number {
    font-family  : 'Cormorant Garamond', serif;
    font-size    : clamp(1.8rem, 3vw, 2.5rem);
    font-weight  : 600;
    line-height  : 1;
    margin-bottom: 0.4rem;
    color        : #fff;
}

.stat-banner-label {
    font-size     : 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity       : 0.85;
}

.stat-banner-divider {
    width     : 1px;
    height    : 50px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.stats-banner-right {
    display       : flex;
    flex-direction: column;
    align-items   : center;
    gap           : 1.5rem;
    color         : #fff;
}

.stats-banner-text {
    font-size  : 0.9rem;
    line-height: 1.75;
    opacity    : 0.9;
    max-width  : 460px;
    margin     : 0;
}

.btn-banner-learn {
    display        : inline-block;
    background     : transparent;
    color          : #fff;
    border         : 1px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding        : 0.6rem 1.8rem;
    font-size      : 0.82rem;
    font-weight    : 500;
    letter-spacing : 0.08em;
    transition     : background 0.2s, border-color 0.2s;
    border-radius  : 3px;
}

.btn-banner-learn:hover {
    background  : rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color       : #fff;
}

/* ── Responsive ─────────────────────────────────────────────────── */


@media (max-width: 900px) {
    .stats-banner-inner {
        flex-direction: column;
        gap           : 2rem;
        text-align    : center;
    }

    .stats-banner-right {
        align-items: center;
    }

    .stat-banner-item:first-child {
        padding-left: 2.5rem;
    }
}

@media (max-width: 540px) {
    .stats-banner-stats {
        flex-direction: column;
        gap           : 1.5rem;
    }

    .stat-banner-divider {
        width : 50px;
        height: 1px;
    }
}


@media (max-width: 900px) {
    .comfort-grid {
        grid-template-columns: 1fr;
    }
    .comfort-images-col-left img {
        height: 370px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }

    .comfort-stats {
        gap: 1rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        padding              : 0 10px;
    }
}