﻿
/* =========================================
           2. HAKKIMIZDA ÖZEL CSS (YENİ EKLENENLER)
           (Sadece bu sayfaya özgü stiller)
           ========================================= */

/* Sayfa Başlığı (Page Header) */
.page-header {
    background-image: linear-gradient(rgba(15, 43, 70, 0.9), rgba(15, 43, 70, 0.8)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2070');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

    .page-header h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

    .breadcrumb a {
        color: var(--accent-orange);
        font-weight: 600;
        text-decoration: none;
    }

    .breadcrumb span {
        margin: 0 10px;
        color: white;
    }

/* Hikayemiz Bölümü */
.story-section {
    padding: 40px 0 80px;
}

.story-img-box {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .story-img-box img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .story-img-box:hover img {
        transform: scale(1.03);
    }

/* Vizyon/Misyon Kutuları */
.values-section {
    background-color: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.value-card {
    background: #f8f9fa;
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

    .value-card:hover {
        background: white;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transform: translateY(-5px);
        border-color: var(--accent-orange);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.value-card:hover .value-icon {
    background: var(--accent-orange);
    color: white;
}

.value-card h4 {
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 1.4rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}
