/* =======================================================
   FICHIER : shop-about.css
   PROJET : HelloColis Shopping - Page À propos
   ======================================================= */

:root {
    --neon-blue: #3BD0FF;
    --night-blue: #0A1C30;
    --deep-black: #061120;
    --ice-white: #EAF6FF;
    --muted-blue: #cfe4ef;
    --panel-dark: rgba(10, 28, 48, 0.9);
    --header-height: 70px;
    --gold: #FFD700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Permettre le scroll */
html, body {
    overflow-y: auto !important;
    height: auto !important;
}
/* Footer version relative */
.shop-footer {
    position: relative;
    margin-top: 40px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--night-blue) 100%);
    color: var(--ice-white);
    min-height: 100vh;
}

/* SCENE PRINCIPALE */
.about-scene {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO SECTION */
.about-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--panel-dark);
    border-radius: 30px;
    border: 1px solid rgba(59, 208, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Michroma', sans-serif;
}

.hero-highlight {
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(59, 208, 255, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted-blue);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* STATS SECTION */
.stats-section {
    margin-bottom: 60px;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(59, 208, 255, 0.15);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    background: rgba(59, 208, 255, 0.05);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted-blue);
}

/* VALEURS SECTION */
.values-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--neon-blue);
    font-family: 'Michroma', sans-serif;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--panel-dark);
    border-radius: 20px;
    border: 1px solid rgba(59, 208, 255, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ice-white);
}

.value-description {
    font-size: 14px;
    color: var(--muted-blue);
    line-height: 1.5;
}

/* HISTOIRE SECTION */
.story-section {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--panel-dark);
    border-radius: 30px;
    border: 1px solid rgba(59, 208, 255, 0.1);
    align-items: center;
}

.story-content {
    flex: 2;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted-blue);
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--neon-blue);
}

.story-illustration {
    flex: 1;
    text-align: center;
}

.illustration-book {
    background: linear-gradient(135deg, rgba(59, 208, 255, 0.1), rgba(59, 208, 255, 0.05));
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(59, 208, 255, 0.3);
}

.book-icon {
    font-size: 80px;
}

/* ÉQUIPE SECTION */
.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(59, 208, 255, 0.1);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neon-blue), #2ab8e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--deep-black);
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--muted-blue);
}

/* CONTACT SECTION */
.contact-section {
    margin-bottom: 48px;
    padding: 40px;
    background: var(--panel-dark);
    border-radius: 30px;
    border: 1px solid rgba(59, 208, 255, 0.1);
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted-blue);
}

.contact-icon {
    font-size: 20px;
}

.contact-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--muted-blue);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    padding: 8px 16px;
    background: rgba(59, 208, 255, 0.1);
    border-radius: 20px;
}

.social-link:hover {
    color: var(--neon-blue);
    background: rgba(59, 208, 255, 0.2);
}

/* BOUTON RETOUR */
.back-button {
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(59, 208, 255, 0.3);
    color: var(--muted-blue);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-back:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateX(-4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-scene {
        padding-top: calc(60px + 30px);
    }

    .hero-title {
        font-size: 32px;
    }

    .stats-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stats-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .story-section {
        padding: 24px;
    }

    .contact-section {
        padding: 24px;
    }
}