/* ============================================
   Kadına Şiddete Hayır! — Light / Mor-Lila Tema
   ============================================ */
:root {
  --purple-900: #3b1d5e;
  --purple-700: #5b2a86;
  --purple-600: #7c3aad;
  --purple-500: #9b59d0;
  --purple-100: #f3ecfa;
  --purple-50:  #faf6fd;
  --pink-500:   #d6467a;
  --ink:        #2a2438;
  --muted:      #6f6683;
  --bg:         #fdfbfe;
  --card:       #ffffff;
  --radius:     16px;
  --shadow:     0 10px 30px rgba(91, 42, 134, .10);
  --shadow-lg:  0 20px 50px rgba(91, 42, 134, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; }
a { color: var(--purple-600); text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

/* ---------- Acil yardım bandı ---------- */
.emergency-bar {
  background: linear-gradient(90deg, var(--purple-700), var(--pink-500));
  color: #fff; text-align: center; padding: 8px 14px; font-size: 14px;
}
.emergency-bar a { color: #fff; text-decoration: underline; }

/* ---------- Hemen çık ---------- */
.exit-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--pink-500); color: #fff; padding: 10px 18px;
  border-radius: 50px; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform .2s;
}
.exit-btn:hover { transform: scale(1.06); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(91,42,134,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  color: #fff; font-size: 28px; font-weight: 800;
  display: grid; place-items: center;
}
.logo-text { font-size: 13px; line-height: 1.2; color: var(--muted); letter-spacing: .5px; }
.logo-text strong { color: var(--purple-700); font-size: 17px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink); font-weight: 600; font-size: 15px; position: relative; }
.nav > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--purple-600); transition: width .25s;
}
.nav > a:not(.btn):hover::after { width: 100%; }
.lang-switch { color: var(--purple-600); font-weight: 700; font-size: 14px; border: 1.5px solid var(--purple-100); border-radius: 50px; padding: 6px 14px; }
.lang-switch:hover { background: var(--purple-100); color: var(--purple-700); }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--purple-700); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px; transition: all .25s; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--purple-600), var(--pink-500)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }
.btn-light { background: #fff; color: var(--purple-700); }
.btn-light:hover { transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 15px 38px; font-size: 16px; }

/* ---------- Hero slider ---------- */
.hero-slider { height: 78vh; min-height: 480px; position: relative; }
.hero-slide {
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(59,29,94,.78) 0%, rgba(124,58,173,.45) 55%, rgba(214,70,122,.30) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero-content h1 {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
  animation: slideUp .8s ease both;
}
.hero-content p { font-size: clamp(17px, 2vw, 22px); margin: 18px 0 30px; animation: slideUp .8s .15s ease both; }
.hero-content .btn { animation: slideUp .8s .3s ease both; }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
.hero-pagination .swiper-pagination-bullet { background: #fff; width: 12px; height: 12px; opacity: .5; }
.hero-pagination .swiper-pagination-bullet-active { opacity: 1; width: 30px; border-radius: 6px; }
.hero-nav { color: #fff; --swiper-navigation-size: 26px; }

/* ---------- İstatistikler ---------- */
.stats { background: var(--purple-50); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.stat-card {
  background: var(--card); border-radius: var(--radius); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .3s;
}
.stat-card:hover { transform: translateY(-8px); }
.stat-num {
  font-size: 52px; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.stat-label { color: var(--muted); font-size: 14px; }
.stat-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 18px; }

/* ---------- Bölüm başlıkları ---------- */
.section-title { font-size: clamp(28px, 3.5vw, 40px); text-align: center; color: var(--purple-900); font-weight: 800; }
.section-sub { text-align: center; color: var(--muted); margin: 10px 0 50px; }

/* ---------- Konu kartları ---------- */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.topic-card {
  background: var(--card); border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow); color: var(--ink);
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
  display: block;
}
.topic-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.topic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: var(--ink); }
.topic-card:hover::before { transform: scaleX(1); }
.topic-icon { font-size: 40px; margin-bottom: 16px; }
.topic-card h3 { color: var(--purple-700); margin-bottom: 10px; }
.topic-card p { color: var(--muted); font-size: 15px; }
.topic-more { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--pink-500); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--purple-700), var(--pink-500));
  color: #fff; text-align: center; padding: 90px 20px;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-band p { opacity: .92; max-width: 600px; margin: 0 auto 30px; font-size: 18px; }

/* ---------- Haberler ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.news-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-thumb { height: 200px; background-size: cover; background-position: center; }
.news-body { padding: 24px; }
.news-body time { color: var(--pink-500); font-size: 13px; font-weight: 700; }
.news-body h3 { margin: 6px 0 10px; color: var(--purple-900); }
.news-body p { color: var(--muted); font-size: 15px; }
.news-more { font-weight: 700; font-size: 14px; display: inline-block; margin-top: 12px; }

/* ---------- Sayfa içerikleri ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--purple-100), var(--purple-50));
  padding: 70px 0;
  border-bottom: 1px solid #eee5f7;
}
.page-hero h1 { color: var(--purple-900); font-size: clamp(30px, 4vw, 44px); }
.content-page { max-width: 820px; }
.content-page h3 { color: var(--purple-700); margin: 26px 0 10px; }
.content-page p, .content-page li { margin-bottom: 12px; color: #3d3650; }
.content-page ul, .content-page ol { padding-left: 22px; }
.news-meta { color: var(--pink-500); font-weight: 700; margin-bottom: 16px; }
.back-link { margin-top: 30px; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info h2 { color: var(--purple-900); margin-bottom: 14px; }
.info-box {
  background: var(--purple-50); border-left: 4px solid var(--purple-600);
  border-radius: 10px; padding: 16px 20px; margin-top: 16px; font-size: 15px;
}
.info-box.emergency { border-left-color: var(--pink-500); background: #fdf0f5; }
.contact-form-card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--purple-900); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #e8def5;
  border-radius: 10px; font-family: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s; background: var(--purple-50);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple-600);
  box-shadow: 0 0 0 4px rgba(124,58,173,.12); background: #fff;
}
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #ecfdf3; color: #14713d; border: 1px solid #a6f4c5; }
.alert-error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }

/* ---------- Footer ---------- */
.site-footer { background: var(--purple-900); color: #d9cce9; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 60px 20px 40px;
}
.site-footer h4 { color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #d9cce9; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  text-align: center; padding: 18px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px; color: #b3a3c9;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px; gap: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-slider { height: 70vh; }
}
