/* 酒店预订页面专属样式 */
.booking-page {
    background-color: #fff;
}

/* 酒店主图区域 */
.hotel-main-image {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.hotel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 酒店名称区域 */
.hotel-name-section-booking {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    margin-top: 0;
}

/* 房间列表区域 */
.rooms-section {
    padding: 60px 20px;
    background-color: #fff;
}

.rooms-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.room-type-title {
    margin: 50px 0 30px;
    text-align: center;
}

.room-type-title h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

/* 房间卡片样式 */
.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
}

.room-card:last-child {
    margin-bottom: 0;
}

.room-card-image {
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-info {
    padding: 0 20px;
}

.room-card-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.room-card-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 房间设施图标 */
.room-card-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.room-card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.room-card-feature img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.room-card-feature span {
    font-size: 12px;
    color: #666;
}

/* 预订按钮 */
.room-card-book-btn {
    width: 120px;
    height: 36px;
    background-color: #d6992e;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-card-book-btn:hover {
    background-color: #c48a25;
}

/* 查询按钮样式 */
.hotel-main-image .search-btn {
    width: 320px;
    height: 48px;
    background-color: #e6f0fa;
    border: none;
    color: #1e88e5;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    margin-top: 10%;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hotel-main-image .search-btn:hover {
    background-color: #d0e5f7;
}

.hotel-main-image .search-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* 房间卡片底部布局 */
.room-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* 价格样式 */
.room-card-price {
    font-size: 24px;
    font-weight: bold;
    color: #d6992e;
}

.room-empty {
    padding: 80px 20px;
    text-align: center;
    font-size: 24px;
    color: #999;
}



/* 查看更多按钮样式 */
.view-more-btn {
    width: 200px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 20px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #333;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .room-card {
        grid-template-columns: 1fr;
    }
    
    .room-card-image {
        height: 250px;
    }
    
    .room-card-features {
        grid-template-columns: repeat(2, 1fr);
    }
}
