/* 联系我们页面样式 */

/* 主图区域 */
.hero-section {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-cover {
    width: 100%;
    height: 100%;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 视频播放按钮 */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-icon {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-icon span {
    font-size: 40px;
    color: #fff;
    margin-left: 5px;
}

/* 中间内容区域 */
.middle-section {
    padding: 80px 0;
    background-color: #fff;
}

.middle-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
    height: 450px;
}

/* 左侧区域：1张图片 */
.middle-left {
    flex: 1;
}

/* 中间区域：4张图片 */
.middle-center {
    flex: 2;
}

.middle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

/* 右侧区域：预订按钮 */
.middle-right {
    flex: 1;
    background-color: #d6992e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle-item {
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.middle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 预订按钮容器 */
.booking-btn-container {
    text-align: center;
    color: #fff;
}

.booking-btn {
    display: block;
    padding: 15px 40px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.booking-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 20px;
}

/* 地图区域 */
.map-section {
    padding: 80px 0;
}

#mapContainer {
    border-radius: 8px;
    overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 主图区域响应式 */
    .hero-section {
        height: 500px;
    }
    
    .play-icon {
        width: 80px;
        height: 80px;
    }
    
    .play-icon span {
        font-size: 32px;
    }
    
    /* 中间内容区域响应式 */
    .middle-section {
        padding: 40px 0;
    }
    
    .middle-layout {
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .middle-left,
    .middle-center,
    .middle-right {
        flex: none;
        height: 250px;
    }
    
    .middle-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
        height: 100%;
    }
    
    .middle-item {
        height: 120px;
    }
    
    .middle-item img {
        height: 100%;
    }
    
    .middle-right {
        height: 200px;
    }
    
    .booking-btn {
        font-size: 20px;
        padding: 12px 30px;
    }
    
    .booking-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    /* 地图区域响应式 */
    .map-section {
        padding: 40px 0;
    }
    
    #mapContainer {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* 中间内容区域响应式 */
    .middle-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .middle-item img {
        height: 150px;
    }
    
    .booking-btn-container {
        height: 150px;
    }
    
    .booking-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}