/* Vanilya Reklam USA – Premium authority site */
:root {
  --color-bg: #faf9f7;
  --color-surface: #fff;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-accent: #b8860b;
  --color-accent-hover: #8b6914;
  --color-border: #e5e3df;
  --color-footer: #2d2d2d;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --max-width: 720px;
  --wide-width: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 2.75rem); line-height: 1.2; margin: 0 0 0.5em; }
h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
p { margin: 0 0 1em; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
}
.site-header-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--color-text); }
.logo a { color: inherit; text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.nav a { color: var(--color-text-muted); font-size: 0.95rem; }
.nav a:hover { color: var(--color-text); }

/* Hero – asymmetric */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; padding: 3rem 1.5rem; }
}
.hero-content { order: 1; }
.hero-image { order: 2; border-radius: 8px; overflow: hidden; }
.hero .lead { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 1.25rem; }
.cta-soft {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-text);
  color: var(--color-surface);
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-soft:hover { background: var(--color-footer); text-decoration: none; }

/* Main content */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.main-content .intro { font-size: 1.05rem; color: var(--color-text-muted); }

/* Sections */
.section { margin-bottom: 2.5rem; }
.section-title { font-size: 1.25rem; margin-bottom: 1rem; }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 1rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td { padding: 0.65rem 0.75rem; text-align: left; border: 1px solid var(--color-border); }
th { background: var(--color-surface); font-weight: 600; }
tr:nth-child(even) { background: rgba(0,0,0,0.02); }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1rem 0; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons h4 { margin-top: 0; font-size: 1rem; }
.pros ul, .cons ul { margin: 0; padding-left: 1.25rem; }
.pros-cons li { margin-bottom: 0.35rem; }

/* Who it's for */
.who-box { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 6px; padding: 1.25rem; margin: 1rem 0; }

/* FAQ */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-list li { border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.faq-list dt { font-weight: 600; margin-bottom: 0.35rem; }
.faq-list dd { margin: 0; color: var(--color-text-muted); }

/* Transparency / Disclosure */
.disclosure-box {
  background: #f5f4f2;
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: #ccc;
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}
.footer-inner { max-width: var(--wide-width); margin: 0 auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.footer-nav a { color: #aaa; }
.footer-nav a:hover { color: #fff; }
.site-footer p { margin: 0; font-size: 0.9rem; color: #999; }

/* Article layout */
.article-meta { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.breadcrumb { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: inherit; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
