:root {
    /* Brand Colors */
    --primary-color: #2c3e50;     /* dunkles Blau/Anthrazit */
    --secondary-color: #f4b400;   /* Honig-Gelb (passt gut für Imkerei) */

    /* Neutrale Farben */
    --background-color: #ffffff;
    --text-color: #1e1e1e;
    --muted-color: #6c757d;
	
	/* Header & Footer */
    --header-text-color: #ffffff;
    --header-bg-color: var(--primary-color);

    --footer-text-color: #ffffff;
    --footer-bg-color: var(--primary-color);

    /* Layout */
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    /* Abstände */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;

    /* Typografie */
    --font-main: 'Segoe UI', Roboto, Arial, sans-serif;
	
	/* LOGO */
	--logo-width: 160px;
    --logo-height: auto;
}