/* The Dog Company – supplementary styles that theme.json can't express. */

/* ---------- Photo placeholders ---------- */
/* Applied to core/cover blocks used as stand-ins for real photography. */
.tdc-photo-placeholder {
	position: relative;
	overflow: hidden;
}
.tdc-photo-placeholder::after {
	content: "Foto folgt – bitte ersetzen";
	position: absolute;
	inset: auto auto 1rem 1rem;
	background: rgba(43, 43, 36, 0.65);
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	pointer-events: none;
}

/* ---------- Script-style accent notes ---------- */
.tdc-note {
	font-family: var(--wp--preset--font-family--heading);
	font-style: italic;
	color: var(--wp--preset--color--olive);
	line-height: 1.35;
}

/* ---------- Decorative line-art (leaf / dog outline) ---------- */
.tdc-decor {
	position: relative;
}
.tdc-decor::before,
.tdc-decor::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 70px;
	height: 140px;
	transform: translateY(-50%);
	background: url("../img/leaf.svg") center / contain no-repeat;
	opacity: 0.8;
	pointer-events: none;
}
.tdc-decor::before {
	left: 2rem;
}
.tdc-decor::after {
	right: 2rem;
	transform: translateY(-50%) scaleX(-1);
}
@media (max-width: 782px) {
	.tdc-decor::before,
	.tdc-decor::after {
		display: none;
	}
}

.tdc-dog-outline {
	width: 90px;
	height: auto;
	background: url("../img/dog-outline.svg") center / contain no-repeat;
	aspect-ratio: 220 / 200;
}

/* ---------- Icon circles (service/feature icons) ---------- */
.tdc-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 999px;
	background: var(--wp--preset--color--olive);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
}

/* ---------- Cards ---------- */
.tdc-card {
	background: var(--wp--preset--color--white);
	border-radius: 14px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tdc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(43, 43, 36, 0.12);
}

.tdc-price-tag {
	display: inline-block;
	background: var(--wp--preset--color--sage);
	color: var(--wp--preset--color--ink);
	font-weight: 600;
	border-radius: 999px;
	padding: 0.35rem 1rem;
}

/* ---------- Contact form ---------- */
.tdc-contact-form input,
.tdc-contact-form textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--wp--preset--color--sage);
	border-radius: 10px;
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--ink);
}
.tdc-contact-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}
.tdc-contact-form .tdc-field {
	margin-bottom: 1.25rem;
}
.tdc-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.tdc-form-message {
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}
.tdc-form-message.is-success {
	background: #e5efe0;
	color: var(--wp--preset--color--deep-green);
}
.tdc-form-message.is-error {
	background: #f5e3e0;
	color: #7a2f22;
}

/* ---------- Header ---------- */
.tdc-header {
	border-bottom: 1px solid var(--wp--preset--color--sage);
}
.tdc-tagline-script {
	font-family: var(--wp--preset--font-family--heading);
	font-style: italic;
	font-size: 0.85rem;
	color: var(--wp--preset--color--olive);
	text-align: right;
	line-height: 1.3;
}
