/* Hero Banner */
.landing-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* overlay sombre */
}

.landing-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.landing-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ede5de;
}

.landing-hero p {
    font-size: 1.5rem;
    line-height: 1.6; /* lisibilité */
    margin-bottom: 20px;
}

/* Sections */
.landing-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.landing-section:nth-child(even) {
    background-color: #fff;
}

.landing-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.landing-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8; /* meilleure lisibilité */
    text-align: left; /* alignement naturel */
    word-wrap: break-word;
}

/* Espace entre paragraphes consécutifs */
.landing-section p + p {
    margin-top: 1.5em;
}

/* Listes */
.landing-section ul,
.landing-section ol {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    text-align: left;
    line-height: 1.6;
}

/* Citations */
.landing-section blockquote {
    border-left: 4px solid #F6EDE7;
    padding-left: 20px;
    margin: 20px auto;
    max-width: 700px;
    font-style: italic;
    color: #555;
}

/* Boutons */
.landing-section .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #F6EDE7;
    color: #393837;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.landing-section .btn:hover {
    background-color: #e9d8c8;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2.2rem;
    }

    .landing-hero p {
        font-size: 1.2rem;
    }

    .landing-section h2 {
        font-size: 1.6rem;
    }

    .landing-section p {
        font-size: 1rem;
    }

    .landing-section ul,
    .landing-section ol {
        font-size: 1rem;
    }
}
