/* ==========================================
   PRODUCT / ROOMS SECTION
   ========================================== */
.rooms-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rooms-header {
    text-align: center;
    margin-bottom: 50px;
}

.rooms-header .section-title {
    color: #333333;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    height: 250px;
    background: #f4f4f2;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.room-card:hover .room-image img {
    transform: scale(1.03);
}

.room-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #222222;
    font-weight: 600;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-room {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: background var(--transition-speed);
}

.btn-room:hover {
    background: var(--primary-dark);
}