/*
Theme Name: Standard Leer
Theme URI: https://example.local/standard-leer
Author: Ismail
Description: Ein schlichtes leeres WordPress-Theme mit Platzhalterbereichen fuer Inhalte, Bilder und Navigation.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: standard-leer
*/

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --page-bg: #f7f7f4;
  --surface: #ffffff;
  --surface-muted: #ecebe6;
  --text: #202124;
  --muted: #666b70;
  --line: #d8d6cf;
  --accent: #1f6f5b;
  --accent-soft: #dcebe6;
  --shadow: 0 12px 30px rgba(32, 33, 36, 0.08);
  --radius: 8px;
  --content: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--accent);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.section {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.site-branding {
  display: grid;
  gap: 2px;
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.site-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-main {
  min-height: 65vh;
}

.section {
  padding: 64px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.button--secondary {
  background: transparent;
  color: var(--accent);
}

.placeholder-media,
.placeholder-box {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px dashed #a7aaa7;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--muted);
  text-align: center;
}

.placeholder-media {
  aspect-ratio: 4 / 3;
}

.section--white {
  max-width: none;
  width: 100%;
  background: var(--surface);
}

.section--white > .section__inner {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.content-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.post-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.post-card__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header__inner,
  .site-footer__inner,
  .hero,
  .content-placeholder {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .site-footer__inner {
    display: grid;
    justify-items: start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }
}
