/* A-propos Page Styles */

.story-section {
    background: var(--light-bg);
}

/* Values Section */
.values-section {
    background: var(--white);
}

.value-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-green);
    box-shadow: 0 5px 20px var(--shadow);
    opacity: 0;
    transform: translateY(30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-top-color: var(--accent-gold);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    background: var(--light-bg);
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.team-card.visible {
    opacity: 1;
    transform: scale(1);
}

.team-card:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image .placeholder-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.team-info {
    padding: 2rem;
}

.team-info .title {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-light);
    line-height: 1.8;
}

.team-description-extra {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.team-description-extra p {
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    animation: shimmer 10s ease-in-out infinite;
}

.stats-grid {
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.stat-card.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Certifications Section */
.certifications-section {
    background: var(--white);
}

.certification-content {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.certification-list {
    list-style: none;
    margin: 0;
}

.certification-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(45, 90, 45, 0.1);
}

.certification-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.2);
}

.certification-list strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.certification-list p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .certification-content {
        padding: 2rem 1.5rem;
    }
    
    .certification-list li {
        gap: 1rem;
    }
    
    .cert-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
