.room-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

/* Room Name Always Visible */
.room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
}

.room-overlay a {
    color: #fff;
    text-decoration: none;
}

/* Hover Details */
.room-hover-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.room-card:hover .room-hover-details {
    opacity: 1;
}

.room-hover-details h6 {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-hover-details small {
    font-size: 16px;
}

/* Buttons with Different Colors */
.room-hover-details .btn-custom {
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    transition: 0.3s;
}

.btn-more-info {
    background: #007bff;
    /* Blue */
}

.btn-more-info:hover {
    background: #0056b3;
}

.btn-book-now {
    background: #ff0000;
    /* Red */
}

.btn-book-now:hover {
    background: #cc0000;
}

