/* ===============================================
   Weingart Bautechnik — 2026 Relaunch, Gerüst v1
   Bewusst schlicht: Struktur & Farbe stehen,
   Feinschliff (Typografie, Motion, Bilder) folgt.
   =============================================== */

:root {
  /* Palette abgeleitet aus dem Logo "Sonnenaufgang" */
  --green-deep: #0A2E12;   /* Wortmarke, dunkler Text */
  --green-main: #0A9020;   /* Primärgrün */
  --green-dark: #077A1B;   /* Tiefe / Hover */
  --sun-yellow: #FFD200;   /* Akzent, sparsam einsetzen */
  --paper: #FBF9F3;        /* warmer, heller Hintergrund statt reinem Weiß */
  --stone: #E7E1D2;        /* Sektions-Trennung */
  --ink: #1C1C1A;

  --font-display: Georgia, 'Times New Roman', serif; /* Platzhalter bis Zielschrift feststeht */
  --font-body: -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

a { color: var(--green-dark); }
a:hover { color: var(--green-main); }

h1, h2, h3 { font-family: var(--font-display); color: var(--green-deep); margin: 0 0 16px; }

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid var(--stone);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo img { display: block; }
.main-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.main-nav a { text-decoration: none; font-weight: 600; }

/* ===== Hero ===== */
.hero {
  padding: 100px 24px;
  text-align: center;
  background: var(--green-deep);
  color: var(--paper);
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun-yellow);
  margin-bottom: 16px;
}
.hero-title {
  color: var(--paper);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(251, 249, 243, 0.85);
}
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--sun-yellow);
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
}
.cta-button:hover { background: #fff; }

/* ===== About / Stats ===== */
.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
/* ===== Leistungen ===== */
.leistungen {
  background: var(--stone);
  padding: 80px 24px;
}
.leistungen h2 { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.leistungen-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.leistung-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 4px;
  border-top: 3px solid var(--green-main);
}
.leistung-card h3 { font-size: 1.15rem; }

/* ===== Philosophie ===== */
.philosophie {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.philosophie h3 { font-size: 1.1rem; }
.philosophie p { color: #555; font-size: 0.95rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(251, 249, 243, 0.85);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.site-footer h4 { color: var(--sun-yellow); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.site-footer a { color: rgba(251, 249, 243, 0.85); }
.site-footer address { font-style: normal; }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 249, 243, 0.15);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .hero { padding: 70px 20px; }
  .about, .leistungen, .philosophie { padding: 60px 20px; }
}
