/* ========== ABOUT SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* ABOUT HERO - MÜKEMMEL */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.15), transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    max-width: 800px;
    padding: 60px 24px;
    z-index: 2;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.about-hero-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #60a5fa;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HİKAYEMİZ BÖLÜMÜ */
.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.about-story-text p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.about-story-text strong {
    color: #1e3a8a;
}

.about-story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-story-image img:hover {
    transform: scale(1.02);
}

/* EKİP BÖLÜMÜ */
.about-team {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.team-subtitle {
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
}

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

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: background 0.2s;
}

.team-social a:hover {
    background: #3b82f6;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: #1e3a8a;
}

.team-title {
    display: inline-block;
    font-size: 0.8rem;
    color: #3b82f6;
    background: #e0e7ff;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* DEĞERLERİMİZ */
.about-values {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.about-values h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    padding: 30px 20px;
    border-radius: 20px;
    background: #f8fafc;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1e3a8a;
}

.value-card p {
    color: #64748b;
    line-height: 1.5;
}

/* İSTATİSTİKLER BÖLÜMÜ */
.about-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: white;
    text-align: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-main-stat {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 8px;
}

.about-stat-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

/* CTA BÖLÜMÜ */
.about-cta {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.about-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #64748b;
}

/* GECE MODU DÜZENLEMELERİ */
body.dark-mode .about-story {
    background-color: #0a0f2a;
}

body.dark-mode .about-story-text p {
    color: #cbd5e1;
}

body.dark-mode .about-story-text strong {
    color: #60a5fa;
}

body.dark-mode .about-team {
    background-color: #0f142e;
}

body.dark-mode .team-card {
    background-color: #11173b;
}

body.dark-mode .team-info h3 {
    color: #60a5fa;
}

body.dark-mode .team-title {
    background-color: #1e2a5e;
    color: #93c5fd;
}

body.dark-mode .team-info p {
    color: #cbd5e1;
}

body.dark-mode .about-values {
    background-color: #0a0f2a;
}

body.dark-mode .value-card {
    background-color: #11173b;
}

body.dark-mode .value-card h3 {
    color: #60a5fa;
}

body.dark-mode .value-card p {
    color: #cbd5e1;
}

body.dark-mode .about-cta {
    background-color: #0f142e;
}

body.dark-mode .about-cta h2 {
    color: #60a5fa;
}

body.dark-mode .about-cta p {
    color: #cbd5e1;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero-stats {
        gap: 30px;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-story-text h2 {
        font-size: 1.8rem;
    }
    
    .about-team h2,
    .about-values h2 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        gap: 25px;
    }
    
    .team-image {
        height: 240px;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .about-stats-grid {
        gap: 25px;
    }
    
    .about-main-stat {
        font-size: 2.2rem;
    }
    
    .about-cta h2 {
        font-size: 1.6rem;
    }
}








/* EKİP BÖLÜMÜ - FOTOĞRAF DÜZELTMESİ */
.about-team {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
}

/* FOTOĞRAF ALANI - KESİLME DÜZELTİLDİ */
.team-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    background-color: #f0f4f8;
    transition: transform 0.5s;
}

/* Fotoğrafın kesilmemesi için farklı bir yaklaşım - eğer fotoğraflar kare değilse */
.team-card:hover .team-image img {
    transform: scale(1.03);
}

/* Alternatif: Eğer fotoğraflar çok büyükse boyutlandırma */
@media (min-width: 768px) {
    .team-image img {
        object-fit: cover;
        object-position: center 20%;
    }
}

/* SOSYAL MEDYA İKONLARI */
.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: background 0.2s;
}

.team-social a:hover {
    background: #3b82f6;
}

/* KART BİLGİ ALANI */
.team-info {
    padding: 24px 20px 28px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.team-title {
    display: inline-block;
    font-size: 0.8rem;
    color: #3b82f6;
    background: #e0e7ff;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.team-info p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}
