/*
Theme Name: Kleingärtner-Verein Solingen-Kotten Minimal Theme
Theme URI: https://kgv-kotten.de
Author: Senior WordPress Core Entwickler
Author URI: https://wordpress.org/
Description: Minimales Classic WordPress Theme für den Kleingärtner-Verein Solingen-Kotten. Konform mit WP Best Practices, Barrierefreiheit und Responsivität.[1]
Version: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kgv-kotten
Tags: one-column, accessibility-ready, translation-ready, minimal
*/

/*******************************************************
 * Grundlegende CSS-Struktur für Responsivität und Barrierefreiheit
 *******************************************************/

/* Box-Sizing für bessere Kontrolle */
html {
	box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Accessibility: Visuell verborgener Skip Link [1] */
.skip-link {
	position: absolute;
	top: -999em;
	left: -999em;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 9999;
}

.skip-link:focus {
	position: static;
	width: auto;
	height: auto;
	padding: 10px;
	color: #fff;
	background-color: #0073aa;
	clip: auto;
	margin: 10px;
	text-decoration: none;
}

/* Container */
.site-content,
.site-header,
.site-footer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Elemente */
img {
	max-width: 100%;
	height: auto;
}

h1 {
	font-size: 2em;
}

/* Call-to-Action Styling (Platzhalter) */
.cta-button a {
	display: inline-block;
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	margin-top: 15px;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
}

/* Footer-Styling für Kontaktdaten [1] */
.site-footer {
	border-top: 1px solid #eee;
	padding: 40px 20px;
	font-size: 0.9em;
}

.site-footer address {
	font-style: normal;
	margin-top: 10px;
}

/* Responsivität für Navigation (einfache Mobilansicht) */
@media (max-width: 600px) {
	.main-navigation ul {
		flex-direction: column;
	}
	.main-navigation li {
		border-bottom: 1px solid #eee;
	}
}