/* ==========================================================
   alt-sayfa.css — Tüm Alt Sayfalar İçin Ortak Stiller
   Hakkımızda, Blog, Ürünler, İletişim vb. sayfalar bu
   dosyayı ortak olarak kullanır.
   ========================================================== */

/* ── Temel Reset ─────────────────────────────────────────── */
body.alt-sayfa {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    background: #f4f6f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    /* Ana sayfanın body stillerini sıfırla */
    align-items: unset;
    justify-content: unset;
    overflow-y: auto;
}

/* ── HEADER ─────────────────────────────────────────────── */
.alt-header {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.alt-header-ic {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.alt-header-aksiyonlar {
    margin-left: auto;
    flex-shrink: 0;
}

/* Logo */
.alt-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.alt-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
}

.alt-logo-simge {
    width: 42px;
    height: 42px;
    background: var(--accent, #1e1b4b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* Navigasyon (pill şeklinde) */
.alt-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    background: #f1f2f6;
    padding: 7px 14px;
    border-radius: 50px;
    max-width: 600px;
}

.alt-nav-link {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.alt-nav-link:hover {
    background: rgba(0,0,0,0.06);
    color: #1a1a2e;
}

.alt-nav-link.aktif {
    background: var(--accent, #1e1b4b);
    color: #fff;
}

/* Header sağ buton */
.alt-header-btn {
    flex-shrink: 0;
    background: var(--accent, #1e1b4b);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s, transform 0.2s;
}

.alt-header-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ── ANA İÇERİK ALANI ────────────────────────────────────── */
.alt-main {
    flex: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.alt-footer {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 22px 40px;
}

.alt-footer-ic {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.alt-footer-metin {
    font-size: 14px;
    color: #666;
    display: inline-block;
    font-weight: 400;
}

.alt-footer-metin a {
    color: #1a1a2e;
    font-weight: 700;
    text-decoration: none;
}

.alt-footer-metin a:hover {
    text-decoration: underline;
}

.alt-footer-nav {
    display: flex;
    gap: 24px;
}

.alt-footer-nav a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    transition: color 0.15s;
}

.alt-footer-nav a:hover {
    color: var(--accent, #1e1b4b);
}

/* ── Genel İçerik Sayfası ───────────────────────────── */
.icerik-sayfasi {
    gap: 32px;
}

.icerik-sayfasi-akis {
    gap: 22px;
}

.icerik-sayfasi-govde,
.icerik-sayfasi-govde p,
.icerik-sayfasi-govde li,
.icerik-sayfasi-govde blockquote {
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
}

.icerik-sayfasi-govde > *:first-child {
    margin-top: 0;
}

.icerik-sayfasi-govde > *:last-child {
    margin-bottom: 0;
}

.icerik-sayfasi-govde h2,
.icerik-sayfasi-govde h3,
.icerik-sayfasi-govde h4 {
    color: #0f172a;
    line-height: 1.25;
    margin-top: 32px;
    margin-bottom: 14px;
}

.icerik-sayfasi-govde a {
    color: var(--accent, #1e1b4b);
}

.icerik-sayfasi-govde ul,
.icerik-sayfasi-govde ol {
    padding-left: 22px;
}

.icerik-sayfasi-govde table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.icerik-sayfasi-govde table td,
.icerik-sayfasi-govde table th {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 14px;
    text-align: left;
}

.icerik-sayfasi-govde img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.icerik-sayfasi-ozet-blok {
    max-width: 1000px;
}

.icerik-sayfasi-ozet {
    margin: 0;
    font-size: 22px;
    line-height: 1.8;
    color: #475569;
    font-weight: 300;
}

/* =====================================================
   HAKKIMIZDA SAYFASINA ÖZEL STİLLER
   ===================================================== */

/* Hero Banner */
.hk-hero {
    width: 100%;
    min-height: 260px;
    background-color: var(--accent, #1e1b4b);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.hk-hero-ic {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px;
}

.hk-hero-baslik {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Giriş metni */
.hk-intro {
    width: 100%;
}

.hk-aciklama, .hk-aciklama p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Misyon / Vizyon */
.hk-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.hk-mv-kutu {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 28px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hk-mv-kutu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, #1e1b4b);
    border-radius: 20px 20px 0 0;
}

.hk-mv-kutu:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.11);
}

.hk-mv-ikon {
    width: 52px;
    height: 52px;
    background: var(--accent, #1e1b4b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.hk-mv-kutu h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.hk-mv-icerik, .hk-mv-icerik p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Foto Galeri */
.hk-galeri-bolum {
    /* gap zaten alt-main'den geliyor */
}

.hk-galeri-baslik {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.hk-galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.hk-galeri-kart {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: zoom-in;
}

.hk-galeri-kart:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

.hk-galeri-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hk-galeri-kart:hover img {
    transform: scale(1.07);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .alt-header-ic, .alt-footer-ic, .alt-main, .hk-hero-ic {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hk-hero-baslik { font-size: 38px; }
}

@media (max-width: 992px) {
    .alt-nav {
        display: none;
    }

    .alt-header-ic {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .alt-main { padding: 40px 20px 60px; }
    .icerik-sayfasi-ozet { font-size: 18px; line-height: 1.7; }
    .hk-mv { grid-template-columns: 1fr; }
    .hk-hero { min-height: 180px; }
    .hk-hero-baslik { font-size: 30px; }
    .hk-galeri-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .alt-footer-ic { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
    .hk-galeri-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-hero-baslik { font-size: 26px; }
    .alt-header-btn { display: none; }
    .alt-header-ic {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

body.alt-sayfa.mobil-menu-acik {
    overflow: hidden;
}
