.home-page {
    background-color: var(--vert-clair);
    min-height: 100vh;
}

body {
    padding-top: 0px !important;
}

.hero-section {
    position: relative;
    background: linear-gradient(
            180deg,
            var(--vert-principal) 0%,
            var(--vert-fonce) 100%
    );
    padding: 90px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 520px;
}


.hero-stadium-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-logo {
    width: 280px;
    max-width: 80vw;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blanc);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-family: var(--police-principale);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.6;
    max-width: 560px;
    font-family: var(--police-principale);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}



.ball {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.1);
}

.ball-1 { width: 320px; height: 320px; top: -80px; right: -60px; }
.ball-2 { width: 180px; height: 180px; bottom: -40px; left: 5%; }
.ball-3 { width: 90px;  height: 90px;  top: 30%;    left: 2%;  }

.btn-primary {
    display: inline-block;
    background: var(--blanc);
    color: var(--vert-principal);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--police-principale);
    transition: background 0.2s, transform 0.15s, color 0.2s;
}

.btn-primary:hover {
    background: var(--vert-clair);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--blanc);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 11px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.45);
    text-decoration: none;
    font-family: var(--police-principale);
    transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-large {
    font-size: 1.05rem;
    padding: 14px 36px;
}

.features-section {
    padding: 64px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--blanc);
    border: 0.5px solid var(--vert-clair);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 6px 24px rgba(0, 62, 0, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--vert-clair);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vert-principal);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--vert-fonce);
    margin: 0;
    font-family: var(--police-principale);
}

.feature-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-family: var(--police-principale);
}

.cta-section {
    background: var(--vert-footer);
    padding: 64px 40px;
    text-align: center;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blanc);
    margin: 0;
    font-family: var(--police-principale);
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    margin: 0;
    font-family: var(--police-principale);
}

@media (max-width: 640px) {
    .hero-section {
        padding: 60px 20px 56px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .hero-logo {
        width: 200px;
    }

    .features-section {
        padding: 40px 20px;
    }

    .cta-section {
        padding: 48px 20px;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }
}