/* =========================================================================
   EGE KAI DER — Tasarım Sistemi
   Palet dernek logosundaki üç iç içe geçmiş halkadan (Kars, Ardahan, Iğdır
   birlikteliğini simgeleyen düğüm) türetildi. Başlıklarda vitrin serifi,
   gövdede okunaklı bir hümanist sans kullanılır.
   ========================================================================= */

:root {
  --color-cream: #FBF7EF;
  --color-cream-deep: #F3ECDC;
  --color-charcoal: #26211C;
  --color-ink: #3A332B;

  --color-green: #1C8B4E;
  --color-green-deep: #0F6138;
  --color-maroon: #7C1F30;
  --color-maroon-deep: #5C1524;
  --color-orange: #E07A1F;
  --color-blue: #2A6AA6;

  --color-border: #E4D9C2;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-utility: "Inter", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 12px 34px rgba(38, 33, 28, 0.10);
  --shadow-card: 0 8px 22px rgba(38, 33, 28, 0.08);

  --container-w: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-maroon);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-orange);
  display: inline-block;
}

/* ---- Düğüm motifi (imza öğesi): logo'daki üç iç içe halkanın yansıması ---- */
.knot-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 8px 0 28px;
}
.knot-divider svg { width: 64px; height: auto; }

.kilim-rule {
  height: 10px;
  width: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    var(--color-maroon) 0 8px,
    var(--color-orange) 8px 16px,
    var(--color-green) 16px 24px,
    transparent 24px 32px
  );
  opacity: 0.85;
}

/* ---- Butonlar ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }
.btn-primary { background: var(--color-maroon); color: #fff; }
.btn-primary:hover { background: var(--color-maroon-deep); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-secondary { background: var(--color-green); color: #fff; }
.btn-secondary:hover { background: var(--color-green-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--color-charcoal); color: var(--color-charcoal); }
.btn-outline:hover { background: var(--color-charcoal); color: #fff; }
.btn-outline.light { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline.light:hover { background: #fff; color: var(--color-charcoal); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-danger { background: var(--color-maroon); color: #fff; }

/* =========================================================================
   ÜST MENÜ
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container-w);
  margin: 0 auto;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--color-charcoal); }
.brand-text small { display: block; font-family: var(--font-utility); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--color-maroon); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  padding: 10px 13px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--color-maroon); color: #fff; }

/* Yönetim Kurulu / Tüzük / SSS gibi ikincil bağlantılar masaüstünde menüyü
   kalabalıklaştırmamak için gizlenir — bu sayfalara footer'dan ve mobil
   menüden erişilebilir. */
.main-nav a.nav-more { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--color-charcoal); }

@media (max-width: 1120px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); height: 100vh;
    background: var(--color-cream); flex-direction: column; align-items: stretch;
    padding: 90px 22px 22px; box-shadow: -12px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--color-border); border-radius: 0; white-space: normal; }
  .main-nav a.nav-more { display: block; }
  .nav-toggle { display: block; }
  .header-actions .btn span.long { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,22,17,0.25) 0%, rgba(20,15,11,0.55) 55%, rgba(15,11,8,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 24px 64px; max-width: var(--container-w); margin: 0 auto; width: 100%; }
.hero-slogan { font-family: var(--font-utility); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem; font-weight: 700; color: #F4C98A; margin-bottom: 18px; }
.hero h1 { color: #fff; max-width: 820px; }
.hero-sub { max-width: 620px; font-size: 1.08rem; color: #EFE6D6; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 640px) {
  .hero { min-height: 52vh; }
  .hero-media img { object-position: center 78%; }
  .hero-content { padding: 60px 20px 148px; }
  .hero-slogan { font-size: 0.7rem; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.1rem); margin-bottom: 12px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; max-width: calc(100% - 68px); }
  .hero-actions .btn { width: 100%; }
}

/* =========================================================================
   BÖLÜMLER
   ========================================================================= */
section { padding: 78px 0; }
.section-alt { background: var(--color-cream-deep); }
.section-dark { background: var(--color-charcoal); color: #EFE6D6; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Kartlar: neler yapıyoruz */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-cards { grid-template-columns: 1fr; } }

.work-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 30px 26px; box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.work-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--color-blue), var(--color-green), var(--color-maroon));
}
.work-card h3 { margin-bottom: 10px; }
.work-card p { color: var(--color-ink); opacity: 0.85; margin: 0; font-size: 0.95rem; }

/* İstatistikler */
.stats-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item .stat-value { font-family: var(--font-display); font-size: 2.3rem; color: var(--color-orange); font-weight: 700; }
.stat-item .stat-label { font-family: var(--font-utility); font-size: 0.85rem; letter-spacing: 0.03em; color: #E9DCC3; margin-top: 4px; }

/* Başkandan mesaj */
.chairman { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: center; }
@media (max-width: 760px) { .chairman { grid-template-columns: 1fr; } }
.chairman-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-soft); background: var(--color-cream-deep);
  display: flex; align-items: center; justify-content: center;
}
.chairman-photo svg { width: 60%; opacity: 0.7; }
.chairman blockquote { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--color-charcoal); margin: 0 0 18px; line-height: 1.5; }
.chairman-sign { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--color-maroon); }
.chairman-sign small { display: block; font-family: var(--font-utility); font-weight: 500; color: var(--color-ink); font-size: 0.82rem; }

/* Rakamlar için knot arka planı */
.stats-section { background: var(--color-maroon); background: linear-gradient(120deg, var(--color-maroon) 0%, var(--color-maroon-deep) 100%); color: #fff; }

/* Galeri önizleme / grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-card); background: var(--color-cream-deep); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cat-chip {
  position: absolute; bottom: 10px; left: 10px; background: rgba(38,33,28,0.75); color: #fff;
  font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; font-family: var(--font-utility);
}
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.category-pills a { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--color-border); font-size: 0.88rem; font-weight: 600; background: #fff; }
.category-pills a.active, .category-pills a:hover { background: var(--color-green); border-color: var(--color-green); color: #fff; }

/* Galeri lightbox (büyütme) */
.lightbox-item { cursor: zoom-in; }
.lightbox-item::after {
  content: "⤢"; position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(38,33,28,0.55); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; opacity: 0; transition: opacity 0.15s;
}
.lightbox-item:hover::after { opacity: 1; }
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(20,15,11,0.94); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 60px 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none;
  color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: #E9DCC3; font-size: 0.85rem; font-family: var(--font-utility);
}
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-close { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* Blog kartları */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); display: flex; flex-direction: column; }
.post-thumb { aspect-ratio: 16/10; background: var(--color-cream-deep); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-date { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-maroon); font-weight: 700; }
.post-card h3 { font-size: 1.14rem; margin: 0; }
.post-card p.excerpt { font-size: 0.9rem; color: var(--color-ink); opacity: 0.8; flex: 1; }
.post-card .read-more { font-weight: 700; font-size: 0.85rem; color: var(--color-green-deep); }

/* Blog detay */
.post-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-soft); }
.post-meta-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.85rem; color: var(--color-ink); opacity: 0.75; margin-bottom: 20px; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 30px; }
.post-tags a { background: var(--color-cream-deep); padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
.prose { font-size: 1.04rem; line-height: 1.8; max-width: 760px; overflow-wrap: break-word; word-break: break-word; }
.prose h2 { margin-top: 1.4em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.2em; }
.prose img { border-radius: var(--radius-md); margin: 1.2em 0; }
.prose a { color: var(--color-blue); text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--color-orange); margin: 1.4em 0; padding: 0.4em 1.2em; font-style: italic; background: var(--color-cream-deep); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.prose table th, .prose table td { border: 1px solid var(--color-border); padding: 10px 12px; text-align: left; }

/* SSS akordeon */
.faq-item { border-bottom: 1px solid var(--color-border); padding: 6px 0; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 6px; font-family: var(--font-display); font-size: 1.08rem; font-weight: 700;
  color: var(--color-charcoal); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question .plus { font-size: 1.4rem; color: var(--color-maroon); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 6px; }
.faq-item.open .faq-answer { padding-bottom: 18px; }
.faq-answer-inner { color: var(--color-ink); opacity: 0.85; }

/* Sayfa başlığı bandı */
.page-banner {
  background: var(--color-charcoal); color: #fff; padding: 70px 0 46px; position: relative; overflow: hidden;
}
.page-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,31,0.35), transparent 70%);
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.breadcrumb { font-size: 0.85rem; color: #C9BEA6; }
.breadcrumb a { color: #E9DCC3; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-line .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--color-cream-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-maroon); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.social-row { display: flex; gap: 10px; margin-top: 10px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: var(--color-charcoal); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.social-row a:hover { background: var(--color-maroon); }

/* Bağış / Destek */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
@media (max-width: 800px) { .support-grid { grid-template-columns: 1fr; } }
.support-card { background: #fff; border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--color-border); text-align: center; box-shadow: var(--shadow-card); }
/* .support-card her zaman BEYAZ zemine sahiptir (etrafındaki section-dark'tan bağımsız),
   bu yüzden başlık ve metin rengini burada açıkça koyu tona sabitliyoruz — aksi halde
   .section-dark kuralı başlığı beyaz yapıp beyaz kart üzerinde görünmez hale getirir. */
.support-card h3 { color: var(--color-charcoal); }
.support-card p.muted { color: var(--color-ink); opacity: 0.75; }
.support-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.support-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.support-list li::before { content: "✦"; color: var(--color-orange); font-size: 1.1rem; line-height: 1.4; }

/* Üyelik */
/* Üyelik */
.uyelik-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: flex-start; }
@media (max-width: 760px) { .uyelik-grid { grid-template-columns: 1fr; gap: 28px; } }

.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.benefit-list li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px 18px; }
.benefit-list li .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-green); margin-top: 7px; flex-shrink: 0; }

/* Floating aksiyon butonları */
.floating-actions { position: fixed; bottom: 22px; right: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 200; }
.fab {
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.28); transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); }
.fab.whatsapp { background: #25D366; }
.fab.call { background: var(--color-maroon); }
.fab svg { width: 26px; height: 26px; }

@media (max-width: 640px) {
  .floating-actions { bottom: 16px; right: 14px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 21px; height: 21px; }
}

/* Footer */
.site-footer { background: var(--color-charcoal); color: #D9CDB2; padding: 64px 0 26px; position: relative; }
.site-footer::before {
  content: ""; display: block; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background-image: repeating-linear-gradient(
    135deg,
    var(--color-maroon) 0 8px,
    var(--color-orange) 8px 16px,
    var(--color-green) 16px 24px,
    var(--color-blue) 24px 32px
  );
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-family: var(--font-utility); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; opacity: 0.85; max-width: 300px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; opacity: 0.75; }

/* Flash mesajları */
.flash-wrap { position: fixed; top: 16px; right: 16px; z-index: 999; display: grid; gap: 10px; max-width: 340px; }
.flash { padding: 14px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); font-size: 0.9rem; font-weight: 600; color: #fff; }
.flash-success { background: var(--color-green); }
.flash-danger { background: var(--color-maroon); }
.flash-info { background: var(--color-blue); }
.flash-warning { background: var(--color-orange); }

/* Basit yardımcı sınıflar */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { opacity: 0.7; }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-green { background: rgba(28,139,78,0.12); color: var(--color-green-deep); }
.badge-orange { background: rgba(224,122,31,0.14); color: var(--color-orange); }
.badge-gray { background: #eee; color: #777; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--color-ink); opacity: 0.7; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.pagination a, .pagination span { padding: 9px 15px; border-radius: 8px; border: 1px solid var(--color-border); font-size: 0.88rem; font-weight: 600; }
.pagination a:hover { background: var(--color-cream-deep); }
.pagination .current { background: var(--color-maroon); color: #fff; border-color: var(--color-maroon); }
