/* ========================================
   STYLES PAGE À PROPOS
   ======================================== */

.apropos-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
}

/* ========================================
   HERO SECTION AVEC LOGO
   ======================================== */

.apropos-hero {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
}

.apropos-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-xl);
    animation: fadeInDown 1s ease-out;
}

.logo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 8px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 200%;
    animation: gradientRotate 3s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

.apropos-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-secondary);
    transition: transform 0.5s ease;
}

.logo-circle:hover .apropos-logo {
    transform: scale(1.1) rotate(5deg);
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

/* ========================================
   CARTES DE CONTENU
   ======================================== */

.apropos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.apropos-intro-card {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent-primary);
    animation: fadeInUp 0.8s ease-out;
}

.apropos-intro-card p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.apropos-section-card {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.apropos-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.apropos-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.3);
}

.card-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: bounce 2s infinite;
}

.apropos-section-card h2 {
    font-size: var(--font-size-xxl);
    color: var(--accent-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.apropos-section-card p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   SECTION VALEURS
   ======================================== */

.apropos-values-section {
    margin: var(--spacing-xxl) 0;
    animation: fadeInUp 1s ease-out;
}

.values-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.values-header .card-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
}

.values-header h2 {
    font-size: var(--font-size-xxxl);
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
}

.value-card h3 {
    font-size: var(--font-size-xl);
    color: var(--accent-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.value-card p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ========================================
   SECTION CTA
   ======================================== */

.apropos-cta-section {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--spacing-xxl);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.apropos-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-icon {
    font-size: 72px;
    margin-bottom: var(--spacing-md);
    animation: bounce 2s infinite;
}

.apropos-cta-section h2 {
    font-size: var(--font-size-xxxl);
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.apropos-cta-section p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cta-buttons .btn span {
    font-size: 24px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--accent-primary);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .card-icon {
        font-size: 36px;
    }

    .apropos-section-card h2 {
        font-size: var(--font-size-xl);
    }

    .values-header .card-icon {
        font-size: 48px;
    }

    .values-header h2 {
        font-size: var(--font-size-xxl);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .apropos-cta-section {
        padding: var(--spacing-xl);
    }

    .cta-icon {
        font-size: 56px;
    }

    .apropos-cta-section h2 {
        font-size: var(--font-size-xxl);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .apropos-intro-card,
    .apropos-section-card {
        padding: var(--spacing-md);
    }

    .card-icon {
        font-size: 32px;
    }

    .apropos-section-card h2 {
        font-size: var(--font-size-lg);
    }

    .value-card {
        padding: var(--spacing-md);
    }

    .apropos-cta-section {
        padding: var(--spacing-lg);
    }

    .cta-icon {
        font-size: 48px;
    }
}
