/*
 * Hildegardis Apotheke, Rüdesheim am Rhein — main theme stylesheet
 * Hand-rebuilt from the recovered homepage markup (_hild_home.html).
 * Clean, trustworthy, modern German "Apotheke" design.
 * Loads AFTER the theme's Bootstrap 4 (bootstrap grid: row / col-* already work);
 * this file adds Bootstrap-3 style col-xs-* support plus the full custom theme.
 * Accent: pharmacy teal-green (--main-color) + warm amber secondary (--sec-color).
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
	--main-color: #0f9488;   /* primary pharmacy teal-green (also used inline by share buttons) */
	--main-dark:  #0b6f66;
	--main-darker:#08514a;
	--main-light: #e7f4f2;
	--main-tint:  #f1f8f7;
	--sec-color:  #e08a3c;   /* warm amber secondary */
	--sec-dark:   #c5722a;

	--ink:        #24312f;   /* body text */
	--ink-soft:   #475856;
	--muted:      #6d7f7c;
	--line:       #e0eae8;   /* hairline borders */

	--page-bg:    #f4f7f6;
	--card-bg:    #ffffff;

	--radius-sm: 8px;
	--radius:    14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--shadow-sm: 0 2px 8px rgba(16, 54, 50, .06);
	--shadow:    0 10px 30px rgba(16, 54, 50, .10);
	--shadow-lg: 0 18px 50px rgba(16, 54, 50, .16);

	--container: 1180px;
	--font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   2. Base reset & typography
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--page-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .6em;
	font-weight: 700;
	line-height: 1.2;
	color: var(--main-darker);
	letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.1em; }
p:empty { display: none; margin: 0; }        /* WP auto-<p> leaves stray empties */

a { color: var(--main-color); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--main-dark); }

strong, b { font-weight: 700; }

img, video, svg, figure { max-width: 100%; height: auto; }
img { border: 0; display: block; }
figure { margin: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

::selection { background: var(--main-color); color: #fff; }

/* ==========================================================================
   3. Utilities
   ========================================================================== */
.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}
.d-block { display: block !important; }
.center  { text-align: center; }
.main-color { color: var(--main-color); font-weight: 600; }
.notice { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.clear::after { content: ""; display: table; clear: both; }
.spacer { display: block; }

/* small-screen visibility helpers used by the markup */
.show-sm { display: none; }
.hide-sm { display: block; }
@media (max-width: 767.98px) {
	.show-sm { display: block; }
	.hide-sm { display: none; }
}

/* ==========================================================================
   4. Bootstrap-3 col-xs-* support (BS4 grid/rows already provided by bootstrap.css)
   col-xs applies at ALL widths; col-sm/md/lg are re-asserted afterwards so they
   win the cascade over col-xs at their breakpoints regardless of load order.
   ========================================================================== */
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,
.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-xs-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
.col-xs-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-xs-3  { flex: 0 0 25%;        max-width: 25%; }
.col-xs-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-xs-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-xs-6  { flex: 0 0 50%;        max-width: 50%; }
.col-xs-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-xs-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-xs-9  { flex: 0 0 75%;        max-width: 75%; }
.col-xs-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-xs-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-xs-12 { flex: 0 0 100%;       max-width: 100%; }

/* re-assert larger breakpoints so `.col-xs-12.col-md-2` collapses on mobile but
   expands on desktop (mobile-first override chain) */
@media (min-width: 576px) {
	.col-sm-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
	.col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-sm-3  { flex: 0 0 25%;        max-width: 25%; }
	.col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-sm-6  { flex: 0 0 50%;        max-width: 50%; }
	.col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-sm-9  { flex: 0 0 75%;        max-width: 75%; }
	.col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-sm-12 { flex: 0 0 100%;       max-width: 100%; }
}
@media (min-width: 768px) {
	.col-md-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
	.col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-md-3  { flex: 0 0 25%;        max-width: 25%; }
	.col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-6  { flex: 0 0 50%;        max-width: 50%; }
	.col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-9  { flex: 0 0 75%;        max-width: 75%; }
	.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-md-12 { flex: 0 0 100%;       max-width: 100%; }
}
@media (min-width: 992px) {
	.col-lg-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
	.col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-lg-3  { flex: 0 0 25%;        max-width: 25%; }
	.col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-lg-6  { flex: 0 0 50%;        max-width: 50%; }
	.col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-lg-9  { flex: 0 0 75%;        max-width: 75%; }
	.col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-lg-12 { flex: 0 0 100%;       max-width: 100%; }
}
/* keep bootstrap rows behaving even if a row lands before bootstrap.css parses */
.row { display: flex; flex-wrap: wrap; }
.row.no-gutters { margin-right: 0; margin-left: 0; }
.row [class*="col-"] > img { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   5. Layout shells
   ========================================================================== */
main#site-content { display: block; width: 100%; }

#content, #content.full-width { width: 100%; }

.wrapper.section,
.section.section-wrapper {
	position: relative;
	width: 100%;
	padding: 0;
	scroll-margin-top: 90px;
}

.section-content {
	max-width: var(--container);
	margin: 0 auto;
	padding: 72px 24px;
}

/* section rhythm: alternate light page-bg and solid white bands */
#willkommen, #card-box, #bewertungen { background: var(--card-bg); }
#info-box, #lang-box { background: linear-gradient(180deg, var(--main-tint), var(--page-bg)); }
#rundgang { background: var(--page-bg); }

/* centred section headings */
.section-content > h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	position: relative;
}
.section-content > h2::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin: 18px auto 0;
	border-radius: var(--radius-pill);
	background: linear-gradient(90deg, var(--main-color), var(--sec-color));
}

/* ==========================================================================
   6. Reusable icon system (inline SVG, main-color)
   ========================================================================== */
.icon-left { position: relative; padding-left: 26px; display: inline-block; }
.icon-left::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 18px; height: 18px;
	transform: translateY(-50%);
	background: center / contain no-repeat;
}
.icon-left.pin::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
.icon-left.phone::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E"); }
.icon-left.fax::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M19 8h-1V3H6v5H5a3 3 0 0 0-3 3v6h4v3h12v-3h4v-6a3 3 0 0 0-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm3-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2z'/%3E%3C/svg%3E"); }

/* ==========================================================================
   7. Header
   ========================================================================== */
header {
	background: var(--card-bg);
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	position: relative;
	z-index: 20;
}
.header-grid {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

/* top info bar: address + phone left, action icons right */
.header-info {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 10px 0;
	font-size: .9rem;
	color: var(--ink-soft);
	border-bottom: 1px solid var(--line);
}
.header-info a { color: var(--ink-soft); }
.header-info a:hover { color: var(--main-color); }
.header-info .phone a { font-weight: 700; color: var(--main-dark); }
.header-info .btn-icon:first-of-type { margin-left: auto; }

/* logo (empty <a> — render a clean wordmark) */
.header-logo { display: flex; justify-content: center; padding: 18px 0 8px; }
#logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	text-decoration: none;
	line-height: 1;
}
#logo::before {
	content: "";
	width: 40px; height: 40px;
	border-radius: 11px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 8h-4V4a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v4H5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4h4a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1z'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
		linear-gradient(135deg, var(--main-color), var(--main-dark));
	box-shadow: 0 4px 12px rgba(15, 148, 136, .35);
	flex: none;
}
#logo::after {
	content: "Hildegardis Apotheke";
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--main-darker);
	white-space: nowrap;
}

/* main (desktop) navigation */
.header-menu { padding: 6px 0 14px; }
ul.menu-top {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
}
ul.menu-top > li { position: relative; }
ul.menu-top > li > a {
	display: block;
	padding: 10px 16px;
	font-weight: 600;
	font-size: .98rem;
	color: var(--ink);
	border-radius: var(--radius-pill);
	transition: background .2s var(--ease), color .2s var(--ease);
}
ul.menu-top > li > a:hover,
ul.menu-top > li.current-menu-item > a,
ul.menu-top > li:hover > a { background: var(--main-light); color: var(--main-dark); }

/* dropdown submenus */
ul.menu-top .sub-menu {
	list-style: none;
	margin: 0; padding: 8px;
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 230px;
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s var(--ease), transform .2s var(--ease);
	z-index: 30;
}
ul.menu-top > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
ul.menu-top .sub-menu::before {   /* hover bridge */
	content: "";
	position: absolute;
	top: -8px; left: 0; right: 0; height: 8px;
}
ul.menu-top .sub-menu li a {
	display: block;
	padding: 9px 14px;
	border-radius: var(--radius-sm);
	font-size: .95rem;
	color: var(--ink-soft);
	white-space: nowrap;
}
ul.menu-top .sub-menu li a:hover { background: var(--main-light); color: var(--main-dark); }

/* the blank "partner pharmacy" spacer item */
ul.menu-top > li.other-apo > a { min-width: 8px; }

/* ==========================================================================
   8. Buttons
   ========================================================================== */
.btn,
.home-box .btn,
a.btn {
	display: inline-block;
	padding: 13px 26px;
	background: var(--main-color);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	border: 2px solid var(--main-color);
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: transform .18s var(--ease), background .2s var(--ease),
	            box-shadow .2s var(--ease), color .2s var(--ease);
	box-shadow: 0 6px 18px rgba(15, 148, 136, .28);
}
.btn:hover {
	background: var(--main-dark);
	border-color: var(--main-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 148, 136, .36);
}
.btn.outline, .btn-details.outline {
	background: transparent;
	color: var(--main-dark);
	box-shadow: none;
}
.btn.outline:hover { background: var(--main-color); color: #fff; }

/* header round icon buttons (empty anchors) */
.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	padding: 0;
	border: 1.5px solid var(--line);
	border-radius: 50%;
	background: var(--card-bg) center / 18px 18px no-repeat;
	transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .18s var(--ease);
}
.btn-icon:hover { border-color: var(--main-color); background-color: var(--main-light); transform: translateY(-1px); }
.btn-icon.social { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81a3 3 0 1 0-3-3c0 .24.04.47.09.7L7.05 9.81A3 3 0 1 0 5 15a2.99 2.99 0 0 0 2.05-.81l7.12 4.16c-.05.21-.08.43-.08.65a2.92 2.92 0 1 0 2.91-2.92z'/%3E%3C/svg%3E"); }
.btn-icon.lupe   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M15.5 14h-.79l-.28-.27a6.5 6.5 0 1 0-.7.7l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z'/%3E%3C/svg%3E"); }
.btn-icon.web    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm6.93 6h-2.95a15.65 15.65 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.93 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14a7.96 7.96 0 0 1 0-4h3.38a16.6 16.6 0 0 0 0 4H4.26zm.81 2h2.95c.32 1.25.78 2.45 1.38 3.56A7.99 7.99 0 0 1 5.07 16zm2.95-8H5.07a7.99 7.99 0 0 1 4.33-3.56A15.65 15.65 0 0 0 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66a14.87 14.87 0 0 1 0-4h4.68a14.87 14.87 0 0 1 0 4zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56zM16.36 14a16.6 16.6 0 0 0 0-4h3.38a7.96 7.96 0 0 1 0 4h-3.38z'/%3E%3C/svg%3E"); }

/* ==========================================================================
   9. Hero (#home) — full-screen looping video with overlay copy
   ========================================================================== */
#home { padding: 0; background: #06413b; }
#home .section-content { max-width: none; padding: 0; }
#home #home-content {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.fullscreen-video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.fullscreen-video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#home #home-content::after {   /* legibility scrim */
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(6, 65, 59, .35) 0%, rgba(6, 65, 59, .55) 60%, rgba(6, 65, 59, .78) 100%);
}
.home-box {
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding: 40px 24px 96px;
	text-align: center;
	color: #fff;
}
.home-box h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, .35); margin-bottom: .25em; }
.home-box h2 {
	color: #eafaf7;
	font-weight: 400;
	font-size: clamp(1.15rem, 2.6vw, 1.7rem);
	text-shadow: 0 2px 18px rgba(0, 0, 0, .3);
	margin-bottom: 1.8em;
}
.home-box p { margin: 0 0 14px; display: inline-block; }
.home-box p + p { margin-left: 12px; }
.home-box .btn { box-shadow: 0 8px 26px rgba(0, 0, 0, .3); }
.home-box .btn:hover { background: #fff; color: var(--main-dark); border-color: #fff; }

/* bouncing scroll indicator */
.arrow-down {
	position: absolute;
	left: 50%;
	bottom: 26px;
	width: 26px; height: 26px;
	margin-left: -13px;
	z-index: 2;
	border-right: 3px solid rgba(255, 255, 255, .85);
	border-bottom: 3px solid rgba(255, 255, 255, .85);
	transform: rotate(45deg);
	animation: hero-bounce 1.8s infinite;
}
@keyframes hero-bounce {
	0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .9; }
	50%      { transform: rotate(45deg) translate(6px, 6px); opacity: .4; }
}

/* ==========================================================================
   10. Info boxes (#info-box) — icon-topped white cards
   ========================================================================== */
.info-box-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	align-items: stretch;
}
.info-box {
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px;
	box-shadow: var(--shadow-sm);
	text-align: center;
	transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.info-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-box.info-box-big { grid-column: span 2; }
.info-box h3 { color: var(--main-darker); margin-bottom: .5em; }
.info-box p { margin: 0; color: var(--ink-soft); }
.info-box a { color: var(--main-dark); font-weight: 600; }
.info-box a:hover { color: var(--main-color); }

/* icon medallion on top of each info-box */
.info-box::before {
	content: "";
	display: block;
	width: 56px; height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--main-light) center / 28px 28px no-repeat;
}
.info-box.pin::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
.info-box.clock::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm4.24 14.24L11 13V7h1.5v5.25l4.5 2.67-.76 1.32z'/%3E%3C/svg%3E"); }
.info-box.phone::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E"); }
.info-box.fax::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M19 8h-1V3H6v5H5a3 3 0 0 0-3 3v6h4v3h12v-3h4v-6a3 3 0 0 0-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm3-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2z'/%3E%3C/svg%3E"); }
.info-box.mail::before  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E"); }

/* opening-hours table (custom <day>/<time> elements) */
.times {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 16px;
	text-align: left;
	margin: 4px auto 10px;
	max-width: 340px;
	font-size: .92rem;
}
.times day  { font-weight: 700; color: var(--main-darker); }
.times time { color: var(--ink-soft); text-align: right; }
.open-info-box {
	display: block;
	margin-top: 12px;
	font-size: .82rem;
	font-style: italic;
	color: var(--muted);
	line-height: 1.5;
}

/* ==========================================================================
   11. Willkommen (#willkommen)
   ========================================================================== */
#willkommen .row { align-items: center; }
#willkommen .row img { margin: 0 auto; }
#willkommen p { color: var(--ink-soft); }
.park-box {
	margin-top: 22px;
	padding: 18px 22px;
	background: var(--main-light);
	border-left: 5px solid var(--main-color);
	border-radius: var(--radius-sm);
}
.park-box h3 { margin-bottom: .2em; color: var(--main-dark); }
.park-box p { margin: 0; color: var(--ink-soft); }

/* ==========================================================================
   12. Languages (#lang-box)
   ========================================================================== */
.lang-box-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
.lang-box {
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-top: 4px solid var(--main-color);
	border-radius: var(--radius);
	padding: 24px 20px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.lang-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lang-box.en { border-top-color: var(--sec-color); }
.lang-box.am { border-top-color: #b98a2e; }
.lang-box h3 { margin-bottom: .2em; }
.lang-box p { margin: 0; font-size: 1.2rem; color: var(--ink-soft); }

/* ==========================================================================
   13. Gallery (#rundgang) — WP gallery, floated at 25% via inline style
   ========================================================================== */
#rundgang #gallery-1 { max-width: 1000px; margin: 0 auto; }
#rundgang #gallery-1 .gallery-item { padding: 8px; }
#rundgang #gallery-1 .gallery-icon {
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	line-height: 0;
}
#rundgang #gallery-1 .gallery-icon a { display: block; }
#rundgang #gallery-1 img {
	width: 100%;
	height: auto;
	border: 0 !important;              /* override inline #gallery-1 img border */
	border-radius: var(--radius);
	transition: transform .5s var(--ease);
}
#rundgang #gallery-1 .gallery-icon:hover img { transform: scale(1.07); }

/* ==========================================================================
   14. Kundenkarte (#card-box)
   ========================================================================== */
.card-box-wrapper {
	display: grid;
	grid-template-columns: minmax(220px, 340px) 1fr;
	gap: 40px;
	align-items: center;
}
.card-box-img { text-align: center; }
.card-box-img img {
	margin: 0 auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.card-boxes-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 16px;
}
.card-box {
	position: relative;
	background: var(--main-tint);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 20px 18px 52px;
	font-weight: 600;
	color: var(--ink);
	box-shadow: var(--shadow-sm);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.card-box:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--card-bg); }
.card-box::before {  /* check mark */
	content: "";
	position: absolute;
	left: 18px; top: 50%;
	width: 22px; height: 22px;
	transform: translateY(-50%);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ==========================================================================
   15. Reviews / content blockers (#bewertungen + Borlabs)
   ========================================================================== */
._brlbs-content-blocker,
.BorlabsCookie ._brlbs-content-blocker {
	max-width: 640px;
	margin: 0 auto;
	background: var(--main-tint);
	border: 1px dashed var(--main-color);
	border-radius: var(--radius);
	padding: 30px 26px;
	text-align: center;
	color: var(--ink-soft);
}
._brlbs-content-blocker p { margin: 0 0 .9em; }
a._brlbs-btn,
._brlbs-btn {
	display: inline-block;
	margin-top: 6px;
	padding: 12px 24px;
	background: var(--main-color);
	color: #fff !important;
	font-weight: 700;
	border-radius: var(--radius-pill);
	box-shadow: 0 6px 18px rgba(15, 148, 136, .28);
	transition: background .2s var(--ease), transform .18s var(--ease);
}
a._brlbs-btn:hover, ._brlbs-btn:hover { background: var(--main-dark); transform: translateY(-2px); }

/* ==========================================================================
   16. Footer
   ========================================================================== */
footer { margin-top: 20px; }
#footer-b {
	background: var(--main-darker);
	color: #cfe6e2;
}
#footer-b .section-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 34px;
	padding-top: 56px;
	padding-bottom: 56px;
}
#footer-b .item h3 {
	color: #fff;
	font-size: 1.15rem;
	margin-bottom: .7em;
	padding-bottom: .5em;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	position: relative;
	padding-left: 28px;
}
#footer-b .item h3::before {
	content: "";
	position: absolute;
	left: 0; top: 2px;
	width: 20px; height: 20px;
	background: center / contain no-repeat;
	filter: brightness(0) invert(1);
	opacity: .9;
}
#footer-b .item h3.pin::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
#footer-b .item h3.clock::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm4.24 14.24L11 13V7h1.5v5.25l4.5 2.67-.76 1.32z'/%3E%3C/svg%3E"); }
#footer-b a { color: #eafaf7; }
#footer-b a:hover { color: #fff; text-decoration: underline; }
#footer-b .icon-left { color: #cfe6e2; }
#footer-b .icon-left::before { filter: brightness(0) invert(1); opacity: .85; }
#footer-b .times day  { color: #fff; }
#footer-b .times time { color: #cfe6e2; }
#footer-b .open-info-box { color: #a9cec8; }

#footer-c {
	background: #063c37;
	color: #9fc3bd;
	font-size: .85rem;
}
#footer-c .section-content {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
}
#footer-c a { color: #cfe6e2; }
#footer-c a:hover { color: #fff; }
#nav_footer {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	margin: 0; padding: 0;
}

/* ==========================================================================
   17. Floating "smartnav" — premium sticky pill
   ========================================================================== */
nav#smartnav {
	position: fixed;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 900;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--line);
	border-radius: 25px;                 /* matches inline style */
	box-shadow: var(--shadow-lg);
	max-width: calc(100vw - 24px);
}
nav#smartnav .sn-btn,
nav#smartnav .btn-details {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	font-weight: 700;
	font-size: .95rem;
	color: var(--main-dark);
	border-radius: var(--radius-pill);
	white-space: nowrap;
	transition: background .2s var(--ease), color .2s var(--ease);
}
nav#smartnav .sn-btn:hover,
nav#smartnav .btn-details:hover { background: var(--main-color); color: #fff; }
nav#smartnav .sn-btn.angebote { background: var(--sec-color); color: #fff; }
nav#smartnav .sn-btn.angebote:hover { background: var(--sec-dark); }

/* hamburger */
.sn-btn-menu {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	padding: 0 13px;
	border-radius: 50%;
	background: var(--main-color);
	cursor: pointer;
	transition: background .2s var(--ease);
}
.sn-btn-menu:hover { background: var(--main-dark); }
.sn-btn-menu > div { height: 3px; border-radius: 3px; background: #fff; transition: transform .2s var(--ease); }
.sn-btn-menu .line-1 { width: 20px; }
.sn-btn-menu .line-2 { width: 20px; }
.sn-btn-menu .line-3 { width: 14px; }

/* ==========================================================================
   18. Detail overlay panels (.details) — hidden until opened by theme JS
   ========================================================================== */
.details {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	padding: 60px 20px;
	overflow-y: auto;
	background: rgba(8, 60, 55, .94);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #eafaf7;
	text-align: center;
}
/* upgrade to vertically-centred flex when theme JS reveals via inline display */
.details[style*="block"] {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.details > * { max-width: 680px; margin-left: auto; margin-right: auto; }
.details h3, .details strong { color: #fff; }
.details p { color: #d5ece8; }
.details a { color: #eafaf7; }

/* logo inside overlays */
.details #logo { justify-content: center; margin: 0 auto 22px; }
.details #logo::after { color: #fff; }
.details #logo::before {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M19 8h-4V4a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v4H5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4h4a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1z'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
		#fff;
}

/* close button */
.details .close {
	position: absolute;
	top: 22px; right: 22px;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	cursor: pointer;
	transition: background .2s var(--ease);
}
.details .close:hover { background: rgba(255, 255, 255, .24); }
.details .close::before, .details .close::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 18px; height: 2px;
	background: #fff;
}
.details .close::before { transform: translate(-50%, -50%) rotate(45deg); }
.details .close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* overlay content wrappers */
.sn-wrapper { max-width: 520px; margin: 0 auto; }
.sn-wrapper.left { text-align: left; }
.sn-wrapper .times { margin-left: 0; }

/* mobile menu tiles inside #sn-menu */
#nav_mobil {
	list-style: none;
	margin: 22px auto 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	max-width: 640px;
}
#nav_mobil > li > a {
	display: block;
	padding: 18px 14px;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--radius);
	color: #fff;
	font-weight: 700;
	transition: background .2s var(--ease), transform .18s var(--ease);
}
#nav_mobil > li > a:hover { background: var(--main-color); transform: translateY(-2px); }
#nav_mobil > li.current-menu-item > a { background: var(--main-color); }

/* detail action buttons — white pills with main-color icon */
.sn-btn-detail {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 116px;
	min-height: 100px;
	margin: 8px;
	padding: 18px 10px;
	background: #fff;
	color: var(--ink);
	font-weight: 700;
	font-size: .9rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: transform .18s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.sn-btn-detail:hover { transform: translateY(-3px); color: var(--main-dark); box-shadow: var(--shadow-lg); }
.sn-btn-detail::before {
	content: "";
	width: 34px; height: 34px;
	background: var(--main-light) center / 20px 20px no-repeat;
	border-radius: 50%;
}
.sn-btn-detail.phone::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E"); }
.sn-btn-detail.mail::before    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E"); }
.sn-btn-detail.pin::before     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
.sn-btn-detail.clock::before   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm4.24 14.24L11 13V7h1.5v5.25l4.5 2.67-.76 1.32z'/%3E%3C/svg%3E"); }
.sn-btn-detail.foto::before    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M9 2 7.17 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-3.17L15 2H9zm3 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm0-2a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3C/svg%3E"); }
.sn-btn-detail.app::before     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M4 4h6v6H4V4zm10 0h6v6h-6V4zM4 14h6v6H4v-6zm10 0h6v6h-6v-6z'/%3E%3C/svg%3E"); }
.sn-btn-detail.formular::before,
.sn-btn-detail.rezept::before  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9488'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E"); }

/* ==========================================================================
   19. Search form (inside overlays)
   ========================================================================== */
#searchform div { display: flex; gap: 8px; justify-content: center; margin: 14px auto 8px; max-width: 460px; }
#searchform input[type="text"], #s {
	flex: 1;
	padding: 12px 16px;
	font: inherit;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	outline: none;
}
#searchform input[type="text"]:focus { box-shadow: 0 0 0 3px rgba(15, 148, 136, .3); }
#searchsubmit, input[type="submit"] {
	padding: 12px 24px;
	font: inherit;
	font-weight: 700;
	color: #fff;
	background: var(--main-color);
	border: 0;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: background .2s var(--ease);
}
#searchsubmit:hover, input[type="submit"]:hover { background: var(--main-dark); }

/* ==========================================================================
   20. Share (shariff) buttons
   ========================================================================== */
.shariff-buttons {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	padding: 0;
	margin: 18px 0 0;
}
.shariff-button a.shariff-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 50%;
	box-shadow: var(--shadow);
	transition: transform .18s var(--ease);
}
.shariff-button a.shariff-link:hover { transform: translateY(-3px) scale(1.05); }
.shariff-icon svg { width: 22px; height: 22px; }

/* ==========================================================================
   21. Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
	.card-box-wrapper { grid-template-columns: 1fr; gap: 26px; }
	.card-box-img img { max-width: 260px; }
	.info-box.info-box-big { grid-column: span 1; }
}

@media (max-width: 767.98px) {
	body { font-size: 16px; }
	.section-content { padding: 48px 18px; }

	/* hide desktop header bars — floating smartnav carries mobile nav */
	.header-hide { display: none !important; }
	.header-logo { padding: 14px 0; }
	#logo::after { font-size: 1.25rem; }

	#home #home-content { min-height: 84vh; }
	.home-box { padding: 30px 18px 90px; }
	.home-box p + p { margin-left: 0; }
	.home-box .btn { display: block; width: 100%; max-width: 320px; margin: 0 auto 12px; }

	.info-box-wrapper { grid-template-columns: 1fr 1fr; }
	.info-box.info-box-big { grid-column: span 2; }

	#rundgang #gallery-1 .gallery-item { width: 50% !important; }

	nav#smartnav { bottom: 12px; gap: 4px; padding: 6px; width: calc(100vw - 20px); justify-content: space-between; }
	nav#smartnav .sn-btn, nav#smartnav .btn-details { padding: 10px 12px; font-size: .82rem; gap: 4px; }
	.sn-btn-menu { width: 42px; height: 42px; }

	#footer-c .section-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 479.98px) {
	.info-box-wrapper { grid-template-columns: 1fr; }
	.info-box.info-box-big { grid-column: span 1; }
	#rundgang #gallery-1 .gallery-item { width: 100% !important; }
	.card-boxes-wrapper { grid-template-columns: 1fr; }
	nav#smartnav .sn-btn.angebote { display: none; }   /* keep the pill compact on tiny screens */
}

/* ==========================================================================
   22. Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   23. Homepage content-visibility fix — neutralize AOS (animate-on-scroll)
   --------------------------------------------------------------------------
   The one-page homepage wraps nearly all of its between-hero-and-footer
   content in [data-aos] elements: .info-box-wrapper (address / opening hours
   / phone / fax / e-mail), the #willkommen columns (logo + welcome text),
   .lang-box-wrapper, the #rundgang gallery wrapper, .card-box-img +
   .card-boxes-wrapper (Kundenkarte), and every section <h2>.

   aos.css (loaded from cdn.staude.info) sets [data-aos]{opacity:0} plus a
   translate, and only reveals them once aos.js adds .aos-animate on scroll.
   When that script does not run, the elements keep their full layout height
   (offsetHeight stays correct) but remain invisible and shifted — so each
   section renders as a blank band even though its children compute as
   visible. A child's own opacity reads 1, but its [data-aos] ancestor at
   opacity:0 makes the whole subtree invisible.

   This stylesheet loads AFTER aos.css, so forcing the final/revealed state
   here (with !important to also beat AOS's own animate rules) guarantees the
   real content always renders in normal document flow. The scroll animation
   becomes a no-op progressive enhancement; correctness of content wins.
   Applies equally on inner pages (harmless where AOS is absent or working).
   ========================================================================== */
[data-aos] {
	opacity: 1 !important;
	transform: none !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transition-property: none !important;
}
/* also clear any AOS animation variants that transform/translate children */
[data-aos][class*="aos-"],
[data-aos].aos-init,
[data-aos].aos-animate {
	opacity: 1 !important;
	transform: none !important;
}

/* ---- recovered hero fallback: missing home.mp4 -> pharmacy photo background ---- */
.fullscreen-video-wrap{background:#0d5d52 url(/wp-content/uploads/sites/141/apotheke-2-1.jpg) center center/cover no-repeat!important;}
.fullscreen-video-wrap video{display:none!important;}
#home .home-box{position:relative;z-index:3;}

/* ---- collapse empty section min-heights / tighten vertical rhythm ---- */
#site-content .wrapper.section-wrapper{min-height:0!important;}
#site-content .section-content{min-height:0!important;}
#site-content .full-width>.wrapper{padding-top:34px;padding-bottom:34px;}
main#site-content>.full-width{padding-top:10px;}
