/* Venües brand renkleri */
:root {
  --olive-deep: #3D5228;
  --olive: #4A6332;
  --olive-dark: #2F4220;
  --sage: #9CB079;
  --sage-light: #C5D2A8;
  --cream: #F2EDD8;
  --cream-light: #FAF6E8;
  --charcoal: #1F2818;
  --text-secondary: #6A7158;
  --border: #E0D9C2;
  --accent: #D4A24C;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--olive); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Navigation */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: var(--olive-deep);
}
.logo svg { color: var(--olive-deep); }
.nav nav { display: flex; gap: 24px; }
.nav nav a { font-weight: 500; color: var(--charcoal); }

/* Hero */
.hero {
  padding: 80px 32px 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
h1 {
  font-size: 56px; line-height: 1.1; font-weight: 800;
  color: var(--olive-deep); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.lead {
  font-size: 21px; color: var(--text-secondary);
  margin-bottom: 36px; line-height: 1.5;
}

/* Store badges */
.store-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 16px;
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  background: var(--charcoal); color: var(--cream);
  font-weight: 600; font-size: 16px;
  transition: transform 0.15s;
}
.badge:hover { transform: translateY(-2px); text-decoration: none; }
.badge.disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }
.badge small { font-size: 12px; font-weight: 400; opacity: 0.7; }
.hint { font-size: 14px; color: var(--text-secondary); }

/* Features */
.features { padding: 80px 32px; }
.features h2, .mission h2, .how h2 {
  font-size: 36px; text-align: center; color: var(--olive-deep);
  margin-bottom: 48px; font-weight: 700;
}
.grid {
  display: grid; gap: 24px; max-width: 1100px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: white; padding: 32px 24px; border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 82, 40, 0.08);
}
.card .icon { font-size: 40px; margin-bottom: 12px; }
.card h3 {
  font-size: 19px; color: var(--olive-deep);
  margin-bottom: 10px; font-weight: 700;
}
.card p { color: var(--text-secondary); font-size: 15px; line-height: 1.55; }

/* Mission */
.mission {
  background: var(--olive-deep); color: var(--cream);
  padding: 80px 32px;
}
.mission-inner { max-width: 720px; margin: 0 auto; }
.mission h2 { color: var(--cream); text-align: left; margin-bottom: 16px; }
.mission h2:not(:first-child) { margin-top: 40px; }
.mission p { font-size: 18px; line-height: 1.7; }

/* How */
.how { padding: 80px 32px; max-width: 720px; margin: 0 auto; }
.steps {
  list-style: none; counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 18px 0 18px 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 14px;
  width: 40px; height: 40px;
  background: var(--olive); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 700; font-size: 17px;
}
.steps li strong { color: var(--olive-deep); }

/* Footer */
footer { background: var(--charcoal); color: var(--cream-light); margin-top: 80px; }
.footer-inner {
  display: grid; gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  max-width: 1100px; margin: 0 auto;
  padding: 60px 32px 40px;
}
.footer-brand strong, .footer-links strong {
  display: block; font-size: 18px; margin-bottom: 14px;
  color: var(--cream);
}
.footer-brand p { font-size: 14px; opacity: 0.7; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--cream-light); opacity: 0.8;
}
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; padding: 24px 32px;
  font-size: 13px; opacity: 0.5;
}

/* ========== Legal pages ========== */
.legal-page {
  max-width: 760px; margin: 60px auto; padding: 0 32px 60px;
}
.legal-page h1 {
  font-size: 40px; color: var(--olive-deep);
  margin-bottom: 12px; line-height: 1.2;
}
.legal-page .meta {
  color: var(--text-secondary); font-size: 14px; margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 2px solid var(--border);
}
.legal-page h2 {
  font-size: 24px; color: var(--olive-deep);
  margin-top: 40px; margin-bottom: 14px;
}
.legal-page h3 {
  font-size: 18px; color: var(--olive); margin-top: 24px; margin-bottom: 10px;
}
.legal-page p, .legal-page li { margin-bottom: 12px; font-size: 16px; line-height: 1.7; }
.legal-page ul, .legal-page ol { padding-left: 24px; }
.legal-page strong { color: var(--olive-deep); }
.legal-page .draft-note {
  background: var(--cream); padding: 16px 20px;
  border-left: 4px solid var(--accent); border-radius: 6px;
  font-size: 14px; color: var(--text-secondary);
  margin-top: 40px;
}
.legal-page table {
  border-collapse: collapse; width: 100%; margin: 20px 0;
}
.legal-page table th, .legal-page table td {
  border: 1px solid var(--border); padding: 10px 14px;
  text-align: left; font-size: 15px;
}
.legal-page table th { background: var(--cream); color: var(--olive-deep); }

/* About + İletişim sayfa */
.page {
  max-width: 760px; margin: 60px auto; padding: 0 32px 60px;
}
.page h1 { font-size: 40px; color: var(--olive-deep); margin-bottom: 24px; }
.page h2 { font-size: 22px; color: var(--olive-deep); margin-top: 32px; margin-bottom: 12px; }
.page p { font-size: 17px; line-height: 1.7; margin-bottom: 14px; }
.page .info-table {
  margin-top: 24px; padding: 20px; background: white;
  border: 1px solid var(--border); border-radius: 12px;
}
.page .info-table dt { font-weight: 600; color: var(--olive-deep); margin-top: 12px; }
.page .info-table dt:first-child { margin-top: 0; }
.page .info-table dd { color: var(--text-secondary); margin-left: 0; }
.page .contact-list { list-style: none; padding: 0; }
.page .contact-list li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.page .contact-list li:last-child { border-bottom: none; }
.page .contact-list a { font-weight: 500; }

/* Mobile */
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav nav { gap: 14px; font-size: 14px; }
  .hero { padding: 60px 20px 40px; }
  h1 { font-size: 38px; }
  .lead { font-size: 18px; }
  .features, .mission, .how { padding: 60px 20px; }
  .features h2, .mission h2, .how h2 { font-size: 28px; margin-bottom: 32px; }
  .card { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px 20px; gap: 28px; }
  .legal-page, .page { padding: 0 20px 40px; margin: 32px auto; }
  .legal-page h1, .page h1 { font-size: 28px; }
}
