/* Styles spécifiques pour la page À propos */

/* Section About Story - Design moderne */
.about-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 180, 131, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-story .container {
    position: relative;
    z-index: 2;
}

.about-story .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-story .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--light-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story .section-header .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Histoire simple et élégante */
.story-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.story-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.story-text:hover::before {
    transform: scaleX(1);
}

.story-text:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.story-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--light-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: justify;
}

.story-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* Styles supprimés - Image retirée */

/* Statistiques améliorées */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stats:hover::before {
    transform: scaleX(1);
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Section Mission - Design complètement refait */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-color) 100%);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 180, 131, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

.mission-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-section .section-header .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-highlight {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-highlight:hover::before {
    transform: scaleX(1);
}

.mission-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white !important;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mission-icon i {
    color: white !important;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    line-height: 1;
    font-weight: 900;
}

.mission-highlight:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.6);
}

.mission-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-size: 1.2rem;
}

/* Grille des fonctionnalités de la mission */
.mission-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.mission-section .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mission-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-section .feature-card:hover::before {
    transform: scaleX(1);
}

.mission-section .feature-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.mission-section .feature-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(212, 180, 131, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.mission-section .feature-card:hover .icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(212, 180, 131, 0.25));
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.mission-section .feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-section .feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Section Valeurs - Design complètement refait */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 180, 131, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-section .section-header .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.values-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(212, 180, 131, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(212, 180, 131, 0.25));
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-content {
        max-width: 800px;
    }
    
    .about-story .section-header h2,
    .mission-section .section-header h2,
    .values-section .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-story,
    .mission-section,
    .values-section {
        padding: 4rem 0;
    }
    
    .story-content {
        max-width: 100%;
        margin: 0 auto 3rem;
    }
    
    .story-text {
        padding: 2.5rem;
    }
    
    .story-text h3 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .mission-highlight {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-story .section-header h2,
    .mission-section .section-header h2,
    .values-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .story-text {
        padding: 2rem;
    }
    
    .story-text h3 {
        font-size: 1.6rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .mission-highlight {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-story .section-header h2,
    .mission-section .section-header h2,
    .values-section .section-header h2 {
        font-size: 1.8rem;
    }
}
