/* Card hover effect */
.room-card {
    transition: all 0.3s ease;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: white;
}

.room-card:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.room-card img {
    height: 18rem;
    object-fit: cover;
    width: 100%;
    transition: transform 0.7s;
}

.room-card:hover img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #212529;
}

.amenity-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
    background-color: #f8f9fa;
    color: #6c757d;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    margin-right: 1rem;
}