/* 整体容器样式 */
.hotspring-container {
    padding: 40px 0;
    background-color: #ffffff;
    position: relative;
    }

/* 主标题样式 */
.hotspring-main-title {
    color: #E65100;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

.hotspring-subtitle {
    color: #795548;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hotspring-divider {
    width: 60%;
    margin: 30px auto;
    border-top: 2px solid #E65100;
    position: relative;
}

.hotspring-divider::before,
.hotspring-divider::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #E65100;
    top: -7px;
    transform: rotate(45deg);
}

.hotspring-divider::before {
    left: -6px;
}

.hotspring-divider::after {
    right: -6px;
}

/* 各部分通用样式 */
.hotspring-section {
    padding: 50px 0;
    border-bottom: 1px solid #FFE0B2;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hotspring-section:last-child {
    border-bottom: none;
}

/* 标题样式 */
.section-title {
    color: #E65100;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    font-weight: bold;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #E65100;
    margin: 15px auto;
}

/* 图片容器样式 */
.hotspring-image-container {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #FFE0B2;
}

.hotspring-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hotspring-image:hover {
    transform: scale(1.03);
}

.image-caption {
    background: rgba(230, 81, 0, 0.8);
    color: #fff;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
}

/* 内容样式 */
.hotspring-content {
    padding: 20px;
    position: relative;
}

.hotspring-content h3 {
    color: #E65100;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 4px solid #E65100;
    padding-left: 15px;
}

.hotspring-content p {
    color: #5D4037;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* 特色列表样式 */
.hotspring-features {
    background: #FFF3E0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #E65100;
}

.hotspring-features h4 {
    color: #E65100;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hotspring-features ul {
    padding-left: 0;
    list-style-type: none;
}

.hotspring-features li {
    margin-bottom: 12px;
    color: #5D4037;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: #E65100;
    margin-right: 10px;
    display: inline-block;
    width: 24px;
}

/* 特色卡片样式 */
.feature-cards {
    margin-top: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h4 {
    color: #E65100;
    font-size: 18px;
    margin: 15px;
    font-weight: bold;
}

.feature-card p {
    color: #5D4037;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px;
    padding-bottom: 15px;
}

/* 视频容器样式 */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 比例 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1px solid #FFE0B2;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF3E0;
    color: #E65100;
    font-size: 18px;
}

/* 设施内容样式 */
.facility-content {
    margin-bottom: 30px;
}

.facility-content h3 {
    color: #E65100;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.facility-content p {
    color: #5D4037;
    font-size: 16px;
    line-height: 1.8;
    margin: 15px 0;
    text-align: justify;
}

/* 服务信息样式 */
.service-content {
    background: #FFF3E0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.service-info {
    margin-bottom: 25px;
}

.service-info h4 {
    color: #E65100;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-info h4 i {
    margin-right: 10px;
}

.service-info p {
    color: #5D4037;
    margin-bottom: 10px;
    padding-left: 28px;
}

.service-tips {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #E65100;
}

.service-tips h4 {
    color: #E65100;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-tips h4 i {
    margin-right: 10px;
}

.service-tips ul {
    padding-left: 20px;
    list-style-type: none;
}

.service-tips li {
    color: #5D4037;
    margin-bottom: 10px;
    position: relative;
}

.service-tips li:before {
    content: '•';
    color: #E65100;
    position: absolute;
    left: -15px;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 确保每个部分依次显示 */
#overview {
    animation-delay: 0.2s;
}

#features {
    animation-delay: 0.4s;
}

#video {
    animation-delay: 0.6s;
}

#facilities {
    animation-delay: 0.8s;
}

#services {
    animation-delay: 1s;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hotspring-main-title {
        font-size: 28px;
    }
    
    .hotspring-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hotspring-content h3 {
        font-size: 20px;
    }
    
    .hotspring-content p {
        font-size: 14px;
    }
    
    .hotspring-section {
        padding: 30px 0;
    }
    
    .hotspring-divider {
        width: 80%;
    }
    
    .hotspring-features {
        padding: 15px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .feature-card img {
        height: 150px;
    }
}

/* 打印样式优化 */
@media print {
    .hotspring-container {
        padding: 0;
        background: none;
    }
    
    .hotspring-section {
        page-break-inside: avoid;
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .video-container {
        display: none;
    }
    
    .hotspring-image-container,
    .hotspring-features,
    .feature-card,
    .service-content,
    .service-tips {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .image-caption {
        background: #fff;
        color: #000;
        border-top: 1px solid #000;
    }
}
