html {
    overflow-x: hidden;
}
body {
    font-family: Arial, sans-serif;
}

.fw-serif {
    font-family: serif;
}

.room-img {
    border-radius: 1.5rem;
    overflow: hidden;
}

.room-img img {
    transition: all 0.5s ease-in-out;
}

.room-img:hover img {
    transition: transform 0.7s;
    transform: scale(1.05);
}

.amenity-badge {
    font-size: 0.625rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: #f9f7f5;
    color: #8b7355;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.check-btn {
    background-color: #2d2d2d;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.check-btn:hover {
    background-color: #8b7355;
    color: white;
}

.room-info h2 {
    font-family: serif;
}

.room-meta {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
    margin: 1rem 0;
}

.room-meta span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 300;
    color: #6c757d;
}

.room-price {
    color: #8b7355;
    font-family: serif;
    font-size: 1.5rem;
    display: block;
}

.top-m {
    margin-top: 30px !important;
}