/* ===== RESET & BASIS ===== */
*, *::before, *::after {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	color: #000000;
	/*font-family: 'Bilbo', cursive, sans-serif;*/
	/*font-family: 'Courgette', cursive;*/
	/*font-family: 'Dancing Script', cursive;*/
	font-family: 'Courgette', cursive;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
}
a {
	color: #ffffff;
	text-decoration: none;
}
a:hover {
	opacity: 0.8;
}
img {
	max-width: 100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	/*font-family: 'Bilbo', cursive, sans-serif;*/
	/*font-family: 'Courgette', cursive;*/
	/*font-family: 'Dancing Script', cursive;*/
	font-family: 'Courgette', cursive;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 1rem 0;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p {
	margin: 0 0 1.5rem 0;
}
hr {
	border: none;
	border-bottom: 2px solid #000;
	margin: 2rem auto;
	width: 100%;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
input, select, textarea, button {
	font-family: inherit;
	font-size: inherit;
}

/* ===== HEADER ===== */
.site-header {
	padding-top: 30px;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 20px;
	text-align: center;
}
.site-header h2 {
	margin: 0;
}
.site-header h2 a {
	color: #000000;
	font-weight: 700;
}
.site-header .trennlinie {
	color: #000;
	font-size: 1rem;
	margin-top: 0.5rem;
}

/* ===== NAVIGATION ===== */
.nav-section {
	background-color: #f5f5f5;
	padding: 1rem 2rem;
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #ddd;
}
.nav-section a {
	color: #000;
	margin: 0 1rem;
	font-size: 1.25rem;
	display: inline-block;
}
.nav-section a:hover {
	opacity: 0.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	padding: 0 2rem;
}
.hero-column {
	flex: 1;
	position: relative;
	min-height: 700px;
	overflow: hidden;
	background-color: #ffffff;
}
.hero-column img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	display: block;
}
.hero-column .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.3;
	z-index: 1;
}
.hero-column .hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
}
.hero-column .hero-text a {
	color: #ffffff;
	font-size: clamp(2rem, 4vw, 3rem);
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-column .border-bottom {
	height: 2px;
	background-color: #000;
	width: 100%;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}
.content-section h3 {
	color: #000;
	margin-bottom: 2rem;
	text-align: center;
}
.content-section p {
	color: #000;
	margin-bottom: 1.5rem;
}
.content-section strong {
	font-weight: 700;
}
.zitat {
	font-style: italic;
	text-align: center;
	font-size: 1.5rem;
	margin: 2rem 0;
}
.zitat-autor {
	text-align: center;
	font-weight: 700;
	margin-bottom: 2rem;
}
.kurs-info {
	background-color: #f5f5f5;
	padding: 2rem;
	border-radius: 8px;
	margin: 2rem 0;
}
.kurs-info h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #000;
}
.kurs-block {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ddd;
}
.kurs-block:last-child {
	border-bottom: none;
}
.effekte-liste {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}
.effekte-liste li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}
.effekte-liste li::before {
	content: "\2013";
	position: absolute;
	left: 0;
}
.ueber-mich-section {
	background-color: #f9f9f9;
}
.bild-links {
	float: left;
	margin-right: 2rem;
	margin-bottom: 1rem;
	max-width: 462px;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/* ===== FOOTER ===== */
.site-footer {
	padding: 3rem;
	background-color: #ffffff;
}
.site-footer p {
	color: #000;
	margin-bottom: 0.5rem;
}
.site-footer a {
	color: #000;
}
.site-footer hr {
	margin-top: 2rem;
}

/* ===== BUCHUNG SECTION ===== */
.buchung-section {
	background-color: #f0f7f0;
}
.course-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.course-card {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.2s;
}
.course-card:hover {
	transform: translateY(-4px);
}
.course-card h4 {
	color: #2d5a2d;
	margin-top: 0;
}
.course-card .course-meta {
	margin: 1rem 0;
	font-size: 0.95rem;
}
.course-card .course-meta span {
	display: block;
	margin: 0.25rem 0;
}
.availability {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
	padding: 0.75rem;
	background-color: #e8f5e9;
	border-radius: 8px;
}
.availability.full {
	background-color: #ffebee;
}
.availability-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #4caf50;
}
.availability.full .availability-dot {
	background-color: #f44336;
}
.btn-primary {
	background-color: #2d5a2d;
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.2s;
}
.btn-primary:hover {
	background-color: #1a3d1a;
}
.btn-primary:disabled {
	background-color: #999;
	cursor: not-allowed;
}
.btn-secondary {
	background-color: #666;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
}
.btn-secondary:hover {
	background-color: #444;
}
.btn-danger {
	background-color: #dc3545;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
}
.btn-danger:hover {
	background-color: #a71d2a;
}

/* ===== MODAL ===== */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.modal.active {
	display: flex;
}
.modal-content {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.modal-small {
	max-width: 400px;
}
.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
}
.modal-close:hover {
	color: #000;
}

/* ===== FORM ===== */
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2d5a2d;
}
.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}
.success-message {
	color: #2d5a2d;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* ===== ADMIN PANEL ===== */
.admin-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 400px;
	max-width: 90vw;
	height: 100vh;
	background: #fff;
	box-shadow: -4px 0 12px rgba(0,0,0,0.2);
	z-index: 999;
	overflow-y: auto;
	padding: 1rem;
}
.admin-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ddd;
	margin-bottom: 1rem;
}
.admin-course {
	background: #f9f9f9;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
}
.admin-course h5 {
	margin: 0 0 0.5rem 0;
}
.booking-list {
	margin-top: 0.5rem;
}
.booking-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem;
	background: #fff;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}
.booking-item span {
	font-size: 0.875rem;
}
.admin-toggle {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 998;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.hero-section {
		flex-direction: column;
	}
	.hero-column {
		min-height: 400px;
	}
	.hero-column img {
		height: 400px;
	}
	.content-section {
		padding: 2rem 1rem;
	}
	.site-footer {
		padding: 2rem 1rem;
	}
	.bild-links {
		float: none;
		display: block;
		margin: 0 auto 1rem auto;
	}
	.nav-section a {
		display: block;
		margin: 0.5rem 0;
	}
	.course-cards {
		grid-template-columns: 1fr;
	}
	.admin-panel {
		width: 100%;
	}
}