/* website/static/website/demos/zuri_hope/css/home.css */
.section-title-blue {
    color: var(--accent-color);
}

/* --- HERO SECTION --- */

.home-hero {
    position: relative;
    width: 100%;
    color: #ffffff;
    text-align: center;
}

.hero-bg-img {
    display: block;
    width: 100%;
    height: auto;
}

.home-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.home-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
	margin-top: 6rem;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.home-hero p {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* --- IMPACT STATS STRIP (Pleine Largeur) --- */
.impact-section {
    width: 100%;
    background-color: var(--secondary-color); /* Ton bleu marine #0c3f74 */
    padding: 60px 0;
    color: white;
    margin: 50px 0;
}

.impact-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFF; /* Ton orange vif #FF9F1C */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- WHY CHOOSE US SECTION --- */
.why-us-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: #fff5eb;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: #000000;
    color: white;
    transform: scale(1.1);
}

.btn-main {
    display: inline-block;
    background-color: var(--accent-color); /* Ton bleu clair #3b80ca */
    color: #ffffff;
    padding: 15px 35px;
    margin-top: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: transparent;
    border: 2px solid color: #ffffff;
    color: #ffffff
    transform: translateY(-3px);
}


@media (max-width: 1030px) {
    /* Pattern 1 : hero plein écran avec image en couverture */
    .home-hero {
        min-height: 60vh;
        overflow: hidden;
    }
    .home-hero .hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .home-hero .hero-content {
        z-index: 2;
    }

    .home-hero h1 { font-size: 1.8rem; margin-top: 0; margin-bottom: 0.5rem; }
    .home-hero p  { font-size: 0.9rem; margin-bottom: 1rem; }
    .btn-main     { font-size: 0.85rem; padding: 10px 25px; margin-top: 0; }

    p  { padding-left: 20px; }
}