/* =========================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ========================================= */

.about-page {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 100vh;
}

/* Üst Görsel Alanı (Hero) */
.about-hero {
    height: 45vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('turk-bayragi-2.webp') no-repeat center center/cover;
    border-bottom: 4px solid var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15,23,42,0.6), rgba(15,23,42,1));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    background-image: linear-gradient(90deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Ana Düzen */
.about-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 20px 80px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.content-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Cam Efektli Kartlar */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Hikayemiz Kartı Özel Stili */
.story-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #cbd5e1;
    font-weight: 300;
}

/* Başlıklar */
.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 6px;
}

/* Değerlerimiz Grid (Izgara) Düzeni */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Haritaya Dön Butonu (Önceki sayfalardaki gibi) */
.back-btn {
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--primary-color);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .about-wrapper { margin-top: -30px; }
    .glass-card { padding: 30px 20px; }
    .back-btn { top: 20px; left: 20px; padding: 10px 18px; font-size: 0.85rem; }
}