/* ==========================================================================
   QER-DER · Qerbaşi Aşireti Derneği — site stilleri
   ========================================================================== */

:root {
  --navy-950: #061B2C;
  --navy-900: #082D43;
  --navy-800: #123D56;
  --navy-700: #1B4C69;
  --primary: #486327;
  --primary-hover: #354D1C;
  --primary-soft: #EDF1E4;
  --gold: #92752C;
  --gold-hover: #765D20;
  --gold-light: #E8C570;
  --gold-pale: #F0E2BD;
  --page: #FAF8F3;
  --surface: #FFFFFF;
  --text: #101E35;
  --text-strong: #0B2439;
  --muted: #475164;
  --muted-soft: #6B7486;
  --border: #DFD6C4;
  --border-soft: #EDE6D8;
  --dot: #B8B7B2;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', 'Segoe Script', cursive;
  --font-ui: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;

  --container: 1440px;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-drop: 0 14px 34px rgba(6, 27, 44, .16);
  --shadow-card: 0 10px 26px rgba(6, 27, 44, .10);
  --shadow-btn: 0 2px 6px rgba(6, 27, 44, .12);
  --t-fast: 180ms ease;
  --t-slide: 300ms ease;
  --header-h: 76px;
}

@media (prefers-reduced-motion: reduce) {
  :root { --t-fast: 0ms; --t-slide: 0ms; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-strong); line-height: 1.16; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.35em; }
hr { border: 0; border-top: 1px solid var(--border-soft); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid #2F6FA8;
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy-900); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-family: var(--font-ui); font-size: 15px; transition: top var(--t-fast);
}
.skip-link:focus { top: 0; color: #fff; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
@media (min-width: 1100px) { .container { width: min(100% - 112px, var(--container)); } }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 11px 24px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 1.2;
  cursor: pointer; text-align: center;
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn .btn-ico { display: inline-flex; width: 19px; height: 19px; flex: none; }
.btn .btn-ico svg { width: 100%; height: 100%; }
.btn .btn-arrow { width: 18px; height: 18px; flex: none; transition: transform var(--t-fast); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary { background: linear-gradient(180deg, #52713A 0%, #466026 60%, #3F5921 100%); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: linear-gradient(180deg, #476029 0%, #3A5219 100%); color: #fff; }

.btn-gold { background: linear-gradient(180deg, #A98A3C 0%, #92752C 60%, #86691F 100%); color: #fff; box-shadow: var(--shadow-btn); }
.btn-gold:hover { background: linear-gradient(180deg, #93762C 0%, #765D20 100%); color: #fff; }

.btn-ghost { background: transparent; border-color: var(--border); color: var(--text-strong); }
.btn-ghost:hover { background: var(--page); border-color: #CDBF9F; color: var(--text-strong); }

.btn-gold-outline {
  background: rgba(6, 27, 44, .34); border-color: var(--gold-light); color: var(--gold-light);
  backdrop-filter: blur(2px);
}
.btn-gold-outline:hover { background: rgba(232, 197, 112, .18); color: #F5DFAB; border-color: #F5DFAB; }

.btn-lg { min-height: 50px; padding: 13px 28px; font-size: 17px; }
.btn-block { width: 100%; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

/* ==========================================================================
   ÜST BİLGİ
   ========================================================================== */
.site-header {
  position: relative; z-index: 30;
  background: #FDFCFA;
  border-bottom: 1px solid rgba(223, 214, 196, .8);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: clamp(200px, 21vw, 300px); height: auto; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border: 1px solid var(--border);
  background: #fff; border-radius: var(--radius-sm); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-list { display: flex; align-items: center; gap: clamp(14px, 1.9vw, 30px); list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 2px 8px; border: 0; background: none;
  font-family: var(--font-body); font-size: clamp(14px, 1.05vw, 15.5px); font-weight: 600;
  color: #14314E; cursor: pointer; white-space: nowrap;
  position: relative; transition: color var(--t-fast);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-fast);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after, .nav-link.is-active::after, .nav-link[aria-expanded="true"]::after { transform: scaleX(1); }
.nav-link.is-active { color: #14314E; }
.nav-caret { display: inline-flex; width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav-caret svg { width: 100%; height: 100%; }
.nav-link[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-cta { min-height: 44px; padding: 10px 26px; font-size: 16px; }

/* açılır menü */
.nav-drop {
  position: absolute; top: calc(100% + 12px); left: -22px; z-index: 40;
  min-width: 232px; margin: 0; padding: 8px 0; list-style: none;
  background: var(--surface);
  border: 1px solid var(--border-soft); border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-drop);
  animation: dropIn 160ms ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-drop[hidden] { display: none; }
.nav-drop a {
  display: flex; align-items: center; min-height: 46px; padding: 8px 22px;
  font-size: 16px; font-weight: 500; color: #14314E;
  transition: background-color var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}
.nav-drop a:hover, .nav-drop a:focus-visible { background: var(--page); color: var(--primary); padding-left: 26px; }
.nav-drop a[aria-current="page"] { color: var(--primary); font-weight: 600; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--navy-950); isolation: isolate; }
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background-position: right center; background-size: cover; background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 20%, rgba(0,0,0,.75) 38%, #000 52%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 20%, rgba(0,0,0,.75) 38%, #000 52%);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,27,44,.94) 0%, rgba(6,27,44,.86) 26%, rgba(6,27,44,.55) 44%, rgba(6,27,44,.12) 68%, rgba(6,27,44,.05) 100%),
    linear-gradient(180deg, rgba(6,27,44,.28) 0%, rgba(6,27,44,0) 30%, rgba(6,27,44,.34) 100%);
}
.hero__inner {
  position: relative;
  min-height: clamp(340px, 24.5vw, 404px);
  padding: 38px 0 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__content { max-width: 520px; }

.hero__eyebrow {
  display: flex; align-items: center; gap: 18px; margin: 0 0 14px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: #EFE6D3;
}
.hero__eyebrow::after { content: ""; flex: none; width: 62px; height: 2px; background: linear-gradient(90deg, var(--gold-light), rgba(232,197,112,.15)); }

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(2.15rem, 3.9vw, 3.5rem);
  line-height: 1.07; font-weight: 700; color: #fff;
  letter-spacing: -.01em;
  text-shadow: 0 2px 18px rgba(6, 27, 44, .55);
}
.hero__title .gold {
  background: linear-gradient(180deg, #F6E3B4 0%, #E8C570 45%, #C9A047 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-light);
}
@supports not (-webkit-background-clip: text) { .hero__title .gold { color: var(--gold-light); -webkit-text-fill-color: currentColor; } }

.hero__text {
  max-width: 470px; margin: 0 0 26px;
  font-size: clamp(15.5px, 1.15vw, 17px); line-height: 1.62;
  color: rgba(255, 255, 255, .93);
  text-shadow: 0 1px 10px rgba(6, 27, 44, .5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__script {
  position: absolute; right: 3%; top: 26%; margin: 0; z-index: 2;
  font-family: var(--font-script); font-size: clamp(28px, 3vw, 46px); line-height: 1.15;
  color: #F6E7C2; text-align: center; transform: rotate(-7deg);
  text-shadow: 0 2px 14px rgba(6, 27, 44, .45);
  pointer-events: none;
}
.hero__script span { display: block; }
.hero__script span + span { margin-left: 26px; }

.hero__quote {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  margin: 0; width: max-content; max-width: 90%;
  font-size: 15px; font-style: italic; color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 10px rgba(6, 27, 44, .6); text-align: center;
}

/* hero slider */
.hero-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dots button {
  width: 34px; height: 34px; padding: 0; border: 0; background: none; cursor: pointer;
  display: grid; place-items: center;
}
.hero-dots button::before {
  content: ""; width: 22px; height: 3px; border-radius: 3px;
  background: rgba(255, 255, 255, .45); transition: background-color var(--t-fast), width var(--t-fast);
}
.hero-dots button[aria-current="true"]::before { background: var(--gold-light); width: 30px; }
.hero-slide[hidden] { display: none; }

/* ==========================================================================
   ANA SAYFA — İKİ KOLON
   ========================================================================== */
.home-main { background: var(--surface); padding: 40px 0 44px; }
.home-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, .92fr);
  gap: 0 38px; align-items: start;
}
.home-divider { align-self: stretch; background: linear-gradient(180deg, rgba(232,197,112,0), #E7D9B4 18%, #E7D9B4 82%, rgba(232,197,112,0)); }

.section-title { font-size: clamp(1.7rem, 2.4vw, 2.15rem); margin: 0 0 14px; letter-spacing: -.01em; }
.section-rule { display: block; width: 44px; height: 3px; border-radius: 3px; background: var(--gold); margin: 0 0 20px; }
.section-title--center { text-align: center; }
.section-rule--center { margin-inline: auto; }

/* Başkanın mesajı */
.president { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 30px; align-items: start; }
.president__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--page); }
.president__photo img { width: 100%; aspect-ratio: 335 / 228; object-fit: cover; object-position: center 22%; }
.president__lead { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin-bottom: 22px; }
.president__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.president__sign { margin: 0; }
.president__sign span { display: block; font-size: 13.5px; color: var(--muted-soft); margin-bottom: 4px; }
.president__sign strong { display: block; font-size: 16px; color: var(--text-strong); font-weight: 600; }
.president__sign img { max-height: 46px; width: auto; margin-top: 2px; }

/* Haber slider */
.news-slider { position: relative; padding: 0 0 34px; }
.news-slider__viewport { position: relative; }
.news-slide { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 26px; align-items: start; }
.news-slide[hidden] { display: none; }
.news-slide__figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--page); }
.news-slide__figure img { width: 100%; aspect-ratio: 285 / 173; object-fit: cover; }
.news-slide__title { font-size: clamp(1.2rem, 1.6vw, 1.45rem); margin: 0 0 10px; line-height: 1.28; }
.news-slide__title a { color: var(--text-strong); }
.news-slide__title a:hover { color: var(--primary); }
.news-slide__text { color: var(--muted); font-size: 16px; line-height: 1.62; margin: 0 0 14px; }
.news-slide__date { font-size: 13.5px; color: var(--muted-soft); margin: 0 0 8px; font-family: var(--font-ui); }
.link-more { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15.5px; color: var(--primary); }
.link-more svg { width: 17px; height: 17px; transition: transform var(--t-fast); }
.link-more:hover svg { transform: translateX(4px); }

.news-nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid #E4D9BE; color: var(--navy-900);
  box-shadow: 0 3px 12px rgba(6, 27, 44, .10); cursor: pointer;
  transition: background-color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.news-nav svg { width: 20px; height: 20px; }
.news-nav:hover { background: var(--page); border-color: var(--gold); }
.news-nav--prev { left: -23px; }
.news-nav--next { right: -23px; }

.news-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.news-dots button {
  width: 26px; height: 26px; padding: 0; border: 0; background: none; cursor: pointer;
  display: grid; place-items: center;
}
.news-dots button::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--dot);
  transition: background-color var(--t-fast), transform var(--t-fast);
}
.news-dots button[aria-current="true"]::before { background: var(--primary); transform: scale(1.18); }

.empty-state {
  padding: 34px 26px; text-align: center; color: var(--muted);
  border: 1px dashed var(--border); border-radius: var(--radius); background: var(--page);
}

/* ==========================================================================
   SLOGAN BANDI
   ========================================================================== */
.quote-band { position: relative; background: var(--page); padding: 40px 0; overflow: hidden; border-top: 1px solid var(--border-soft); }
.quote-band__mountains {
  position: absolute; inset: auto 0 0; height: 88%;
  background: url("/img/mountains.svg") center bottom / 100% 100% no-repeat;
  opacity: .10;
}
.quote-band__leaf {
  position: absolute; display: block;
  -webkit-mask: url("/img/leaf-branch.svg") center / contain no-repeat;
  mask: url("/img/leaf-branch.svg") center / contain no-repeat;
}
.quote-band__leaf--l1 { left: 2%; top: 14%; width: 150px; height: 68px; background: #C9BBA1; opacity: .55; transform: scaleX(-1) rotate(6deg); }
.quote-band__leaf--l2 { left: 27%; top: 34%; width: 96px; height: 44px; background: var(--gold); opacity: .75; transform: scaleX(-1); }
.quote-band__leaf--r1 { right: 2%; top: 12%; width: 150px; height: 68px; background: #C9BBA1; opacity: .55; transform: rotate(-6deg); }
.quote-band__leaf--r2 { right: 27%; top: 34%; width: 96px; height: 44px; background: var(--gold); opacity: .75; }

.quote-band__inner { position: relative; display: flex; align-items: center; justify-content: center; gap: 26px; }
.quote-band__rule { flex: none; width: clamp(40px, 6vw, 86px); height: 1px; background: var(--gold); opacity: .85; }
.quote-band__text {
  margin: 0; text-align: center;
  font-size: clamp(1.3rem, 2.4vw, 2.15rem); font-style: italic; font-weight: 400;
  color: var(--navy-950); line-height: 1.3;
}

/* ==========================================================================
   ALT BİLGİ
   ========================================================================== */
.site-footer { background: linear-gradient(110deg, #082D43 0%, #061B2C 100%); color: #E6EBF1; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 250px) minmax(0, 1.15fr) minmax(0, .9fr) minmax(0, .95fr);
  gap: 34px; padding: 34px 0 28px; align-items: start;
}
.footer-grid > * + * { padding-left: 34px; border-left: 1px solid rgba(255, 255, 255, .10); }
.footer-brand img { width: min(210px, 100%); }
.footer-title { font-family: var(--font-display); font-size: 19px; color: #fff; margin: 0 0 14px; font-weight: 700; }
.footer-links__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 26px; }
.footer-links ul, .footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-links a, .footer-contact a { display: inline-block; padding: 4px 0; font-size: 15px; color: #C9D6E2; transition: color var(--t-fast); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }

.footer-social { display: flex; flex-wrap: wrap; gap: 12px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .30); color: #fff;
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover { background: rgba(255, 255, 255, .12); border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.footer-motto { display: flex; align-items: flex-start; justify-content: flex-end; gap: 12px; text-align: right; }
.footer-motto p { margin: 0; font-family: var(--font-display); font-size: clamp(15px, 1.25vw, 18px); font-style: italic; color: var(--gold-pale); line-height: 1.45; }
.footer-motto__leaf { color: #8FBF5B; }
.footer-motto__leaf svg { width: 26px; height: 26px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 15px 0 20px; border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 14px; color: #AEBECD;
}
.footer-bottom p { margin: 0; }
.footer-copy { flex: 1 1 auto; text-align: center; }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { color: #C9D6E2; }
.footer-legal a:hover { color: var(--gold-light); }

/* ==========================================================================
   İÇ SAYFALAR
   ========================================================================== */
.page-head { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.page-head__bg {
  position: absolute; inset: 0;
  background: url("/img/hero.jpg") center 34% / cover no-repeat;
  opacity: .30;
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,27,44,.93) 0%, rgba(6,27,44,.78) 55%, rgba(6,27,44,.6) 100%);
}
.page-head__inner { position: relative; z-index: 1; padding: 40px 0 44px; }
.page-head__eyebrow { margin: 0 0 8px; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.page-head__title { margin: 0; color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.9rem); }
.page-head__lead { margin: 14px 0 0; max-width: 760px; color: rgba(255, 255, 255, .9); font-size: 17px; }

.breadcrumb { margin: 0 0 16px; font-family: var(--font-ui); font-size: 13.5px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: rgba(255, 255, 255, .5); }
.breadcrumb a { color: rgba(255, 255, 255, .82); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

.section { padding: 48px 0; }
.section--tight { padding: 34px 0; }
.section--surface { background: var(--surface); }

.layout-2col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 330px); gap: 44px; align-items: start; }
.layout-2col--wide { grid-template-columns: minmax(0, 1fr) minmax(0, 470px); gap: 36px; }

.prose { font-size: 17px; line-height: 1.75; color: #2C3648; max-width: 78ch; }
.prose h2 { font-size: 1.6rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.28rem; margin: 1.5em 0 .45em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .45em; }
.prose blockquote {
  margin: 1.6em 0; padding: 18px 24px; border-left: 3px solid var(--gold);
  background: var(--page); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 1.1rem; color: var(--navy-800);
}
.prose img { border-radius: var(--radius); margin: 1.4em 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.figure-side { margin: 0; }
.figure-side img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.figure-side figcaption { margin-top: 10px; font-size: 14px; color: var(--muted-soft); }
.figure-side--logo img { background: var(--surface); border: 1px solid var(--border-soft); padding: 22px; box-shadow: none; }
.renk-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.renk-liste li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; align-items: start; }
.renk-liste span { width: 34px; height: 34px; border-radius: 8px; display: block; }
.renk-liste strong { display: block; font-size: 15px; color: var(--text-strong); }
.renk-liste div { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: 0 4px 16px rgba(6, 27, 44, .05);
}
.card--pad-lg { padding: 32px; }
.card + .card { margin-top: 22px; }
.card__title { font-size: 1.3rem; margin: 0 0 14px; }

/* yönetim kurulu */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 26px; }
.board-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 16px rgba(6,27,44,.05); }
.board-card__photo { aspect-ratio: 3 / 3.4; background: linear-gradient(160deg, #E9EEF3, #DDE5EC); display: grid; place-items: center; }
.board-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.board-card__photo svg { width: 64px; height: 64px; color: #9FB2C4; }
.board-card__body { padding: 18px 20px 22px; }
.board-card__name { font-size: 1.16rem; margin: 0 0 4px; }
.board-card__role { margin: 0; font-size: 14.5px; color: var(--primary); font-weight: 600; }
.board-card__bio { margin: 10px 0 0; font-size: 15px; color: var(--muted); }

/* haber listesi */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.news-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 16px rgba(6,27,44,.05); transition: transform var(--t-fast), box-shadow var(--t-fast); }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.news-card__img { aspect-ratio: 16 / 10; background: var(--page); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-family: var(--font-ui); font-size: 13px; color: var(--muted-soft); margin: 0 0 8px; }
.news-card__title { font-size: 1.18rem; margin: 0 0 10px; }
.news-card__title a { color: var(--text-strong); }
.news-card__title a:hover { color: var(--primary); }
.news-card__text { font-size: 15.5px; color: var(--muted); margin: 0 0 16px; flex: 1; }

/* IBAN kartı */
.iban-card { background: linear-gradient(120deg, #0B3350 0%, #061B2C 100%); color: #fff; border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow-card); }
.iban-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.iban-card__head svg { width: 26px; height: 26px; color: var(--gold-light); }
.iban-card__head h2 { margin: 0; color: #fff; font-size: 1.25rem; }
.iban-row { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 6px 16px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 16px; }
.iban-row:first-of-type { border-top: 0; }
.iban-row dt { color: #A9BDCE; font-size: 14.5px; }
.iban-row dd { margin: 0; font-weight: 600; word-break: break-word; }
.iban-value { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--font-ui); letter-spacing: .04em; font-size: 17px; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 6px 14px;
  border-radius: var(--radius-sm); border: 1px solid rgba(232,197,112,.55);
  background: rgba(232,197,112,.12); color: var(--gold-light);
  font-family: var(--font-ui); font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: background-color var(--t-fast);
}
.copy-btn:hover { background: rgba(232,197,112,.24); }
.copy-btn svg { width: 15px; height: 15px; }

.info-note {
  display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--radius);
  background: #FBF6E9; border: 1px solid #EBDCB6; color: #5B4715; font-size: 15.5px;
}
.info-note strong { color: #4A3A10; }
.info-note p:last-child { margin-bottom: 0; }

/* adımlar */
.steps { list-style: none; counter-reset: adim; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps li { counter-increment: adim; display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 16px; align-items: start; }
.steps li::before {
  content: counter(adim); grid-row: span 2;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary); font-weight: 700; font-family: var(--font-ui);
}
.steps strong { display: block; color: var(--text-strong); }
.steps p { margin: 2px 0 0; color: var(--muted); font-size: 15.5px; }

/* ==========================================================================
   FORMLAR
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 22px; }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field > label, .field-label { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: #2A3548; }
.field .req { color: #B3261E; }
.field .hint { font-family: var(--font-ui); font-size: 12.5px; color: var(--muted-soft); }

input:not([type]), input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"],
input[type="password"], input[type="search"], input[type="url"], select, textarea {
  width: 100%; min-height: 46px; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; color: var(--text);
  font-family: var(--font-ui); font-size: 15.5px; line-height: 1.4;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
textarea { min-height: 130px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475164' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 17px; padding-right: 38px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(72, 99, 39, .16); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #B3261E; box-shadow: 0 0 0 3px rgba(179, 38, 30, .12); }
input::placeholder, textarea::placeholder { color: #9AA3B2; }

.check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; font-family: var(--font-ui); font-size: 14.5px; color: #2A3548; line-height: 1.5; }
.check input { width: 21px; height: 21px; margin: 1px 0 0; accent-color: var(--primary); }
.check a { text-decoration: underline; }

.form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 26px; }
.form-note { font-family: var(--font-ui); font-size: 13.5px; color: var(--muted-soft); }

fieldset { border: 0; padding: 0; margin: 0 0 30px; }
fieldset legend { padding: 0; margin: 0 0 16px; font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; color: var(--text-strong); }
.fieldset-note { margin: -8px 0 16px; font-family: var(--font-ui); font-size: 14px; color: var(--muted-soft); }

.alert { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 15.5px; }
.alert strong { display: block; margin-bottom: 2px; }
.alert p { margin: 0; }
.alert__ico { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: var(--font-ui); }
.alert__ico svg { width: 15px; height: 15px; }
.alert--ok { background: #EDF4E6; border: 1px solid #C6D9AF; color: #2F4517; }
.alert--ok .alert__ico { background: var(--primary); color: #fff; }
.alert--hata { background: #FCEDEC; border: 1px solid #F0C4C0; color: #7A1F19; }
.alert--hata .alert__ico { background: #B3261E; color: #fff; }
.alert--bilgi { background: #EAF1F7; border: 1px solid #C3D6E6; color: #17384F; }
.alert--bilgi .alert__ico { background: var(--navy-800); color: #fff; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: start; }
.contact-list .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; }
.contact-list .ico svg { width: 19px; height: 19px; }
.contact-list strong { display: block; font-family: var(--font-ui); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-soft); font-weight: 700; }
.contact-list span, .contact-list a { font-size: 16.5px; color: var(--text); }
.contact-list a:hover { color: var(--primary); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--page); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ==========================================================================
   DUYARLI
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-list { gap: 16px; }
  .nav-cta { padding: 10px 18px; }
}
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%; z-index: 50;
    background: var(--surface); border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-drop);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .nav-item { border-bottom: 1px solid var(--border-soft); }
  .nav-item--cta { border-bottom: 0; padding: 14px 20px; }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 20px; font-size: 16.5px; min-height: 52px; }
  .nav-link::after { display: none; }
  .nav-link.is-active { color: var(--primary); }
  .nav-cta { width: 100%; }
  .nav-drop {
    position: static; box-shadow: none; border: 0; border-radius: 0;
    background: var(--page); padding: 4px 0; min-width: 0; animation: none;
  }
  .nav-drop a { padding-left: 36px; }

  .home-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .home-divider { display: none; }
  .layout-2col, .layout-2col--wide { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .hero__script { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > * + * { padding-left: 0; border-left: 0; }
  .footer-grid > *:nth-child(n+3) { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); }
  .footer-motto { justify-content: flex-start; text-align: left; }
}
/* Ana sayfa hâlâ iki sütunluyken (>1024px) içteki fotoğraf+metin ızgaraları
   sıkışıp metni kelime kelime kırıyordu; bu aralıkta onları alt alta alıyoruz. */
@media (min-width: 1025px) and (max-width: 1400px) {
  .president { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .president__photo img { aspect-ratio: 16 / 10; }
  .news-slide { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero__inner { min-height: 0; padding: 34px 0 44px; }
  .hero__media {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 45%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 45%, #000 100%);
  }
  .hero__scrim { background: linear-gradient(180deg, rgba(6,27,44,.92) 0%, rgba(6,27,44,.82) 55%, rgba(6,27,44,.72) 100%); }
  .hero__quote { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .president { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .president__photo img { aspect-ratio: 16 / 10; }
  .news-slide { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .news-nav--prev { left: -6px; }
  .news-nav--next { right: -6px; }
  .news-nav { width: 42px; height: 42px; background: rgba(255,255,255,.94); }
  .quote-band__leaf--l2, .quote-band__leaf--r2 { display: none; }
  .quote-band__leaf--l1, .quote-band__leaf--r1 { width: 90px; height: 42px; opacity: .35; }
  .quote-band__rule { display: none; }
  .quote-band__inner { gap: 0; }
  .form-grid, .form-grid--3 { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-copy { text-align: center; }
  .iban-row { grid-template-columns: minmax(0, 1fr); }
  .section { padding: 34px 0; }
  .card { padding: 20px; }
  .card--pad-lg { padding: 22px; }
}

@media print {
  .site-header, .site-footer, .hero__media, .hero__scrim, .news-nav, .news-dots, .quote-band__leaf { display: none !important; }
  body { background: #fff; font-size: 12pt; }
}

/* ==========================================================================
   GÜVENLİK KODU + ÜYE ALANI
   ========================================================================== */
.form-ust-not {
  margin: 0 0 20px; padding: 12px 18px; border-radius: var(--radius);
  background: var(--page); border: 1px solid var(--border-soft);
  font-family: var(--font-ui); font-size: 14.5px; color: var(--muted);
}
.form-ust-not a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.captcha { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.captcha img { border-radius: var(--radius-sm); flex: none; }
.captcha input { flex: 1 1 140px; min-width: 130px; letter-spacing: .28em; text-transform: lowercase; font-size: 17px; }
.captcha input::placeholder { letter-spacing: normal; text-transform: none; font-size: 15px; }
.captcha__yenile {
  width: 40px; height: 40px; flex: none; border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid var(--border); background: #fff; color: var(--muted);
  font-size: 19px; line-height: 1; transition: background-color var(--t-fast), color var(--t-fast);
}
.captcha__yenile:hover { background: var(--page); color: var(--primary); }

.uye-menu { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 26px; border-bottom: 1px solid var(--border-soft); }
.uye-menu__link {
  display: inline-flex; align-items: center; min-height: 46px; padding: 10px 20px;
  border: 0; background: none; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.uye-menu__link:hover { color: var(--primary); }
.uye-menu__link.is-active { color: var(--text-strong); border-bottom-color: var(--primary); }
.uye-menu__cikis { margin: 0 0 0 auto; }
.uye-menu__cikis .uye-menu__link { color: var(--muted-soft); }
.uye-menu__cikis .uye-menu__link:hover { color: #B3261E; }

.uye-kpi { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.uye-kpi__kart {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 18px 20px; box-shadow: 0 4px 16px rgba(6, 27, 44, .05); border-top: 3px solid var(--gold);
}
.uye-kpi__kart span { display: block; font-family: var(--font-ui); font-size: 13px; color: var(--muted-soft); font-weight: 600; margin-bottom: 6px; }
.uye-kpi__kart strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--text-strong); line-height: 1.2; }
.uye-kpi__kart strong.ok { color: var(--primary); }
.uye-kpi__kart strong.borc { color: #B3261E; }

.tablo-sar { overflow-x: auto; }
.basit-tablo { width: 100%; border-collapse: collapse; font-family: var(--font-ui); font-size: 14.5px; }
.basit-tablo th, .basit-tablo td { padding: 11px 12px; text-align: left; border-bottom: 1px solid var(--border-soft); white-space: nowrap; }
.basit-tablo th { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-soft); font-weight: 700; }
.basit-tablo tbody tr:last-child td { border-bottom: 0; }
.basit-tablo .sag { text-align: right; font-variant-numeric: tabular-nums; }
.basit-tablo th:first-child, .basit-tablo td:first-child { padding-left: 0; }
.basit-tablo th:last-child, .basit-tablo td:last-child { padding-right: 0; }
.alt-metin { display: block; font-size: 12.5px; color: var(--muted-soft); }
.bos-metin { margin: 0; padding: 18px 0; color: var(--muted-soft); font-size: 15px; }

.etiket { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12.5px; font-weight: 700; border: 1px solid transparent; }
.etiket--ok { background: var(--primary-soft); color: #34521B; border-color: #CBDDB6; }
.etiket--uyari { background: #FDF4E3; color: #7A5209; border-color: #EFDCB2; }
.etiket--borc { background: #FCEDEC; color: #7A1F19; border-color: #F0C4C0; }

.ozet-liste { list-style: none; margin: 0 0 18px; padding: 0; }
.ozet-liste li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--border-soft); font-family: var(--font-ui); font-size: 14.5px; }
.ozet-liste li:last-child { border-bottom: 0; }
.ozet-liste span { color: var(--muted-soft); }
.ozet-liste strong { color: var(--text-strong); text-align: right; word-break: break-word; }

.uye-foto { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border-soft); margin-bottom: 10px; }

@media (max-width: 720px) {
  .uye-menu { gap: 0; }
  .uye-menu__link { padding: 10px 14px; font-size: 15px; }
  .uye-menu__cikis { margin-left: 0; }
}
