/*
Theme Name: Körper Denken
Theme URI: https://koerper-denken.de
Author: Sebastian Chwalek
Author URI: https://koerper-denken.de
Description: Ein modernes WordPress Block-Theme (FSE) für Dozentinnen und Dozenten in den Bereichen Yoga, Tanz und künstlerisch-wissenschaftliche Vermittlung. Warme, erdige Grundtöne treffen auf klare künstlerische Typografie. Vollständig über den Block-Editor anpassbar – kein PHP nötig.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: koerper-denken
Tags: full-site-editing, block-templates, block-patterns, custom-colors, custom-logo, custom-menu, editor-style, featured-images, one-column, threaded-comments, translation-ready, wide-blocks, blog, portfolio
*/

/* ----------------------------------------------------------
   Dieses Theme nutzt überwiegend theme.json zur Steuerung von
   Farben, Typografie und Layout. Diese Datei enthält nur
   Ergänzungen, die sich nicht in theme.json abbilden lassen.
   ---------------------------------------------------------- */

.wp-block-group.is-style-fade-in {
	animation: kd-fade-in 0.9s ease-out both;
}

@keyframes kd-fade-in {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

.is-style-kd-card .wp-block-image img {
	transition: transform 0.6s ease, filter 0.6s ease;
	filter: saturate(0.95);
}
.is-style-kd-card:hover .wp-block-image img {
	transform: scale(1.03);
	filter: saturate(1.05);
}

.wp-block-separator.is-style-kd-dotted {
	border: none;
	height: 1px;
	background: currentColor;
	max-width: 6rem;
	opacity: 0.6;
	position: relative;
}
.wp-block-separator.is-style-kd-dotted::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	background: currentColor;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.wp-block-quote.is-style-kd-pull p {
	font-family: var(--wp--preset--font-family--display);
	font-style: italic;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.4;
}

.kd-booking-embed {
	min-height: 600px;
	border: 1px solid var(--wp--preset--color--sand);
	border-radius: 8px;
	padding: 1rem;
	background: var(--wp--preset--color--cream);
}

.entry-content p {
	max-width: 68ch;
}

.wp-block-navigation .wp-block-navigation-item__content {
	transition: color 0.2s ease;
	position: relative;
}
.wp-block-navigation .wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.3s ease;
}
.wp-block-navigation .wp-block-navigation-item__content:hover::after,
.wp-block-navigation .current-menu-item .wp-block-navigation-item__content::after {
	width: 100%;
}
