/* 分店详情页面样式 */
.hotel-detail {
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

/* 第一部分：图文介绍 */
.hotel-intro {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.intro-text .location {
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-text .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info i {
    width: 20px;
    color: #e74c3c;
}

/* 第二部分：图片精选 */
.hotel-gallery {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.hotel-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    margin: 0;
    text-align: center;
}

/* 第三部分：交通地图 */
.hotel-map {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.hotel-map h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.map-container {
    margin: 0 auto 3rem;
    max-width: 1200px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 100%;
}

.transportation-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.transport-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-5px);
}

.transport-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.transport-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.transport-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* 第四部分：法律声明 */
.legal-notice {
    padding: 4rem 0;
}

.legal-notice h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notice-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .map-container {
        height: 400px;
    }
    
    .transportation-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .intro-text .description {
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }
    
    .transportation-info {
        grid-template-columns: 1fr;
    }
    
    .transport-item {
        padding: 1.5rem;
    }
} 