/*
Theme Name: Querbeet & Fadenfroh
Theme URI: https://querbeet-fadenfroh.de
Author: Colin
Description: Eigenes WordPress-Theme für den Laden mit den zwei Marken Querbeet (Deko/Pflanzen) und Fadenfroh (Nähen/Handarbeit, Babypuschen).
Version: 0.1
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: querbeet-fadenfroh
*/

/* ---------- Grundlagen ---------- */
:root {
  --color-bg: #faf7f2;
  --color-text: #2c2620;
  --color-primary: #4a6b3d;   /* Querbeet: gedecktes Grün */
  --color-secondary: #c17a54; /* Fadenfroh: warmes Terrakotta */
  --max-width: 1100px;
  --font-base: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5ddd0;
  padding: 1.25rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-title {
  font-size: 1.5rem;
  margin: 0;
}

.site-title a {
  color: var(--color-text);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Brand-Bereiche (Querbeet / Fadenfroh) ---------- */
.brand-section {
  padding: 3rem 0;
}

.brand-section--querbeet {
  background: #eef3ea;
}

.brand-section--fadenfroh {
  background: #fbeee6;
}

.brand-section h2 {
  font-size: 2rem;
  margin-top: 0;
}

.brand-section--querbeet h2 {
  color: var(--color-primary);
}

.brand-section--fadenfroh h2 {
  color: var(--color-secondary);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.brand-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: #fff;
  padding: 2rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Content (einzelne Seiten/Beiträge) ---------- */
.site-content {
  padding: 2.5rem 0;
}

.entry-title {
  margin-top: 0;
}
