:root {
  --accent: #b69741;
  --accent-dark: #8f7530;
  --dark: #1d1d1d;
  --gray: #666;
  --border: #e5e5e5;
  --bg: #f7f7f8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--dark);
}
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site-header .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--dark);
}
header.site-header .brand img {
  height: 58px;
  display: block;
}
header.site-header .brand-tagline {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.02em;
  max-width: 220px;
  line-height: 1.3;
  display: none;
}
@media (min-width: 640px) {
  header.site-header .brand-tagline { display: block; }
}
header.site-header nav a {
  color: var(--dark);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
header.site-header nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
header.site-header nav a.accent {
  color: #fff;
  font-weight: 600;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 4px;
  border-bottom: none;
}
header.site-header nav a.accent:hover { background: var(--accent-dark); }
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

/* ---------- Hero (tam genişlik) ---------- */
.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 40px;
  height: 68vh;
  min-height: 420px;
  max-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-inner span {
  display: inline-block;
  font-style: italic;
  font-size: 1.1rem;
  background: rgba(182,151,63,0.75);
  padding: 8px 22px;
  margin-bottom: 10px;
}
.hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  background: rgba(182,151,63,0.75);
  padding: 10px 26px;
  margin: 0;
  display: inline-block;
}

/* ---------- Öne çıkan alanlar (3'lü grid) ---------- */
.feature-section { text-align: center; margin-bottom: 10px; }
.feature-section h2 { font-weight: 400; letter-spacing: 0.03em; }
.feature-section .sub { color: var(--gray); margin-bottom: 30px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.feature-grid figure { margin: 0; text-align: center; }
.feature-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
}
.feature-grid h3 { margin: 16px 0 8px; font-weight: 400; letter-spacing: 0.03em; }
.feature-grid p { color: var(--gray); font-size: 0.92rem; }

/* ---------- Sosyal tesisler ---------- */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-bottom: 50px;
}
.facility-card {
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 12px;
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.facility-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(182,151,63,0.18);
  transform: translateY(-3px);
}
.facility-icon { font-size: 2.4rem; margin-bottom: 10px; }
.facility-card h3 { margin: 0; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; }

/* ---------- Alıntı / parallax bandı ---------- */
.quote-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 70px 24px;
  margin-bottom: 50px;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
}
.quote-band h2 { font-weight: 400; color: #fff; margin-bottom: 20px; }
.quote-band p { max-width: 640px; margin: 0 auto; font-style: italic; opacity: 0.92; }

/* ---------- Site footer ---------- */
footer.site-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 60px;
  background: #1a1a1a;
  color: #cfcfcf;
  border-top: 3px solid var(--accent);
  padding: 40px 24px 24px;
}
footer.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  font-size: 0.88rem;
}
footer.site-footer h4 { color: #fff; font-weight: 400; letter-spacing: 0.04em; margin-bottom: 12px; }
footer.site-footer a { color: #cfcfcf; text-decoration: none; }
footer.site-footer a:hover { color: var(--accent); }
footer.site-footer .copyright {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 16px;
  border-top: 1px solid #333;
  font-size: 0.78rem;
  color: #888;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 20px;
  margin-bottom: 20px;
}
h1, h2, h3 { margin-top: 0; }
.section-title {
  font-size: 1.3rem;
  margin-bottom: 14px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
  cursor: zoom-in;
}
.phone-list { list-style: none; padding: 0; margin: 0; }
.phone-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.phone-list li:last-child { border-bottom: none; }
.ad-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.ad-card .cat {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}
.btn.secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.9rem; margin-bottom: 4px; color: var(--gray); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
}
.field textarea { min-height: 90px; resize: vertical; }
table { width: 100%; border-collapse: collapse; }
table th, table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 6px;
  background: #eee;
}
.badge.open { background: #fff3cd; color: #856404; }
.badge.in_progress { background: #cfe2ff; color: #084298; }
.badge.resolved { background: #d1e7dd; color: #0f5132; }
.badge.pending { background: #fff3cd; color: #856404; }
.badge.approved { background: #d1e7dd; color: #0f5132; }
.badge.rejected { background: #f8d7da; color: #842029; }
.badge.superadmin { background: var(--accent); color: #fff; }
.badge.admin { background: #084298; color: #fff; }
.badge.gorevli { background: #6f42c1; color: #fff; }
.tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.tabs a {
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
}
.tabs a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.poll-option { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bar { background: var(--border); border-radius: 6px; height: 8px; flex: 1; overflow: hidden; }
.bar-fill { background: var(--accent); height: 100%; }
