/* Modern Room Styles */
.room-section {
    padding: 5rem 7%;
    background-color: #f4f7f6;
}

.room-section .heading {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 4rem;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.room-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.room-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    background-color: #eaf4f4;
    color: var(--primary);
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.room-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.btn-details {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-size: 1.6rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-details:hover {
    background: var(--secondary);
}
