/* ============================================
   LUSH SPHERE - Page À propos
   Design fidèle au Figma
   ============================================ */

/* === RESET & GÉNÉRAL === */
.about-page {
    font-family: 'Work Sans', sans-serif;
    color: #333333;
    line-height: 1.8;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: #4A4A4A;
    margin-bottom: 24px;
    text-align: center;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

/* === HERO SECTION === */
.about-hero {
    position: relative;
    height: 500px;
    background: #F8F6F3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #123524;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-title {
    font-family: 'El Messiri', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-hero-baseline {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

/* === SECTION TITLES === */
.about-section-title {
    font-family: 'El Messiri', serif;
    font-size: 36px;
    font-weight: 500;
    color: #123524;
    margin-bottom: 30px;
}

.about-section-title.centered {
    text-align: center;
}

.about-title-underline {
    width: 80px;
    height: 3px;
    background-color: #6B7345;
    margin: -10px auto 40px;
}

/* === SECTION MON PARCOURS === */
.about-journey {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.about-journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-journey-text {
    padding-right: 40px;
}

.about-journey-text .about-paragraph {
    text-align: left;
}

.about-journey-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
}

.about-founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* === SECTION MA MISSION === */
.about-mission {
    padding: 100px 0;
    background-color: #F8F6F3;
}

.about-mission-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2;
    color: #333333;
    text-align: center;
}

/* === SECTION CE DONT JE SUIS FIER === */
.about-pride {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.about-pride-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-pride-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-product-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-pride-text {
    padding-left: 40px;
}

.about-pride-text .about-paragraph {
    text-align: left;
}

/* === CTA FINAL === */
.about-cta {
    padding: 80px 0 100px;
    background-color: #F8F6F3;
    text-align: center;
}

.about-cta-title {
    font-family: 'El Messiri', serif;
    font-size: 32px;
    font-weight: 500;
    color: #123524;
    margin-bottom: 16px;
}

.about-cta-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

/* === RESPONSIVE === */

/* Mobile */
@media (max-width: 768px) {

    /* Hero */
    .about-hero {
        height: 450px;
        display: flex;
        align-items: flex-end;
        padding-bottom: 70px;
    }

    .about-container {
        padding: 0 24px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-baseline {
        font-size: 16px;
    }

    /* Sections */
    .about-journey,
    .about-mission,
    .about-pride {
        padding: 60px 0;
    }

    .about-pride-text{
        padding: 0;
    }

    .about-journey-text {
        padding: 0px;
    }

    /* Grids → 1 colonne */
    .about-journey-grid,
    .about-pride-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Textes centrés sur mobile */
    .about-journey-text .about-paragraph,
    .about-pride-text .about-paragraph {
        text-align: center;
    }

    /* Photo ronde plus petite */
    .about-photo-circle {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    /* Image produit */
    .about-product-photo {
        max-width: 100%;
    }

    /* Section titles */
    .about-section-title {
        font-size: 28px;
        text-align: center;
    }

    /* CTA */
    .about-cta {
        padding: 60px 0;
    }

    .about-cta-title {
        font-size: 26px;
    }

    .about-cta-button {
        width: 100%;
        max-width: 320px;
    }

    /* Paragraphes */
    .about-paragraph {
        font-size: 15px;
    }

    .about-mission-text {
        font-size: 16px;
    }
}