/* 房间页面样式 */
.room-main {
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/room/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0 5%;
    background: #f9f9f9;
}

.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.room-images {
    width: 50%;
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.room-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-content h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.room-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.room-features i {
    color: #4285F4;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4285F4;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.book-now-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .room-card {
        flex-direction: column;
    }

    .room-images {
        width: 100%;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail-container {
        position: relative;
        background: #f5f5f5;
    }

    .room-content {
        padding: 1.5rem;
    }

    .room-features {
        grid-template-columns: 1fr;
    }
}

.room-detail {
    padding: 2rem 5%;
}

.room-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.room-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    max-width: 1200px;
    margin: 0 auto;
}

.room-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.room-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.room-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: #4285F4;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.room-gallery img:hover {
    transform: scale(1.05);
}

.room-amenities {
    margin-bottom: 2rem;
}

.room-amenities h2 {
    margin-bottom: 1rem;
}

.room-amenities ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.room-amenities li {
    padding-left: 1.5rem;
    position: relative;
}

.room-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

@media screen and (max-width: 768px) {
    .room-hero {
        height: 300px;
    }

    .room-features {
        flex-direction: column;
        gap: 1rem;
    }

    .room-gallery {
        grid-template-columns: 1fr;
    }

    .room-amenities ul {
        grid-template-columns: 1fr;
    }
} 