/* === STYLES SPÉCIFIQUES À LA PAGE À PROPOS === */

/* En-tête de page */
.page-header {
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: var(--surface-color);
    border-bottom: var(--border-width) solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--color-accent), var(--color-neon));
    opacity: 0.7;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin: 0 auto var(--space-sm);
    max-width: 100%;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Section principale à propos */
.about-main {
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.about-content {
    max-width: 100%;
}

.about-list {
    margin: var(--space-md) 0;
    padding-left: 1.5rem;
}

.about-list li {
    margin-bottom: var(--space-sm);
    position: relative;
}

.about-list li strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Terminal visuel */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-terminal {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--surface-alt-color);
    box-shadow: var(--shadow-md);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.5;
}

.terminal-header {
    background-color: var(--surface-color);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    border-bottom: var(--border-width) solid var(--border-color);
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    opacity: 0.7;
}

.terminal-button:nth-child(1) {
    background-color: #ff5f56;
}

.terminal-button:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-button:nth-child(3) {
    background-color: #27c93f;
}

.terminal-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    color: var(--muted-color);
}

.terminal-content {
    padding: 1.5rem;
    color: var(--fg-color);
}

.terminal-content pre {
    margin: 0;
    white-space: pre-wrap;
}

.terminal-content code {
    background: none;
    color: var(--fg-color);
    padding: 0;
    font-family: var(--font-mono);
}

/* Animation du terminal */
.code-terminal {
    position: relative;
    overflow: hidden;
}

.code-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    animation: scan-line 3s infinite linear;
}

@keyframes scan-line {
    0% {
        top: 0;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

/* Section équipe */
.about-team {
    background-color: var(--surface-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--grid-gap);
}

.team-member {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--bg-color);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-sm);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--surface-alt-color);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
}

.photo-placeholder::before {
    content: '{ }';
    font-family: var(--font-mono);
    opacity: 0.5;
}

.member-role {
    color: var(--accent-color);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Section valeurs */
.about-values {
    background-color: var(--bg-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--grid-gap);
}

.value-card {
    padding: var(--space-md);
    background-color: var(--surface-color);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.value-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Section histoire */
.about-history {
    background-color: var(--surface-color);
}

.history-timeline {
    position: relative;
    padding-left: 2rem;
    margin: var(--space-md) 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.history-item {
    position: relative;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: var(--border-width) solid var(--border-color);
}

.history-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.history-year {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.history-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.history-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Section CTA */
.cta-section {
    background-color: var(--surface-alt-color);
    text-align: center;
}

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

.cta-content h2 {
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2::after {
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
}

/* Responsive */
@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .history-timeline {
        padding-left: 3rem;
    }
    
    .history-item::before {
        left: -3rem;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
} 