/* =====================================================
 * 🌙 Mefico FX — Hakkımızda Sayfası (Final & Tam Uyumlu)
 * Gece / Gündüz Temasına Tam Uyumlu CSS
 * ===================================================== */

/* -----------------------------------------------------
 * ---------- Temel Renk ve Değişkenler (DARK MODE - Varsayılan) ---------- 
 * ----------------------------------------------------- */
:root {
    /* Genel Renkler */
    --bg: #0e0f11;
    /* Arka Plan */
    --panel: #151719;
    /* Kart/Yüzey 1 */
    --panel-2: #121315;
    /* Yüzey 2 (Hero Logo Arka Planı) */
    --txt: #e9eef3;
    /* Genel Metin */
    --txt-dim: #b9c1c9;
    /* Sönük/Yardımcı Metin */
    --brand: #16d1c4;
    /* Vurgu Rengi (Mefico Turkuaz) */
    --divider: #262a2f;
    /* Bölücü Çizgi/Border */

    /* Etkileşim & Yapısal */
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    /* Gölge */
    --radius-lg: 16px;
    /* Büyük Köşe Yuvarlama */
    --radius-xl: 22px;
    /* Ekstra Büyük Köşe Yuvarlama */
}

/* -----------------------------------------------------
 * ---------- Light (Gündüz) Teması Değişkenleri ---------- 
 * ----------------------------------------------------- */
body.theme-light {
    --bg: #f7f9fb;
    --panel: #ffffff;
    --panel-2: #e9ecf0;
    /* Hafif gri arka plan */
    --txt: #0e0f11;
    --txt-dim: #525c66;
    --divider: #d9dfe5;
    --shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

/* -----------------------------------------------------
 * ---------- Genel Stil, Font ve Sıfırlamalar ---------- 
 * ----------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--txt);
    font-family: "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
    line-height: 1.6;
    transition: background .4s, color .4s;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* -----------------------------------------------------
 * ---------- Tipografi ve Linkler ---------- 
 * ----------------------------------------------------- */
h1,
h2,
h3 {
    color: var(--txt);
    /* Başlıklar her zaman ana metin renginde */
    transition: color .4s;
}

h2 {
    color: var(--brand);
    /* Kart başlıkları brand renginde kalır */
}

p strong,
li strong {
    color: var(--txt);
    /* Vurgulu kelimeler ana metin renginde */
}

/* LINK STİLİ (Mavi olmasın, marka rengini kullansın) */
a {
    color: var(--txt);
    /* Link metni, ana metin renginde başlar */
    text-decoration: none;
    border-bottom: 1px solid var(--txt-dim);
    /* Hafif alt çizgi */
    padding-bottom: 1px;
    transition: color 0.3s, border-color 0.3s;
}

a:hover {
    color: var(--brand);
    /* Hover'da markanın turkuaz rengi */
    border-color: var(--brand);
}

/* İletişim bölümü linkleri için özel düzenleme */
#iletisim li a {
    color: var(--txt);
    font-weight: 500;
}

#iletisim li a:hover {
    color: var(--brand);
}


/* -----------------------------------------------------
 * ---------- Hero Alanı (Başlık) ---------- 
 * ----------------------------------------------------- */
.hero {
    text-align: center;
    padding: 60px 20px 70px;
    /* Hafif Radyal Gradyan Efekti */
    background: radial-gradient(circle at 20% -10%, rgba(22, 209, 196, 0.15), transparent 60%), var(--bg);
    border-bottom: 1px solid var(--divider);
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    transition: background .4s, border-color .4s, box-shadow .4s;
}

.hero img.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--panel-2);
    box-shadow: 0 0 14px rgba(22, 209, 196, 0.3);
    transition: background .4s;
}

.hero h1 {
    margin: 16px 0 8px;
    font-size: 1.9rem;
}

.hero p {
    font-size: 1rem;
    max-width: 760px;
    margin: 0 auto;
    color: var(--txt-dim);
    transition: color .4s;
}

/* -----------------------------------------------------
 * ---------- Ana İçerik ve Kartlar (Card) ---------- 
 * ----------------------------------------------------- */
.main-content {
    max-width: 980px;
    margin: 32px auto;
    padding: 0 16px;
    flex-grow: 1;
    width: 100%;
}

.card {
    background: var(--panel);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px 26px;
    margin-bottom: 24px;
    transition: all .3s ease;

    opacity: 0;
    /* JS fade-in için başlangıç */
    transform: translateY(20px);
    /* JS fade-in için başlangıç */
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 12px 28px rgba(22, 209, 196, 0.25);
}

.card h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

/* Liste maddeleri */
.card ul {
    list-style: none;
    /* Varsayılan listeyi kaldır */
    padding-left: 0;
}

.card li {
    color: var(--txt-dim);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: color .4s;
}

/* Custom bullet point */
.card li::before {
    content: "→";
    /* Daha modern bir ok */
    color: var(--brand);
    font-weight: bold;
    position: absolute;
    left: 0;
    line-height: 1.6;
}

/* Küçük Yazı (Son güncelleme) */
.card small {
    display: block;
    text-align: right;
    color: var(--txt-dim);
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: color .4s;
}


/* -----------------------------------------------------
 * ---------- Scroll İzleyici Vurgusu ---------- 
 * ----------------------------------------------------- */
.active-section {
    border-color: var(--brand) !important;
    box-shadow: 0 0 16px rgba(22, 209, 196, 0.25) !important;
}

/* -----------------------------------------------------
 * ---------- Butonlar (Back & Theme Toggle) ---------- 
 * ----------------------------------------------------- */
.back-btn,
.theme-toggle {
    position: fixed;
    z-index: 250;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: var(--panel);
    border: 1px solid var(--divider);
    color: var(--txt);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.back-btn {
    top: 20px;
    left: 22px;
}

.theme-toggle {
    top: 20px;
    right: 22px;
}

.back-btn:hover,
.theme-toggle:hover {
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: 0 0 12px rgba(22, 209, 196, 0.3);
    transform: translateY(-1px);
}

/* -----------------------------------------------------
 * ---------- Footer ---------- 
 * ----------------------------------------------------- */
footer {
    background: var(--panel);
    border-top: 1px solid var(--divider);
    color: var(--txt-dim);
    text-align: center;
    padding: 24px;
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: background .4s, border-color .4s, color .4s;
    width: 100%;
}

/* -----------------------------------------------------
 * ---------- JS Animasyonları ---------- 
 * ----------------------------------------------------- */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity .6s ease-out, transform .6s ease-out;
}

/* @keyframes fadeInUp tanımı, .fade-in sınıfının geçiş süresini kontrol ettiği için artık gereksizdir. */

/* -----------------------------------------------------
 * ---------- Responsive Ayarlar ---------- 
 * ----------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        padding: 48px 14px 60px;
        border-radius: 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .main-content {
        margin: 24px auto;
        padding: 0 12px;
    }

    .card {
        padding: 18px 20px;
    }

    .theme-toggle {
        top: 14px;
        right: 14px;
        padding: 6px 10px;
    }

    .back-btn {
        top: 14px;
        left: 14px;
        padding: 6px 10px;
    }

    footer {
        padding: 18px;
        border-radius: 0;
    }
}