/* -------------------------------------------------
   Police
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* -------------------------------------------------
   Global
-------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
}

/* Pour ne pas que main.css casse le fond blanc de la landing */
.landing-page {
    background: #ffffff;
}

/* Containers génériques */
.landing-section {
    width: 100%;
    padding: 80px 0;
}

/* Utilisé pour les effets reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}

/* -------------------------------------------------
   HERO
-------------------------------------------------- */
.coach-prez {
    width: 100%;
    min-height: 25vh;
    max-height: 40%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #f9fafb;
}

.hero-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 20px;
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.hero-badges {
    margin-top: 14px;
    font-size: 13px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Réseaux sociaux */
.hero-social {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
}

/* Image à droite */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: 10% -20%;
    background: radial-gradient(circle at 20% 20%, rgba(248, 250, 252, 0.2), transparent),
                radial-gradient(circle at 80% 80%, rgba(248, 250, 252, 0.15), transparent);
    pointer-events: none;
}

.hero-image {
    position: relative;
    max-width:600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.65);
    border: 2px solid rgba(248, 250, 252, 0.35);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------------------
   SECTION FORMULES
-------------------------------------------------- */

.card-home-pro {
    position: absolute;
    top: 45%;
    left: 10%;
}

.section-light {
    background: #ffffff;
}

.formulas {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.formulas-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.formulas-image img {
    width: 320px;
    max-width: 40%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.formulas-card p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.formulas-card ul {
    margin: 8px 0 14px 18px;
    padding: 0;
    font-size: 14px;
}

.link-inline {
    font-weight: 600;
    color: #3a2d00;
    text-decoration: none;
    border-bottom: 1px solid rgba(58, 45, 0, 0.4);
}

/* -------------------------------------------------
   FOOTER CONTACT
-------------------------------------------------- */
footer.landing-footer {
    background: #fff7a7;
    padding: 60px 0;
    margin-top: 40px;
}

.footer-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 16px;
    margin: 4px 0;
    line-height: 1.6;
}

.footer-left a {
    color: #3a2d00;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(58, 45, 0, 0.4);
}

.footer-right {
    max-width: 360px;
    width: 100%;
}

.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right input,
.footer-right textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #3a2d00;
    background: transparent;
    padding: 6px 2px;
    font-family: inherit;
    font-size: 14px;
}

.footer-right textarea {
    resize: vertical;
    min-height: 70px;
}



.footer-right button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.45);
}

/* -------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: left;
        gap: 32px;
    }

    .hero {
        min-height: unset;
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image-wrapper {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        max-width: 320px;
        border-radius: 24px;
    }

    .formulas-inner {
        flex-direction: column;
    }

    .formulas-card {
        order: 2;
        width: 100%;
    }

    .formulas-image {
        order: 1;
    }

    .full-photo-section {
        height: 380px;
    }
}

@media (max-width: 640px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .landing-section {
        padding: 60px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }
}
