/* 
  ================================================================
  JUPITER HOTEL — ROOMS PAGE STYLES
  File: jupiter-rooms.css
  Mục tiêu: Giao diện danh sách phòng cao cấp, rõ ràng.
  ================================================================
*/

.rooms-list-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.room-card-premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-card-premium .room-thumb {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-card-premium .room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card-premium:hover .room-thumb img {
    transform: scale(1.1);
}

.room-card-premium .room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c12318;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.room-card-premium .room-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-card-premium .room-category {
    font-size: 13px;
    color: #c12318;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.room-card-premium h3 {
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.room-card-premium h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.room-card-premium h3 a:hover {
    color: #c12318;
}

.room-card-premium .room-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.room-card-premium .room-info-list li {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-card-premium .room-info-list li i {
    color: #c12318;
    font-size: 16px;
}

.room-card-premium .room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.room-card-premium .room-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.room-card-premium .room-price span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.room-card-premium .btn-book {
    color: #c12318;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.room-card-premium .btn-book:hover {
    gap: 10px;
}

/* Facility items styling */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-item-minimal {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: border-color 0.3s ease;
}

.facility-item-minimal:hover {
    border-color: #c12318;
}

.facility-item-minimal i {
    font-size: 32px;
    color: #c12318;
    margin-bottom: 15px;
    display: block;
}

.facility-item-minimal h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .rooms-list-section {
        padding: 60px 0;
    }
    .room-card-premium .room-thumb {
        height: 220px;
    }
}
