/* 简单Hero区域样式 - 轮播版本 */
.hero-simple {
    position: relative;
    height: 70vh;
    min-height: 550px;
    width: 100%;
    overflow: hidden;
    margin-top: -80px; /* 抵消body的padding-top */
    padding: 0 !important; /* 移除默认section的padding */
    margin-bottom: 0 !important; /* 移除底部margin */
}

/* 轮播容器 */
.hero-simple-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 单个幻灯片 */
.hero-simple-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-simple-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-simple-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-simple-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: left;
}

/* 玻璃模糊背景容器 - 圆角长方形 */
.hero-simple-glass {
    position: relative;
    max-width: 600px;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-simple-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-simple-description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

/* 轮播控制器 */
.hero-simple-controls {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-simple-prev,
.hero-simple-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.hero-simple-prev:hover,
.hero-simple-next:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: white;
    transform: translateY(-3px);
    opacity: 1;
}

.hero-simple-prev svg,
.hero-simple-next svg {
    width: 24px;
    height: 24px;
}

.hero-simple-dots {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.hero-simple-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-simple-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.hero-simple-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-simple {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-simple-glass {
        max-width: 500px;
        padding: 2.5rem 3.5rem;
        border-radius: 18px;
    }
    
    .hero-simple-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-simple-description {
        font-size: 1rem;
    }
    
    .hero-simple-prev,
    .hero-simple-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        height: 50vh;
        min-height: 400px;
        margin-top: -65px;
    }
    
    .hero-simple-slide {
        justify-content: center;
    }
    
    .hero-simple-content {
        justify-content: center;
    }
    
    .hero-simple-glass {
        max-width: 90%;
        padding: 2rem 3rem;
        border-radius: 16px;
    }
    
    .hero-simple-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-simple-description {
        font-size: 0.95rem;
    }
    
    .hero-simple-controls {
        bottom: 50px;
        gap: 15px;
    }
    
    .hero-simple-prev,
    .hero-simple-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-simple-prev svg,
    .hero-simple-next svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .hero-simple {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-simple-glass {
        max-width: 95%;
        padding: 1.5rem 2.5rem;
        border-radius: 12px;
    }
    
    .hero-simple-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-simple-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hero-simple-content {
        padding: 0 1rem;
    }
    
    .hero-simple-controls {
        bottom: 40px;
        gap: 10px;
    }
    
    .hero-simple-prev,
    .hero-simple-next {
        width: 36px;
        height: 36px;
    }
    
    .hero-simple-prev svg,
    .hero-simple-next svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-simple-dots {
        padding: 10px 15px;
        gap: 12px;
    }
    
    .hero-simple-dot {
        width: 10px;
        height: 10px;
    }
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
