/*
Theme Name: Besser Schmecken
Theme URI: https://besserschmecken.de
Author: Dein Name
Author URI: https://deine-website.de
Description: Ein modernes WordPress-Theme für den gesunden Rezeptblog "Besser Schmecken".
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: besserschmecken
Tags: responsive, minimal, recipe, blog, clean eating
*/

:root {
  --color-primary: #A8CBB7;
  --color-accent: #F9E79F;
  --color-background: #FAFAF4;
  --color-text: #3F2A56;
  --color-heading: #8D6748;
  --color-dark: #222;

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
}

/* === Allgemein === */
body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-heading);
  margin-top: 0;
}

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

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

/* === Header === */
.site-header {
  background-color: white;
  padding: 2rem 1rem;
  border-bottom: 2px solid var(--color-primary);
  text-align: center;
}

.site-header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.site-header .logo img {
  max-height: 80px;
  height: auto;
  width: auto;
}

.main-navigation {
  margin-top: 1rem;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.nav-menu li a {
  font-weight: 600;
  color: var(--color-text);
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.nav-menu li a:hover {
  color: var(--color-primary);
}

/* === Footer === */
.site-footer {
  background-color: white;
  padding: 3rem 1rem;
  border-top: 2px solid var(--color-primary);
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-family: var(--font-serif);
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu li a {
  color: var(--color-text);
  text-decoration: none;
}

.footer-menu li a:hover {
  color: var(--color-primary);
}

.site-info {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--color-dark);
}