/* ============================================
   PAGE À PROPOS - CHAUFFAGE COMPARE
   ============================================ */

/* ============================================
   HERO ABOUT
   ============================================ */

.section-hero-about .hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-hero-about .sous-titre {
    font-size: 20px;
    line-height: 1.6;
    color: var(--black);
    opacity: 0.85;
    margin: 0;
    font-weight: 500;
}

.section-hero-about .hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    margin: 15px 0;
    text-align: left;
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius-12);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary);
}

.section-hero-about .hero-description p {
    margin: 18px 0;
}

.section-hero-about .hero-description p:last-child {
    margin-bottom: 0;
}

.section-hero-about .hero-description strong {
    color: var(--primary);
    font-weight: 700;
}

.section-hero-about .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.section-hero-about .cta-buttons .btn {
    min-width: 220px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-12);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.section-hero-about .cta-buttons .btn-primary {
    background: var(--tertiary);
    color: var(--primary);
}

.section-hero-about .cta-buttons .btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0px 6px 20px rgba(239, 180, 71, 0.3);
}

.section-hero-about .cta-buttons .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.section-hero-about .cta-buttons .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0px 6px 20px rgba(21, 41, 61, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .section-hero-about {
        padding: 60px 0;
    }

    .section-hero-about h1 {
        font-size: 36px;
    }

    .section-hero-about .sous-titre {
        font-size: 18px;
    }

    .section-hero-about .hero-description {
        padding: 25px 20px;
        font-size: 16px;
    }

    .section-hero-about .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section-hero-about .cta-buttons .btn {
        min-width: auto;
        width: 100%;
    }
}


/* ============================================
   SECTION HISTOIRE
   ============================================ */
.histoire-section {
    background: var(--tertiary);
}

.histoire-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.histoire-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.histoire-section__content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
}

.histoire-section__content p {
    margin-bottom: 20px;
}

.histoire-section__content p:last-child {
    margin-bottom: 0;
}

.histoire-section__content strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   SECTION TEAM
   ============================================ */
.team-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.12);
}

.team-member__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--tertiary);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
}

.team-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-member__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.team-member__role {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.team-member__bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    margin: 10px 0 0 0;
}

/* ============================================
   SECTION VALEURS
   ============================================ */
.valeurs-section {
    background: var(--tertiary);
}

.valeurs-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.valeurs-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.valeurs-section__intro {
    font-size: 18px;
    color: var(--black);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.valeur-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    height: 100%;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valeur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}

.valeur-card__icon {
    width: 70px;
    height: 70px;
    background: var(--tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valeur-card__icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.valeur-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.valeur-card__content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
}

/* ============================================
   CTA ABOUT
   ============================================ */
.cta-about__wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.cta-about__text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
    max-width: 700px;
}

.cta-about__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Styles pour les boutons dans le CTA (surcharge si nécessaire) */
.cta-about .btn {
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-about .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.cta-about .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-about .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-about .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-about .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media screen and (max-width: 1023px) {
    .hero-about__overlay {
        padding: 60px 0;
    }

    .hero-about__title {
        font-size: 36px;
    }

    .team-grid {
        gap: 30px;
    }

    .valeurs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .valeur-card {
        padding: 30px 20px;
    }

    .cta-about__wrapper {
        padding: 50px 30px;
    }

    .cta-about__text {
        font-size: 22px;
    }
}

/* Mobile */
@media screen and (max-width: 800px) {
    .hero-about {
        min-height: 300px;
    }

    .hero-about__overlay {
        padding: 50px 0;
    }

    .hero-about__title {
        font-size: 28px;
    }

    .hero-about__subtitle {
        font-size: 16px;
    }

    .histoire-section__title,
    .team-section__title,
    .valeurs-section__title {
        font-size: 26px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member {
        padding: 30px 20px;
    }

    .team-member__photo {
        width: 120px;
        height: 120px;
    }

    .valeurs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-about__wrapper {
        padding: 40px 25px;
    }

    .cta-about__text {
        font-size: 20px;
    }

    .cta-about__buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cta-about .btn {
        width: 100%;
    }
}
