/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #ff5a5f, #ff385c);
    color: white;
    padding: 70px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 20px;
}

    .hero h1 {
        font-size: 40px;
        font-weight: bold;
    }

/* ===== CARD ===== */
.room-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .room-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

/* IMAGE */
.img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* BODY */
.room-body {
    padding: 15px;
}

    .room-body h5 {
        font-weight: 600;
    }

/* PRICE */
.price {
    color: #ff385c;
    font-weight: bold;
    margin: 10px 0;
}

/* BUTTON */
.btn-book {
    display: block;
    text-align: center;
    padding: 10px;
    background: #ff385c;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-book:hover {
        background: #e11d48;
    }
