/* static/css/about.css */

.about-container {
    padding: 150px 50px 100px;
    max-width: 1000px; /* Okuma kolaylığı için çok geniş yapmıyoruz */
    margin: 0 auto;
    color: #fff;
}

/* --- GİRİŞ BÖLÜMÜ (MANIFESTO) --- */
.manifesto-section {
    margin-bottom: 120px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 80px;
}

.manifesto-title {
    /* Global h1 ayarlarını eziyoruz */
    font-size: 4rem;
    margin-bottom: 40px;
    line-height: 1.1;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.manifesto-text {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* --- HİKAYE VE VİZYON (İKİ KOLON) --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.story-col h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold-color);
    padding-left: 20px;
}

.story-col p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- İSTATİSTİK ŞERİDİ --- */
.stats-bar {
    display: flex;
    justify-content: space-between;
    background: #111;
    padding: 60px;
    border-radius: 4px;
    margin-bottom: 120px;
    border: 1px solid #222;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--art-font);
    font-size: 3.5rem;
    color: var(--gold-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

/* --- KURUCU / İMZA --- */
.founder-section {
    text-align: right;
    margin-top: 50px;
}

.quote {
    font-family: var(--art-font);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.signature {
    font-family: var(--art-font), cursive; /* El yazısı efekti (Sistemde varsa) */
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-top: 20px;
}

/* --- ANİMASYON --- */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- SEÇİCİ KURUL BÖLÜMÜ --- */
.committee-section {
    margin-bottom: 120px;
    border-top: 1px solid #222; /* Üstüne ince bir çizgi */
    padding-top: 80px;
}

.committee-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--gold-color);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolonlu yapı */
    gap: 50px; /* Kartlar arası boşluk */
    row-gap: 80px; /* Satırlar arası boşluk */
}

.member-card {
    text-align: center;
    group: block; /* Hover grubu */
}

/* Üye Fotoğrafı */
.member-photo-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px; /* Ortala ve alttan boşluk bırak */
    border-radius: 50%; /* Yuvarlak resim */
    overflow: hidden;
    border: 2px solid #333; /* Çerçeve */
    transition: border-color 0.3s ease;
}

.member-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Başlangıçta Siyah-Beyaz */
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Efektleri */
.member-card:hover .member-photo-frame {
    border-color: var(--gold-color); /* Çerçeve altın olur */
}

.member-card:hover .member-photo-frame img {
    filter: grayscale(0%); /* Resim renklenir */
    transform: scale(1.1); /* Hafif büyür */
}

/* İsim ve Unvan */
.member-name {
    font-family: var(--art-font);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.member-role {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MOBİL GÜNCELLEMESİ (Mevcut @media bloğunun içine ekle) */
/* Eğer about.css'de en altta @media varsa onun içine şu satırı ekle: */
/* .committee-grid { grid-template-columns: 1fr; } */

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .about-container { padding: 120px 20px 50px; }
    .manifesto-title { font-size: 2.5rem; }
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .stats-bar { flex-direction: column; gap: 40px; }
    .committee-grid { grid-template-columns: 1fr; }
}