﻿.rooms-page {
    padding: 120px 0;
}

.room-block {
    margin-bottom: 120px;
}

.room-photo {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .room-photo img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: .5s;
    }

    .room-photo:hover img {
        transform: scale(1.08);
    }

.room-details {
    padding: 20px 40px;
}

.room-category {
    display: inline-block;
    padding: 8px 18px;
    background: #D4AF37;
    color: #fff;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.room-details h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.room-details p {
    color: #666;
    line-height: 32px;
    margin-bottom: 25px;
}

.price-table {
    background: #fafafa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

    .price-table div {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

        .price-table div:last-child {
            border: none;
        }

    .price-table strong {
        color: #D4AF37;
        font-size: 20px;
    }

.room-details ul {
    list-style: none;
    padding: 0;
}

    .room-details ul li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

        .room-details ul li:before {
            content: "✓";
            color: #D4AF37;
            margin-right: 10px;
        }
