:root {
    --primary-green: #154724;
    --accent-gold: #D4AF37;
    --soft-bg: #F9FAFB;
    --text-muted: #A6A6A6;
}

.text-muted {
    color: var(--text-muted);
    font-family: "Work Sans", sans-serif !important;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    color: #111827;
}

.playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.gold-text {
    color: var(--accent-gold);
}

.green-text {
    color: var(--primary-green);
}

/* Hero Section */
.rooms-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.rooms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.rooms-hero h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Intro Section */
.section-padding {
    padding: 80px 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Room Cards */
.room-card-row {
    margin-bottom: 60px;
    align-items: center;
}

.room-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.room-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.room-badge:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.1);
}

.room-badge svg,
.room-badge i {
    width: 20px;
    height: 20px;
}

.room-content {
    padding: 40px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

/* Overlap effect for desktop */
/* @media (min-width: 992px) {
    .room-content.overlap-right {
        margin-left: -80px;
    }

    .room-content.overlap-left {
        margin-right: -80px;
    }
} */

.room-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.room-title-group {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.room-title-group h2 {
    font-size: 24px;
    margin: 0;
    color: var(--primary-green);
}

.room-size {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.room-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin-bottom: 30px;
}

.amenity-item {
    font-size: 0.9rem;

    display: flex;
    align-items: center;
}

.amenity-item::before {
    content: '•';
    color: var(--accent-gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 8px;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #C19A2E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Icons Styles consistent with El Hotel */
.hotel-icon-badge {
    vertical-align: top;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #D1A139 0%, #F6BD43 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-icon-badge svg,
.hotel-icon-badge i {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}

/* Responsive */
@media (max-width: 991px) {
    .room-content {
        margin: 20px 0 0 0 !important;
    }

    .room-image-wrapper img {
        height: 300px;
    }

    .rooms-hero h1 {
        font-size: 1.6rem;
    }

    .room-content {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .rooms-hero {
        height: 260px;
    }

    .room-image-wrapper img {
        height: 220px;
    }

    .room-content {
        padding: 20px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .room-card-row {
        margin-bottom: 40px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .room-title-group {
        flex-wrap: wrap;
        gap: 8px;
    }
}