/**
 * Styles pour la page À propos - Version moderne redesignée
 */

/* ============================================
   STRUCTURE GÉNÉRALE
   ============================================ */

.section-about {
    padding: 4rem 2rem;
    background: white;
}

.section-first {
    margin-top: 90px;
}

/* Les styles .page-main-title et .section-title sont désormais définis dans styles-index.css */
/* Cela garantit une cohérence sur tout le site */

/* ============================================
   INTRODUCTION
   ============================================ */

.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.intro-text strong {
    color: #2d2d2d;
    font-weight: 600;
}

/* ============================================
   SECTION ATOUTS (Design sobre et épuré)
   ============================================ */

.atouts-container {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atout-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ee7f08;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
}

.atout-item:hover {
    box-shadow: 0 4px 16px rgba(238, 127, 8, 0.12);
    transform: translateY(-2px) translateZ(0);
}

.atout-number {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ee7f08;
    opacity: 0.2;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
}

.atout-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.atout-content h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.4rem;
    color: #2d2d2d;
    margin: 0;
    font-weight: 600;
}

.atout-content p {
    color: #5a5a5a;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* ============================================
   PHILOSOPHIE
   ============================================ */

.philosophy-section {
    max-width: 900px;
    margin: 3rem auto;
}

.philosophy-box {
    background: linear-gradient(135deg, #fff5ed 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 16px;
    border-left: 6px solid #ee7f08;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.philosophy-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(238, 127, 8, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.philosophy-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #ee7f08;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
}

.philosophy-box p {
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.philosophy-box p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */

.about-cta {
    text-align: center;
    margin: 4rem 0 2rem 0;
    padding: 2rem;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    border-radius: 12px;
}

.about-cta h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.6rem;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.cta-buttons-small {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact,
.btn-realisations {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact {
    background: #ee7f08;
    color: white;
    box-shadow: 0 3px 12px rgba(238, 127, 8, 0.3);
}

.btn-contact:hover {
    background: #d66f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(238, 127, 8, 0.4);
}

.btn-realisations {
    background: white;
    color: #ee7f08;
    border: 2px solid #ee7f08;
}

.btn-realisations:hover {
    background: #ee7f08;
    color: white;
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .section-about {
        padding: 3rem 1.5rem;
    }
    
    .atout-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .atout-number {
        font-size: 2.2rem;
    }
    
    .philosophy-box {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-box::before {
        font-size: 5rem;
        top: -10px;
        left: 15px;
    }
    
    .cta-buttons-small {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-contact,
    .btn-realisations {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 1rem;
    }
    
    .atout-item {
        grid-template-columns: 50px 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .atout-number {
        font-size: 2rem;
    }
    
    .atout-content h3 {
        font-size: 1.2rem;
    }
    
    .atout-content p {
        font-size: 1rem;
    }
}
