/**
 * Fichier: css/about.css
 * Ajouté le: 2026-01-21 06:23:36
 */

/* Variables globales */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #FFC107;
    --light-bg-color: #4CAF50;
    --text-color: #333;
    --white: #ffffff;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Styles pour la page À propos */

/* Hero Section */
.about-hero {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-title span {
    color: white;
    font-weight: 800;
}

.hero-tagline {
    font-size: 20px;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: #4CAF50;
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

/* Story Section - Nouvelle version améliorée */
.story-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.story-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/story-section.jpg') center center / cover no-repeat;
    filter: blur(8px);
    opacity: 0.4;
    z-index: 0;
}

.story-section > * {
    position: relative;
    z-index: 1;
}


.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-image {
    position: relative;
    flex: 1;
    max-width: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
	
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
	background: url('../images/story-image.jpg')
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
}

.founding-year {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.overlay-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.story-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #fff;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: var(--light-bg-color);
}

.mission-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #fff;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

.mission-pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar-icon i {
    font-size: 30px;
    color: white;
}

.mission-pillar h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission-pillar p {
    color: #666;
    line-height: 1.5;
}

.mission-quote {
    background-color: white;
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.mission-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mission-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.value-card {
    padding: 30px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
	background: url('../images/Nicolas1.png') center center / cover no-repeat;;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.member-role {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #4CAF50;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #388E3C;
}

/* Stats Section */
.stats-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Section */
.partners-section {
    background-color: white;
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

/* CTA Section */
.about-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
}

.btn-primary i, .btn-secondary i {
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-grid,
    .partners-grid,
    .mission-pillars,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .story-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .partners-grid,
    .mission-pillars,
    .values-grid {
        grid-template-columns: 1fr;
    }
}