@charset "UTF-8";
/* =====================================================================
   Limon Ağacı Eğitim ve Dayanışma Derneği — LimderCMS Tema
   Renk paleti logodan türetilmiştir: zeytin yeşili yapraklar + limon sarısı
   ===================================================================== */

:root {
    /* Marka renkleri */
    --leaf:        #637b3f;   /* logodaki yaprak yeşili */
    --leaf-dark:   #4c5f30;
    --leaf-deep:   #2f3d22;   /* koyu zemin / footer */
    --olive:       #524f2e;   /* başlık rengi */
    --lemon:       #f2c53d;   /* limon sarısı */
    --lemon-soft:  #fbe9a8;
    --bark:        #af3f1a;   /* logodaki gövde/turuncu vurgu */

    /* Zeminler */
    --bg:          #ffffff;
    --bg-cream:    #fbfaf3;
    --bg-sand:     #f1f5ea;
    --bg-dark:     #2f3d22;

    /* Metin */
    --text:        #2c2f26;
    --text-soft:   #55594c;
    --text-muted:  #838878;
    --on-dark:     rgba(255,255,255,.88);
    --on-dark-dim: rgba(255,255,255,.62);

    /* Çizgi & gölge */
    --border:      #e4e9dc;
    --border-soft: #eff2e9;
    --shadow-xs:   0 1px 2px rgba(47,61,34,.06);
    --shadow-sm:   0 2px 8px rgba(47,61,34,.06);
    --shadow:      0 6px 24px rgba(47,61,34,.08);
    --shadow-lg:   0 18px 48px rgba(47,61,34,.14);

    /* Ölçüler */
    --radius-xs:   8px;
    --radius-sm:   12px;
    --radius:      18px;
    --radius-lg:   26px;
    --radius-pill: 999px;
    --wrap:        1180px;
    --gutter:      24px;

    --ease:        cubic-bezier(.22,.61,.36,1);
    --transition:  .25s cubic-bezier(.22,.61,.36,1);

    --font:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--leaf-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--leaf); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    overflow-wrap: break-word;
    color: var(--olive);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -.015em;
}
p { color: var(--text-soft); }
p + p { margin-top: 14px; }

:focus-visible {
    outline: 3px solid var(--lemon);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 999;
    background: var(--leaf-dark); color: #fff; padding: 10px 18px;
    border-radius: 0 0 var(--radius-xs) var(--radius-xs); font-weight: 700;
    transition: top var(--transition);
}
.skip-link:focus { top: 0; color: #fff; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 860px; }

/* Bölümler tam genişlikte akar; panelden eklenen serbest içerikler
   (section sarmalayıcısı olmayanlar) otomatik olarak ortalanır. */
.page-content > *:not(.section):not(.page-hero):not(.hero):not(.cta-band):not(script) {
    width: 100%; max-width: var(--wrap); margin-left: auto; margin-right: auto;
    padding-left: var(--gutter); padding-right: var(--gutter);
}

/* ---------- Bölüm düzeni ---------- */
.section { padding: 76px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--bg-cream); }
.section--sand  { background: var(--bg-sand); }
.section--dark  { background: var(--bg-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow::before { content: ''; width: 14px; height: 2px; background: currentColor; border-radius: 2px; opacity: .55; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: var(--leaf); background: var(--bg-sand);
    padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--lemon); background: rgba(255,255,255,.08); }

.section-title    { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.section-subtitle { font-size: clamp(18px, 2vw, 21px); font-weight: 700; color: var(--leaf-dark); margin-bottom: 14px; }
.section-lead     { font-size: 17.5px; color: var(--text-soft); }
.page-title       { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }

.separator { width: 56px; height: 4px; background: var(--lemon); border-radius: 4px; margin-bottom: 22px; }
.section-head.center .separator { margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 26px; font-family: var(--font-heading);
    font-size: 15px; font-weight: 700; line-height: 1.2;
    border: 1.5px solid transparent; border-radius: var(--radius-pill);
    cursor: pointer; white-space: nowrap; text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.btn-primary { background: var(--leaf-dark); color: #fff !important; border-color: var(--leaf-dark); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--leaf); border-color: var(--leaf); box-shadow: 0 8px 20px rgba(99,123,63,.32); }

.btn-donate { background: var(--lemon); color: #3d3410 !important; border-color: var(--lemon); box-shadow: 0 4px 14px rgba(242,197,61,.35); }
.btn-donate:hover { background: #ffd553; border-color: #ffd553; box-shadow: 0 10px 26px rgba(242,197,61,.45); }

.btn-outline { background: transparent; border-color: var(--border); color: var(--text-soft) !important; }
.btn-outline:hover { border-color: var(--leaf); color: var(--leaf-dark) !important; background: var(--bg-cream); }

.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff !important; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: #fff; color: var(--leaf-dark) !important; border-color: #fff; }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-family: var(--font-heading); font-size: 15px; color: var(--leaf-dark); }
.link-arrow::after { content: '→'; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Üst bar ---------- */
.topbar { background: var(--leaf-deep); color: var(--on-dark-dim); font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar-contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contact a, .topbar-contact span { display: inline-flex; align-items: center; gap: 7px; color: var(--on-dark-dim); }
.topbar-contact a:hover { color: var(--lemon); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: var(--radius-xs); color: var(--on-dark-dim); background: rgba(255,255,255,.07); transition: var(--transition); }
.topbar-social a:hover { color: var(--leaf-deep); background: var(--lemon); }

/* ---------- Header ---------- */
.header {
    background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px);
    position: sticky; top: 0; z-index: 200;
    border-bottom: 1px solid var(--border-soft);
    transition: box-shadow var(--transition), padding var(--transition);
}
.header.scrolled { box-shadow: 0 6px 24px rgba(47,61,34,.09); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo-img { height: 88px; width: auto; object-fit: contain; transition: height var(--transition); }
.header.scrolled .site-logo-img { height: 68px; }

.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li > a {
    display: block; padding: 10px 14px; border-radius: var(--radius-xs);
    font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text);
    position: relative;
}
.nav-list > li > a:hover { color: var(--leaf-dark); background: var(--bg-sand); }
.nav-list > li > a.active { color: var(--leaf-dark); }
.nav-list > li > a.active::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
    height: 3px; border-radius: 3px; background: var(--lemon);
}

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-mobile-actions { display: none; }

.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; border: 1.5px solid var(--border); border-radius: var(--radius-xs);
    background: #fff; cursor: pointer; padding: 0 11px;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Ana içerik ---------- */
.main { min-height: 60vh; }
.page-content { animation: fadeUp .45s var(--ease); }

/* ---------- Anasayfa hero ---------- */
.hero { position: relative; background: var(--leaf-deep); overflow: hidden; }
.hero-slider { position: relative; }
.hero-track-wrapper { overflow: hidden; }
.hero-track { display: flex; transition: transform .7s var(--ease); will-change: transform; }
.hero-slide { flex: 0 0 100%; position: relative; overflow: hidden; height: clamp(440px, 62vh, 620px); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(35,46,25,.88) 0%, rgba(35,46,25,.66) 45%, rgba(35,46,25,.18) 100%);
}
.hero-caption {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center;
}
.hero-caption .container { width: 100%; }
.hero-text { max-width: 640px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(242,197,61,.16); border: 1px solid rgba(242,197,61,.4); color: var(--lemon);
    font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.hero-text h1, .hero-text h2 {
    color: #fff; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.12; margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.hero-text p { color: rgba(255,255,255,.92); font-size: clamp(16px, 1.7vw, 19.5px); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-nav {
    position: absolute; z-index: 3; bottom: 28px; right: max(24px, calc((100vw - 1180px) / 2 + 24px));
    display: flex; gap: 10px;
}
.hero-nav button {
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4);
    color: #fff; font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.hero-nav button:hover { background: #fff; color: var(--leaf-deep); }

.hero-dots { position: absolute; z-index: 3; bottom: 42px; left: max(24px, calc((100vw - 1180px) / 2 + 24px)); display: flex; gap: 8px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.45); transition: var(--transition); }
.hero-dots button.active { background: var(--lemon); width: 30px; border-radius: 6px; }

/* ---------- İç sayfa başlığı ---------- */
.page-hero {
    background: linear-gradient(135deg, #2f3d22 0%, #405028 100%);
    padding: 62px 0 58px; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
    border-radius: 50%; background: radial-gradient(circle, rgba(242,197,61,.16) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 17.5px; max-width: 660px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: var(--on-dark-dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--on-dark-dim); }
.breadcrumb a:hover { color: var(--lemon); }
.breadcrumb span::before { content: '/'; margin-right: 8px; opacity: .5; }

/* ---------- Grid yardımcıları ---------- */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2col.top-align { align-items: start; }
.grid-2col.wide-left  { grid-template-columns: 1.15fr .85fr; }
.grid-2col.wide-right { grid-template-columns: .85fr 1.15fr; }
.grid-3col { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.grid-4col { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }

/* ---------- Değer / özet kartları ---------- */
.value-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow-xs); transition: var(--transition); height: 100%;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d7e0c8; }
.value-icon {
    width: 54px; height: 54px; border-radius: var(--radius-sm);
    background: var(--bg-sand); color: var(--leaf-dark);
    display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 18px;
}
.value-card h3 { font-size: 19px; margin-bottom: 10px; }
.value-card p { font-size: 15.5px; }

/* ---------- Program / proje kartları ---------- */
.program-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    box-shadow: var(--shadow-xs); transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card__media { position: relative; height: 210px; overflow: hidden; background: var(--bg-sand); }
.program-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.program-card:hover .program-card__media img { transform: scale(1.06); }
.program-card__tag {
    position: absolute; left: 16px; top: 16px; z-index: 2;
    background: rgba(255,255,255,.94); color: var(--leaf-dark);
    font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
    padding: 6px 13px; border-radius: var(--radius-pill);
}
.program-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.program-card__body h3 { font-size: 20px; }
.program-card__body p { font-size: 15.5px; flex: 1; }
.program-card__body .link-arrow { margin-top: 4px; }

/* ---------- Süreç / yaklaşım adımları ---------- */
.step-list { display: grid; gap: 22px; }
.step {
    position: relative;
    display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px;
    transition: border-color var(--transition), transform var(--transition);
}
.step:hover { border-color: #d7e0c8; transform: translateX(3px); }
/* Adımları birbirine bağlayan dikey çizgi */
.step:not(:last-child)::after {
    content: ''; position: absolute; left: 53px; top: 100%; height: 22px;
    width: 2px; background: linear-gradient(var(--border), transparent);
}
.step-num {
    width: 56px; height: 56px; border-radius: 50%; background: var(--leaf-dark); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 20px; font-weight: 800;
}
.step h3 { font-size: 18.5px; margin-bottom: 6px; }
.step p { font-size: 15.5px; }

/* ---------- Öne çıkanlar şeridi ---------- */
.highlight-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.highlight-item { padding: 30px 26px; border-right: 1px solid var(--border-soft); transition: background var(--transition); }
.highlight-item:hover { background: var(--bg-cream); }
.highlight-item .value-icon { transition: transform var(--transition); }
.highlight-item:hover .value-icon { transform: translateY(-3px) rotate(-6deg); }
.highlight-item:last-child { border-right: none; }
.highlight-item strong { display: block; font-family: var(--font-heading); font-size: 18px; color: var(--olive); margin-bottom: 6px; }
.highlight-item span { font-size: 15px; color: var(--text-soft); }
.highlight-item .value-icon { width: 44px; height: 44px; font-size: 21px; margin-bottom: 14px; }

/* ---------- Alıntı ---------- */
.quote-block {
    position: relative; overflow: hidden;
    background: var(--bg-sand); border-left: 5px solid var(--lemon);
    border-radius: 0 var(--radius) var(--radius) 0; padding: 30px 34px;
}
.quote-block::before {
    content: '\201C'; position: absolute; right: 22px; top: 2px; z-index: 0;
    font-family: var(--font-heading); font-weight: 800; font-size: 128px; line-height: 1;
    color: var(--leaf); opacity: .12; pointer-events: none;
}
.quote-block p, .quote-block cite { position: relative; z-index: 1; }
.quote-block p { font-family: var(--font-heading); font-size: clamp(18px, 2.2vw, 23px); font-weight: 700; color: var(--olive); line-height: 1.5; }
.quote-block cite { display: block; margin-top: 12px; font-style: normal; font-size: 14.5px; color: var(--text-muted); }

/* ---------- Görsel karusel ---------- */
.media-carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #10160c; }
.carousel-track-wrapper { overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s var(--ease); will-change: transform; }
.carousel-slide { flex: 0 0 100%; overflow: hidden; height: 400px; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-prev, .carousel-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; z-index: 5;
    background: rgba(255,255,255,.92); color: var(--leaf-dark); font-size: 22px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.carousel-prev { left: 14px; } .carousel-next { right: 14px; }
.carousel-prev:hover, .carousel-next:hover { background: #fff; transform: translateY(-50%) scale(1.08); }

.carousel-dots { position: absolute; bottom: 16px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 8px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.5); transition: var(--transition); }
.carousel-dot.active { background: var(--lemon); width: 26px; border-radius: 5px; }

/* ---------- Fotoğraf galerisi ---------- */
.photo-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.gallery-item { position: relative; height: 230px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-xs); transition: var(--transition); border: none; padding: 0; width: 100%; background: var(--bg-sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-overlay {
    position: absolute; inset: 0; opacity: 0; transition: var(--transition);
    background: linear-gradient(to top, rgba(47,61,34,.75), rgba(47,61,34,.15));
    display: flex; align-items: flex-end; padding: 18px; color: #fff; font-size: 14.5px; font-weight: 600; text-align: left;
}
.gallery-item:hover .gallery-overlay, .gallery-item:focus-visible .gallery-overlay { opacity: 1; }

.lightbox-modal { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(12,16,9,.94); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 28px; }
.lightbox-modal.active { display: flex; }
.lightbox-content { max-width: 92%; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 22px; right: 30px; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; background: none; border: none; }

/* ---------- Bağış / CTA bandı ---------- */
.cta-band { position: relative; background: linear-gradient(120deg, #4c5f30 0%, #2f3d22 100%); padding: 66px 0; overflow: hidden; }
.cta-band::before {
    content: ''; position: absolute; left: -60px; bottom: -120px; width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(242,197,61,.18) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(25px, 3.2vw, 36px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.86); font-size: 17px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Bağış kartları ---------- */
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.donate-card {
    background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; height: 100%;
    box-shadow: var(--shadow-xs); transition: var(--transition);
}
.donate-card:hover { border-color: var(--leaf); box-shadow: var(--shadow); transform: translateY(-4px); }
.donate-card.featured { border-color: var(--lemon); background: linear-gradient(160deg, #fffdf3 0%, #ffffff 60%); }
.donate-card h3 { font-size: 20px; }
.donate-card p { font-size: 15.5px; flex: 1; }
.donate-card .btn { margin-top: 6px; }

.bank-card {
    background: linear-gradient(150deg, var(--bg-cream) 0%, var(--bg-sand) 100%);
    border: 1.5px solid #dde6ce; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm);
}
.bank-card h3 { font-size: 20px; margin-bottom: 6px; }
.bank-card > p { font-size: 15px; margin-bottom: 18px; }
.bank-row { display: flex; flex-wrap: wrap; gap: 10px 16px; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.bank-row:last-child { border-bottom: none; }
.bank-label { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; color: var(--olive); }
.bank-value { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 16px; font-weight: 700; color: var(--leaf-dark); letter-spacing: .02em; word-break: break-all; }
.copy-btn { padding: 8px 16px; font-size: 12.5px; font-weight: 800; font-family: var(--font-heading); border: none; border-radius: var(--radius-pill); background: var(--leaf-dark); color: #fff; cursor: pointer; transition: var(--transition); }
.copy-btn:hover { background: var(--leaf); }
.copy-btn.copied { background: #2e7d32; }

.note-box { background: var(--bg-cream); border: 1px dashed #d8e0c9; border-radius: var(--radius-sm); padding: 20px 22px; font-size: 15px; color: var(--text-soft); }
.note-box strong { color: var(--olive); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-xs); }
.contact-card h3 { font-size: 20px; margin-bottom: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border-soft); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--bg-sand); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.contact-item strong { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--olive); margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 15.5px; color: var(--text-soft); }
.contact-item a:hover { color: var(--leaf); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--olive); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 16px; font-size: 15.5px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--leaf); outline: none; box-shadow: 0 0 0 4px rgba(99,123,63,.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-hint { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ---------- SSS ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
    cursor: pointer; list-style: none; padding: 20px 24px;
    font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; color: var(--olive);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--leaf); flex-shrink: 0; transition: var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 15.5px; color: var(--text-soft); }

/* ---------- Instagram bandı ---------- */
.instagram-banner { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 46px 28px; box-shadow: var(--shadow-xs); }
.instagram-banner h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 10px; }
.instagram-banner p { max-width: 540px; margin: 0 auto 22px; }
.instagram-btn {
    display: inline-flex; align-items: center; gap: 12px; padding: 14px 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important; border-radius: var(--radius-pill);
    font-family: var(--font-heading); font-weight: 700; font-size: 15.5px;
    box-shadow: 0 6px 20px rgba(220,39,67,.3); transition: var(--transition);
}
.instagram-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(220,39,67,.4); }
.instagram-btn img, .instagram-btn svg { width: 24px; height: 24px; }

/* ---------- Blog / duyurular ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }
.blog-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-xs); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-body time { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--leaf); }
.blog-card-body h3 { font-size: 19.5px; }
.blog-card-body h3 a { color: var(--olive); }
.blog-card-body h3 a:hover { color: var(--leaf-dark); }
.blog-card-body p { font-size: 15.5px; flex: 1; }

.blog-single { max-width: 800px; margin: 0 auto; }
.blog-single h1 { font-size: clamp(27px, 3.6vw, 40px); margin-bottom: 14px; }
.blog-single .post-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.blog-single .post-featured-img { width: 100%; border-radius: var(--radius); margin-bottom: 30px; box-shadow: var(--shadow); }
.post-content { font-size: 17px; }
.post-content h2 { font-size: 25px; margin: 34px 0 14px; }
.post-content h3 { font-size: 20px; margin: 28px 0 12px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 0 0 18px 22px; }
.post-content ul li { list-style: disc; margin-bottom: 8px; color: var(--text-soft); }
.post-content ol li { list-style: decimal; margin-bottom: 8px; color: var(--text-soft); }
.post-content blockquote { border-left: 4px solid var(--lemon); background: var(--bg-cream); padding: 16px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 22px 0; }

.empty-state { text-align: center; padding: 60px 24px; background: var(--bg-cream); border: 1px dashed var(--border); border-radius: var(--radius); }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }

/* ---------- Metin listeleri ---------- */
.check-list { display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-size: 16px; color: var(--text-soft); }
.check-list li::before {
    content: '✓'; width: 26px; height: 26px; border-radius: 50%;
    background: var(--bg-sand); color: var(--leaf-dark);
    display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 3px;
}
.section--dark .check-list li { color: var(--on-dark); }
.section--dark .check-list li::before { background: rgba(242,197,61,.18); color: var(--lemon); }

/* Fotoğrafın altına taşan limon sarısı köşe aksanı */
.media-frame { position: relative; border-radius: var(--radius); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.media-frame::after {
    content: ''; position: absolute; right: -14px; bottom: -14px;
    width: 46%; height: 46%; z-index: 0;
    border-right: 3px solid var(--lemon); border-bottom: 3px solid var(--lemon);
    border-radius: 0 0 var(--radius) 0;
}
.section--cream .media-frame::after, .section--sand .media-frame::after { border-color: var(--leaf); }

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: 90px 24px; }
.error-404 h2 { font-size: 84px; color: var(--leaf); line-height: 1; }
.error-404 p { font-size: 18px; margin: 12px 0 26px; }

/* ---------- Footer ----------
   Sütun sütun bağlantı listesi yerine: kimlik + tek bir iletişim
   noktası, altında satır hâlinde sayfa bağlantıları.                */
.footer { background: var(--leaf-deep); color: rgba(255,255,255,.66); padding: 66px 0 0; }

.footer-main {
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px 72px; align-items: start; padding-bottom: 44px;
}
/* İletişim bloğu sağ kenara yaslanır; ortada ölü boşluk kalmaz. */
.footer-reach { justify-self: end; }

/* Logo koyu zeminde okunmadığı için footer'da yazıyla imza atılır */
.footer-wordmark { display: inline-block; margin-bottom: 20px; }
.footer-wordmark .wm-name {
    display: block; font-family: var(--font-heading);
    font-size: clamp(23px, 2.4vw, 28px); font-weight: 800; line-height: 1.05;
    color: #fff; letter-spacing: -.025em;
}
.footer-wordmark .wm-sub {
    display: block; margin-top: 8px;
    font-size: 11.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
    color: var(--lemon);
}
.footer-wordmark:hover .wm-name { color: var(--lemon); }
.footer-identity p { max-width: 470px; font-size: 15.5px; line-height: 1.72; color: rgba(255,255,255,.6); }

.footer-label {
    font-size: 11.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.footer-email {
    display: inline-block; font-family: var(--font-heading);
    font-size: clamp(17px, 1.8vw, 20px); font-weight: 700; color: #fff;
    border-bottom: 2px solid rgba(242,197,61,.5); padding-bottom: 4px;
    transition: color var(--transition), border-color var(--transition);
}
.footer-email:hover { color: var(--lemon); border-bottom-color: var(--lemon); }
.footer-meta { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.58); }
.footer-meta a { color: rgba(255,255,255,.58); }
.footer-meta a:hover { color: var(--lemon); }

.footer-social { display: flex; gap: 9px; margin-top: 24px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.8);
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--lemon); border-color: var(--lemon); color: var(--leaf-deep); }

/* Sayfa bağlantıları: sütun değil, tek satır */
.footer-nav {
    display: flex; flex-wrap: wrap; align-items: center;
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1);
}
.footer-nav a {
    position: relative; font-size: 14.5px; font-weight: 500;
    color: rgba(255,255,255,.66); padding: 3px 22px 3px 0;
}
.footer-nav a::after {
    content: '·'; position: absolute; right: 8px; color: rgba(255,255,255,.22);
}
.footer-nav a:last-child { padding-right: 0; }
.footer-nav a:last-child::after { content: none; }
.footer-nav a:hover { color: var(--lemon); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 26px;
    display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: space-between; align-items: baseline;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-iban { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; letter-spacing: .01em; }

/* ---------- Mobil bağış çubuğu ---------- */
.mobile-cta {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px; box-shadow: 0 -4px 20px rgba(47,61,34,.1);
}
.mobile-cta .btn { flex: 1; padding: 12px 10px; font-size: 14px; }

/* =====================================================================
   Hareket katmanı
   Başlangıç durumları yalnızca .js sınıfı varken uygulanır; betik
   çalışmazsa içerik her koşulda görünür kalır.
   ===================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Kaydırınca beliren öğeler */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.visible { opacity: 1; transform: none; transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .reveal--left  { transform: translateX(-26px); }
.js .reveal--right { transform: translateX(26px); }
.js .reveal--scale { transform: scale(.965); }

/* Okuma çizgisi: sayfanın ne kadarının okunduğunu gösteren ince şerit */
.scroll-progress {
    position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
    background: linear-gradient(90deg, var(--leaf) 0%, var(--lemon) 100%);
    transition: width .12s linear; pointer-events: none; z-index: 5;
}

/* Hero: etkin slaytta çok yavaş yakınlaşma + metnin sırayla girişi */
.js .hero-slide img { transform: scale(1); transition: transform 8s linear; }
.js .hero-slide.is-active img { transform: scale(1.055); }
.js .hero-text > * { opacity: 0; }
.js .hero-slide.is-active .hero-text > * { animation: heroIn .75s var(--ease) forwards; }
.js .hero-slide.is-active .hero-text > *:nth-child(1) { animation-delay: .10s; }
.js .hero-slide.is-active .hero-text > *:nth-child(2) { animation-delay: .20s; }
.js .hero-slide.is-active .hero-text > *:nth-child(3) { animation-delay: .30s; }
.js .hero-slide.is-active .hero-text > *:nth-child(4) { animation-delay: .40s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Bağlantı altı çizgisi soldan açılır */
.footer-nav a, .footer-meta a { background-image: linear-gradient(var(--lemon), var(--lemon)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0 1px; transition: background-size .3s var(--ease), color var(--transition); }
.footer-nav a:hover, .footer-meta a:hover { background-size: calc(100% - 22px) 1px; }
.footer-meta a:hover { background-size: 100% 1px; }

/* Kartlarda üstten açılan ince vurgu çizgisi */
.value-card, .program-card, .donate-card, .blog-card { position: relative; }
.value-card::after, .program-card::after, .donate-card::after, .blog-card::after {
    content: ''; position: absolute; left: 22px; right: 22px; top: 0; height: 3px;
    background: var(--lemon); border-radius: 0 0 3px 3px;
    transform: scaleX(0); transform-origin: center; transition: transform .35s var(--ease);
}
.value-card:hover::after, .program-card:hover::after, .donate-card:hover::after, .blog-card:hover::after { transform: scaleX(1); }
.program-card::after, .blog-card::after { z-index: 3; }

/* SSS cevabı açılırken yumuşak giriş */
.faq-item[open] .faq-body { animation: fadeUp .35s var(--ease); }

/* Galeri: fotoğraf üstü yazı aşağıdan gelir */
.gallery-overlay span, .gallery-overlay { transition: opacity .3s var(--ease), transform .3s var(--ease); }
.gallery-item .gallery-overlay { transform: translateY(8px); }
.gallery-item:hover .gallery-overlay, .gallery-item:focus-visible .gallery-overlay { transform: none; }

/* Lightbox açılışı */
.lightbox-modal.active .lightbox-content { animation: lightboxIn .3s var(--ease); }
@keyframes lightboxIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* Sayfa başlığındaki ışık lekesi çok yavaş salınır */
.js .page-hero::after { animation: driftGlow 18s ease-in-out infinite alternate; }
@keyframes driftGlow { from { transform: translate3d(0,0,0); } to { transform: translate3d(-40px, 30px, 0); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .js .reveal, .js .hero-text > * { opacity: 1 !important; transform: none !important; }
    .js .hero-slide img { transform: none; }
    .scroll-progress { display: none; }
}

/* ---------- Duyarlı (responsive) ---------- */
@media (max-width: 1080px) {
    .nav-list > li > a { padding: 10px 10px; font-size: 14.5px; }
    .site-logo-img { height: 72px; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-reach { justify-self: start; }
}

@media (max-width: 960px) {
    .section { padding: 48px 0; }
    .grid-2col, .grid-2col.wide-left, .grid-2col.wide-right { grid-template-columns: 1fr; gap: 34px; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-actions { justify-content: center; }
    .highlight-item { border-right: none; border-bottom: 1px solid var(--border-soft); }
    .highlight-item:last-child { border-bottom: none; }

    /* Üst bar mobilde yalnızca tek bir ikon gösteriyordu; yer kazanmak için gizlenir.
       Instagram bağlantısı footer'da ve sayfa içeriğinde zaten var. */
    .topbar { display: none; }

    /* Kompakt header */
    .header-inner { padding: 7px 0; }
    .site-logo-img { height: 50px; }
    .header.scrolled .site-logo-img { height: 44px; }
    .header-actions { display: none; }
    .hamburger { display: flex; width: 42px; height: 42px; gap: 4px; padding: 0 10px; }

    .nav {
        display: none; position: absolute; left: 0; right: 0; top: 100%;
        background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow-lg);
        padding: 8px var(--gutter) 14px; max-height: calc(100vh - 130px); overflow-y: auto;
    }
    .nav.open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 1px; }
    .nav-list > li > a { padding: 11px 12px; font-size: 15.5px; border-radius: var(--radius-xs); }
    .nav-list > li > a.active::after { display: none; }
    .nav-list > li > a.active { background: var(--bg-sand); }

    /* Aynı iki buton alttaki sabit çubukta zaten duruyor; menüde tekrar edilmez. */
    .nav-mobile-actions { display: none; }

    .mobile-cta { display: flex; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
    .mobile-cta .btn { padding: 10px 8px; font-size: 13.5px; }
    body { padding-bottom: 56px; }

    .hero-dots { left: var(--gutter); bottom: 18px; }
    .hero-nav { display: none; }
    .hero-slide { height: clamp(400px, 62vh, 470px); }
    .hero-actions { gap: 10px; margin-top: 24px; }
    /* Butonlar metne göre boyutlanır; sığmazsa alt satıra iner. */
    .hero-actions .btn { flex: 0 1 auto; padding: 12px 20px; font-size: 14.5px; }
    .hero-badge { margin-bottom: 14px; }
}

@media (max-width: 640px) {
    :root { --gutter: 16px; }
    body { font-size: 16px; }

    .section { padding: 36px 0; }
    .section--tight { padding: 26px 0; }
    .section-head { margin-bottom: 24px; }
    .section-title { line-height: 1.18; }
    .page-hero { padding: 34px 0 30px; }
    .page-hero p { font-size: 16px; }

    /* Header iyice sadeleşir */
    .site-logo-img { height: 44px; }
    .header.scrolled .site-logo-img { height: 40px; }

    .hero-slide { height: clamp(360px, 58vh, 420px); }
    .hero-text p { font-size: 15.5px; }

    .form-row { grid-template-columns: 1fr; }
    .carousel-slide { height: 220px; }
    .gallery-item { height: 150px; }
    .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .grid-3col, .grid-4col { gap: 14px; }
    .highlight-item { padding: 18px 18px; }
    .highlight-item .value-icon { width: 38px; height: 38px; font-size: 18px; margin-bottom: 10px; }
    .value-icon { width: 46px; height: 46px; font-size: 21px; margin-bottom: 14px; }
    .program-card__media { height: 170px; }
    .blog-card img { height: 175px; }

    .footer { padding-top: 44px; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; padding-bottom: 32px; }
    .footer-nav { padding: 16px 0; }
    .footer-nav a { font-size: 14px; padding-right: 18px; }
    .footer-bottom { flex-direction: column; gap: 6px; padding-bottom: 24px; }
    .bank-card, .contact-card, .value-card, .donate-card { padding: 20px 18px; }
    .instagram-banner { padding: 32px 20px; }
    .quote-block { padding: 20px; }
    .step { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px; }
    .step-num { width: 40px; height: 40px; font-size: 16px; }
    .cta-band { padding: 44px 0; }
}

/* ---------- Yazdırma ---------- */
@media print {
    .topbar, .header, .footer, .mobile-cta, .hero-nav, .hero-dots, .carousel-prev, .carousel-next { display: none !important; }
    body { padding-bottom: 0; }
    .section { padding: 20px 0; }
}
