/* 轮播图样式 */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 50px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: #fff;
}

/* 使命部分样式 */
.mission {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.mission h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.mission p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5em;
    color: #e67e22;
    margin-bottom: 10px;
}

/* 最新救助动物部分 */
.latest-animals {
    padding: 80px 0;
}

.latest-animals h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
}

.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.animal-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.animal-card:hover {
    transform: translateY(-5px);
}

.animal-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.animal-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5em;
}

.animal-card p {
    padding: 0 20px;
    color: #666;
}

.animal-card .btn {
    margin: 20px;
}

/* 号召性动作部分 */
.cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2em;
    }

    .mission-stats {
        gap: 20px;
    }

    .stat-item {
        flex: 100%;
    }

    .animal-grid {
        grid-template-columns: 1fr;
    }
} 