/* =============================================
   PAGE: ABOUT
   Styles spécifiques à la page À Propos
============================================= */

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    border: 2px dashed rgba(255, 102, 0, 0.3);
}

.story-image i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.story-stats .stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-accent);
    font-size: 2rem;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 3rem;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--color-primary);
}

.member-role {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.member-skills span {
    padding: 5px 12px;
    background: var(--color-light);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-gray);
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-category {
    background: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-category h3 {
    color: var(--color-accent);
    margin-bottom: 20px;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-items span {
    padding: 8px 15px;
    background: var(--color-light);
    border-radius: 5px;
    font-size: 0.875rem;
    color: var(--color-gray);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-title {
        font-size: 2.75rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .values-grid,
    .team-grid,
    .tech-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tech-items {
        justify-content: flex-start;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* =============================================
   STYLES DES NOUVELLES IMAGES (HISTOIRE & ÉQUIPE)
   À AJOUTER À LA FIN DE ABOUT.CSS
============================================= */

/* --- 1. Image de l'Histoire --- */

/* Le conteneur */
.story-image {
    /* On s'assure que le conteneur a une bonne taille */
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* L'image elle-même */
.story-image img.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplir le cadre sans déformer */
    position: absolute;
    top: 0;
    left: 0;
}

/* --- 2. Images de l'Équipe --- */

/* Le conteneur rond ou carré de la photo */
.member-image {
    width: 120px;     /* Taille fixe pour un beau cercle/carré */
    height: 120px;    /* Taille fixe identique */
    
    /* Si vous voulez des photos RONDES, gardez 50%. 
       Si vous voulez des carrés arrondis, mettez 20px. */
    border-radius: 50%; 
    
    overflow: hidden; /* Coupe ce qui dépasse */
    margin-bottom: 20px; /* Espace sous la photo */
    border: 3px solid var(--color-accent); /* Petite bordure sympa */
    /* On supprime les anciens styles d'icônes s'il y en avait */
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; 
}

/* La photo à l'intérieur */
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Très important pour les portraits ! */
}