@charset "UTF-8";
/* CSS Document */


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face { 
	font-family: "Titillium-Bold"; 
	src: url("font/TitilliumWeb-Bold.ttf"); 
	format: "truetype";
	font-weight: 700;
	font-style: normal;
}

@font-face { 
	font-family: "Titillium-Ilatic"; 
	src: url("font/TitilliumWeb-Italic.ttf"); 
	format: "truetype";
	font-weight: 400;
	font-style: normal;
}

@font-face { 
	font-family: "Titillium-Regular"; 
	src: url("font/TitilliumWeb-Regular.ttf"); 
	format: "truetype";
	font-weight: 400;
	font-style: normal;
}

@font-face { 
	font-family: "Titillium-Light"; 
	src: url("font/TitilliumWeb-Light.ttf"); 
	format: "truetype";
	font-weight: 300;
	font-style: normal;
}

:root { 
	--yellow-color: #f2ca14;
	--green-color: #23823e;
	--red-color: #c20e1a;
}  
 

body {
    margin: 0;
    padding-top: 100px; 
	font-family: "Titillium-Regular";
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; 
}

/*Navigation*/


nav {
	display: flex;
	justify-content: flex-start;
}

nav ul {
	display: flex;
	justify-content: space-between;
	margin-top: 35px;
	gap: 50px;
}

nav ul li {
	list-style: none;
	text-decoration: none;
}


nav a {
	text-decoration: none;
	color: #000;
	font-size: 24px;
	transition: .2s;
}

nav a:hover {
		color: #23823e;
	font-size: 24px;
}

.navigation{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 5px 10px;
}


.navigation:active {
	position: fixed;
	scroll-behavior: smooth;
	top: 0;
    left: 0;
    width: 100%; 
    background-color: white; 
    z-index: 1000; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

ul li ul.drop-down li, ul li ul.drop-down-yellow li {
	display: block;
}

ul li ul.drop-down {
	width: 350px;
	background-color: #FEFEFE;
	position: absolute;
	z-index: 999;
	display: none;
	border-radius: 10px;
	box-shadow: 0 5px 15px var(--green-color);
	padding: 0 20px;
}

ul li ul.drop-down-yellow {
	width: 350px;
	background-color: #FEFEFE;
	position: absolute;
	z-index: 999;
	display: none;
	border-radius: 10px;
	box-shadow: 0 5px 15px var(--yellow-color);
	padding: 0 20px;
}

ul li:hover ul.drop-down, ul li:hover ul.drop-down-yellow {
	display: block;
}

.current {
	color: var(--green-color);
	font-family: "Titillium-Bold";
	font-weight: 800;
}

.logo-nav {
	display: flex;
	gap: 40px;
	
}

.notfall {
	color: var(--red-color);
	font-family: "Titillium-Bold";
} 

.notfall:hover {
	color: var(--red-color);
}

.apotheken-logo {
	width: 100px;
}

/* Texte */

h1 {
	font-family: "Titillium-Bold";
	font-size: 110px;
}




h2 {
	font-family: "Titillium-Bold";
	font-size: 92px;
}

h3 {
	font-family: "Titillium-Bold";
	font-size: 70px;
}

h4 {
	font-family: "Titillium-Bold";
	font-size: 56px;
}

h5 {
	font-family: "Titillium-Bold";
	font-size: 48px;
}
h6 {
	font-family: "Titillium-Bold";
	font-size: 30px;
}

p {
	line-height: 1.6;
	margin: 20px 0;
}


.text-white {
	color: #fff;
}


.background {
	background-image: url("images/bskopek-background.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: 1; 
	margin: 0;
	width: 100%;
	height: 1000px;
}

.background-kosmetik {
	background-image: url("images/background-kosmetik-section.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: 1;
	width: 100%;
	height: 100%;
}


.preloader {
	background: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    left: 0;
    top: 0;
}

.preloader .ball-scale-multiple {
  position: relative;
  top: 50%;
  left: 50%;
}

 @-webkit-keyframes ball-scale-ripple-multiple {
 0% {
 -webkit-transform: scale(0.1);
 transform: scale(0.1);
 opacity: 1;
}
 70% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.7;
}
 100% {
 opacity: 0.0;
}
}

 @keyframes ball-scale-ripple-multiple {
 0% {
 -webkit-transform: scale(0.1);
 transform: scale(0.1);
 opacity: 1;
}
 70% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.7;
}
 100% {
 opacity: 0.0;
}
}

.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}
.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid var(--green-color);
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
 @-webkit-keyframes ball-beat {
 50% {
 opacity: 0.2;
 -webkit-transform: scale(0.75);
 transform: scale(0.75);
}
 100% {
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
 @keyframes ball-beat {
 50% {
 opacity: 0.2;
 -webkit-transform: scale(0.75);
 transform: scale(0.75);
}
 100% {
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
.ball-beat > div {
  background-color: var(--green-color);
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear;
}
.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.35s !important;
  animation-delay: -0.35s !important;
}
 @-webkit-keyframes ball-scale-multiple {
 0% {
 -webkit-transform: scale(0);
 transform: scale(0);
 opacity: 0;
}
 5% {
 opacity: 1;
}
 100% {
 -webkit-transform: scale(1);
 transform: scale(1); 
 opacity: 0;
}  
}
 @keyframes ball-scale-multiple {
 0% {
 -webkit-transform: scale(0);
 transform: scale(0);
 opacity: 0; 
}
 5% {
 opacity: 1;
}
 100% {  
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0;
}
}   

.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-multiple > div {
  background-color: var(--green-color);
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite;
}


.overlay {
    position: relative;
    display: inline-block;
    width: 100%; 
    max-width: 450px; 
	margin-top: 20px;
}

.overlay img {
    width: 300px; 
    display: block;
	z-index: 996;
}


#Home {
  position: relative;
  overflow: hidden;
}


/* Parallax Scroll-Over */

.container-parallax {
    display: flex;
	grid: 1 2;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
}

.parallax  {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;	
}

.parallax img {
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	will-change: transform;
	opacity: 1;
 transform: translateY(0);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/*Schwarzwald*/

.parallax-layer1 img {
	position: fixed;
	z-index: 91;
	top: 40%;
}


.parallax-layer3 img {
	position: fixed;;
	z-index: 90;
	top: 40%;
	left: 40%;
}

.parallax-layer5 img {
	position: fixed;
	z-index: 94;
	top: 55%;
	left: 20%
}

.parallax-layer6 img {
	position: fixed;
	top: 45%;
	z-index: 97;
	left: 30%;
}

.parallax-layer7 img {
	position: fixed;
	z-index: 100;
	top: 40%;
}

/*Artznei*/

        .parallax-layer2 img {
            width: 350px;
            z-index: 92;
            left: 5%;
            top: 15%;
            transform: translateY(-100px) rotate(-20deg);
        }

        .parallax-layer4 img {
            width: 400px;
            z-index: 99;
            left: 60%;
            top: 40%;
            transform: translateY(-100px) rotate(20deg);
        }

        .parallax-layer8 img {
            width: 400px;
            z-index: 95;
            left: 30%;
            top: 3%;
            transform: translateY(-100px) rotate(20deg);
        }

        .parallax-layer9 img {
            width: 350px;
            z-index: 95;
            top: 8%;
            left: 55%;
            transform: translateY(-100px) rotate(10deg);
        }

        .parallax-layer10 img {
            width: 400px;
            z-index: 100;
            left: 25%;
            top: 40%;
            transform: translateY(-100px) rotate(-40deg);
        }

        .parallax-layer11 img {
            width: 350px;
            z-index: 93;
            left: 80%;
            top: 10%;
            transform: translateY(-100px);
        }


.scroll-down {
  position: fixed;
  top: 88%;
  left: 50%; 
  transform: translateX(-50%);
  z-index: 9999;
  width: 34px;
  height: 55px;
	transition: transform 0.5s ease, opacity 0.5s ease;
}
.scroll-down.hidden {
    transform: translateX(-50%) translateY(-50px); 
    opacity: 0;                                 
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 1;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

.arrow-down img {
	width: 30px;
	margin-left: 4px;
	animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}


/* Ortsnamen auf der Startseite immer über dem festen Footer halten.
   Die Position der beiden vorhandenen Elemente bleibt unverändert. */
.home-location-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.home-location-overlay .koenigsfeld-klickdown,
.home-location-overlay .sulgen-klickdown {
  pointer-events: auto;
}

.koenigsfeld-klickdown {
  position: fixed;
  top: 65%; 
  left: 20%; 
  transform: translateX(-50%);
  z-index: 10001 !important; 
  width: 600px;
  height: auto;
  pointer-events: all;
}

.koenigsfeld-klickdown a {
	text-decoration: none;
}

.sulgen-klickdown {
position: fixed;
  top: 65%; 
  left: 65%; 
  transform: translateX(50%);
  z-index: 9999; 
  width: 600px;
  height: auto;
  pointer-events: all;
}

.sulgen-klickdown a {
	text-decoration: none;
}

.arrow-leftside {
	width: 150px;
	margin-bottom: 10px;
	filter: invert(1);
	animation: bounceAndRotateLeft 2s infinite;
}

.arrow-rightside {
	width: 150px;
	margin-bottom: 10px;
	filter: invert(1);
	animation: bounceAndRotateRight 2s infinite;
}



@keyframes bounceAndRotateLeft {
  0%, 100% {
    transform: translateY(0) rotate(-50deg);
  }
  50% {
    transform: translateY(-30px) rotate(-50deg);
  }
}

@keyframes bounceAndRotateRight {
  0%, 100% {
    transform: translateY(0) rotate(30deg);
  }
  50% {
    transform: translateY(-30px) rotate(30deg);
  }
}


.scroll-trigger {
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 0.5s ease, transform 0.5s ease; 
    will-change: opacity, transform; 
}

.scroll-trigger.visible {
    opacity: 1; 
    transform: translateY(0);
}


#Team .container {
    display: flex;
    justify-content: center; 
    align-items: center;    
    flex-direction: column; 
    padding: 20px;
	width: 100%;
}

/* Team-Styling */
.team {
    text-align: center; 
}

.layout-wrapper {
    display: flex;
	flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; 
}


/* Mittlerer Produktabschnitt */
.product-section {
    flex: 1;
	width: 100%;
    align-content: center;
}

.product-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-images img {
    width: 100%;
    max-width: 300px;
    margin: 5px;
}

/* Individuelle Stile für Zick-Zack */
.produkt1 {
    transform: rotate(-10deg) translateY(15px); 
    max-width: 200px;
}

.produkt2 {
    transform: rotate(5deg) translateY(-10px); 
    max-width: 200px;
}

.produkt3 {
    transform: rotate(-5deg) translateY(5px);
    max-width: 200px;
}

/* Allgemeine Produktbild-Stile */
.product-images img {
    transition: transform 0.3s ease; 
}

.product-images img:hover {
    transform: scale(1.1); 
}

/* Rechter Hauptbildabschnitt */
.image-section2 {
    flex: 1;
    max-width: 32%;
    text-align: center;
}

.main-image {
    width: 100%;
    max-width: 450px;
    object-fit: contain;
}

/* Mittlerer Bildabschnitt */
.image-section3 {
    flex: 1;
    max-width: 100%;
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.centered-image {
	width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
}

.text-section2 {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 15px; 
    justify-content: flex-start;
	padding: 20px;
}

.text-section, .text-section2 p {
	max-width: 80ch;
	font-size: 21px;
	line-height: 1.6;
}

/*Schwarzwald-Apotheke*/

.hero-image {
    width: 100vw; 
    height: 100vh; 
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.person-container {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    height: auto; 
}

.person-container img {
	width: 100%;
	max-width: 800px;
}

.person-alone {
	position: relative;
	z-index: 2;
}



.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; 
    align-items: center; 
}
 


.btn-transparent, .btn-transparent-glow-green, .btn-transparent-glow-yellow {
    max-width: 100%;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #000;
    padding: 10px 15px;
    text-align: center;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-transparent:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.btn-transparent-glow-green:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--green-color);
}

.btn-transparent-glow-yellow:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--yellow-color);
}


.text-container {
    flex: 1;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    text-align: left;
}


.text-box {
    max-width: 600px;
    padding: 20px;
    font-size: 21px;
    line-height: 1.6;
    margin: 0 auto;
}

.custom-logo {
    max-width: 400px; 
    margin-bottom: 10px;
}

.custom-btn, .custom-btn-yellow {
    max-width: 100%;
    padding: 10px 15px;
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    border-radius: 10px;
    cursor: pointer;
	text-transform: uppercase;
	font-size: 26px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-btn:hover {
	background: var(--green-color);
	border: 1px solid var(--green-color);
	color: #fff;
}

.custom-btn-yellow:hover {
	background: var(--yellow-color);
	border: 1px solid var(--yellow-color);
	color: #fff;
}

/* Übergeordneter Container */
.custom-container {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    width: 100%;
}

/* Linke Sektion: Text und Logo */
.text-section {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 15px; 
    justify-content: center;
	padding: 20px;
}


.custom-logo {
    max-width: 50%; 
    margin-bottom: 20px;
}

/* Rechte Sektion: Bild */
.image-section {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center;
}

.image-section img {
	max-width: 100%;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.custom-image {
    max-width: 100%;
	width: 1000px;
    height: auto; 
	transform: translateY(30%) rotate(-10deg);
}

.custom-image2 {
    max-width: 70%;
    height: auto; 
}


/* Allgemeine Container-Stile */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
	padding: 20px;
}


.kontakt-section {
    display: flex;
	flex-direction: row;
    width: 100%;
}

.container-kontakt {
    display: flex;
    width: 100%;
    height: 100%;
}

.kontakt-image {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakt-image img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}

.kontakt-logo {
	margin: 0 auto;
	padding-bottom: 50px;
}

.kontakt-details {
    flex: 0 0 800px; 
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #333;
}

.kontakt-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.kontakt-details p {
    margin: 10px 0;
}

.kontakt-details a {
    color: #000;
    text-decoration: none;
}

.kontakt-details a:hover {
    text-decoration: underline;
}

.icon-kontakt {
    width: 50px;
    margin-bottom: 10px;
	margin: 0 auto;
}


.card-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
	max-width: 100%;
}

.card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 600px;
	padding: 30px;
}

.card img {
	width: 100%;
	max-width: 400px;
}

.big-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.big-card img {
	width: 100%;
	max-width: 700px;
}

.card-text {
	max-width: 700px;
    padding: 30px;
    font-size: 24px;
    line-height: 1.6;
    margin: 20px 0;
	opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.card-text a {
	text-decoration: none;
	color: #000;
}


.card-container.show .big-card {
    opacity: 1;
    transform: translateX(0);
}

.card-container.show .card-text {
    opacity: 1;
    transform: translateX(0);
}

.border-bottom-green, .border-bottom-yellow {
    position: relative;
    display: inline-block; 
    width: 70%; 
}


.border-bottom-green::after {
    content: "";
    position: absolute;
    left: -30%;
    bottom: 0;
    width: 130%;
    height: 4px;
    background-color: var(--green-color);
    transition: width 1s ease-out;
}

.border-bottom-yellow::after {
    content: "";
    position: absolute;
    left: -30%;
    bottom: 0;
    width: 130%;
    height: 4px;
    background-color: var(--yellow-color);
    transition: width 1s ease-out;
}

.card-container.show .border-bottom-green::after, .card-container.show .border-bottom-yellow::after {
    width: 100%;
}


.reformhaus-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    color: #000; 
}
.reformhaus-image {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    z-index: -1;
    overflow: hidden;
}

.reformhaus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.reformhaus-content {
    position: relative;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9); 
    padding: 20px;
    border-radius: 8px; 
    box-sizing: border-box;
}

.reformhaus-content p {
	font-size: 21px;
    margin-bottom: 15px;
    line-height: 1.6;
}


.privacy-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px; 
}

.privacy-section .privacy-content {
    max-width: 900px; 
	font-size: 18px;
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.privacy-section h1,
.privacy-section h5 {
    margin: 10px 0;
}

.privacy-section p {
    margin: 10px 0;
}


  .button-container {
	display: flex;
	 flex-direction: column;
	 justify-content: center;
	 gap: 40px;
	 padding: 20px;
  }

.button-container a {
	text-decoration: none;
}

.btn-emergency {
	display: block;
	width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-color: var(--green-color);
	background: #fff;
	font-size: 42px;
}

.btn-emergency-yellow {
	display: block;
	width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-color: var(--yellow-color); 
	background: #fff;
	font-size: 42px;
}

.btn-emergency:hover {
	background: var(--green-color);
	color: #fff;
	transform: scale(1.05);
    box-shadow: 0 5px 10px var(--green-color);
}

.btn-emergency-yellow:hover {
	background-color: var(--yellow-color);
	color: #fff;
	transform: scale(1.05);
    box-shadow: 0 5px 10px var(--yellow-color);
}

.btn-emergency, .btn-emergency-yellow {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Verzögerung für die Buttons */
.btn-emergency:nth-child(1) { animation-delay: 0.3s; }
.btn-emergency:nth-child(2) { animation-delay: 0.6s; }
.btn-emergency:nth-child(3) { animation-delay: 0.9s; }
.btn-emergency:nth-child(4) { animation-delay: 1.2s; }


.price-card .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-card .title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.card-kosmetik {
	max-width: 600px;
}
.card-kosmetik .category {
  font-size: 2.8rem;
  color: #23823e;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.item:last-child {
  border-bottom: none;
}

.details {
  flex-grow: 1; 
}

.details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #23823e;
}

.details p {
  margin: 5px 0 0;
font-size: 21px;
  color: #666;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
	margin-left: 100px; 
	text-align: right;
}


/****KARRIERE****/

.card-karriere-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap; 
    padding: 20px;
}

/* Grunddesign der Karten */
.card-karriere {
    position: relative;
    width: 450px;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--green-color);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    
    /* Animation beim Laden */
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

/* Karten erscheinen nacheinander */
.card-karriere:nth-child(1) { animation-delay: 0.3s; }
.card-karriere:nth-child(2) { animation-delay: 0.6s; }
.card-karriere:nth-child(3) { animation-delay: 0.9s; }

/* Hover Effekt */
.card-karriere:hover {
    transform: scale(1.05);
}

/* Bild */
.card-img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

/* Versteckte Infos (erscheinen beim Hover) */
.card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.card-karriere:hover .card-body, .card-karriere-yellow:hover .card-body {
    opacity: 1;
    transform: translateY(0);
}

/* Typografie */
.card-title {
    font-size: 32px;
    margin-bottom: 5px;
}

.card-sub-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-info {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Button */
.card-btn, .card-btn-yellow {
    background: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.card-btn:hover {
    background: var(--green-color);
}

.card-btn-yellow:hover {
	background: var(--yellow-color);
}

.card-karriere-yellow {
    position: relative;
    width: 450px;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--yellow-color);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    
    /* Animation beim Laden */
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

/* Animation für das sanfte Erscheinen der Karten */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/****BLOG****/

.blog-section-green {
            text-align: center;
            padding: 80px 20px;
	  min-height: calc(100vh - 100px);
            background: #23823e;
            background: linear-gradient(135deg, #ffecd2 0%, var(--green-color) 100%);
        }

        .blog-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        .blog-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 2000px;
            margin: 0 auto;
        }
        .blog-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            overflow: hidden;
            width: 450px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            position: relative;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .blog-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .blog-content {
            padding: 20px;
            text-align: left;
        }
        .blog-content h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #c20e1a;
        }
        .blog-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6; 
        }
        .read-more, .read-more-yellow {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: #fff;
			color: #000;
            text-decoration: none;
			text-transform: uppercase;
            border-radius: 30px;
            transition: background 0.3s, transform 0.2s;
        }
        .read-more:hover {
            background: var(--green-color);
            transform: scale(1.05);
        }
 		.read-more-yellow:hover {
            background: var(--yellow-color);
            transform: scale(1.05);
        }


      .blog-section-yellow {
    text-align: center;
    padding: 80px 20px 120px;
    min-height: calc(100vh - 100px);
	background: rgb(244,241,113);
    background: linear-gradient(135deg, #ffecd2 0%, var(--yellow-color) 100%);
}

        .blog-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        .blog-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 2000px;
            margin: 0 auto;
        }
        .blog-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            overflow: hidden;
            width: 450px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            position: relative;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .blog-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .blog-content {
            padding: 20px;
            text-align: left;
        }
        .blog-content h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #c20e1a;
        }
        .blog-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6; 
        }
        .read-more, .read-more-yellow {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: #fff;
			color: #000;
            text-decoration: none;
			text-transform: uppercase;
            border-radius: 30px;
            transition: background 0.3s, transform 0.2s;
        }
        .read-more:hover {
            background: var(--green-color);
            transform: scale(1.05);
        }
 		.read-more-yellow:hover {
            background: var(--yellow-color);
            transform: scale(1.05);
        }


.app-download {
	width: 100%;
	max-width: 250px;
}

/**Footer**/


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 500;
}


footer p{
	margin-left: 20px;
}


.footer-container {
	display: flex;
	justify-content: space-between; 
	align-items: center;
	color: #fff;
background: rgb(35,130,62);
background: linear-gradient(90deg, rgba(35,130,62,1) 45%, rgba(255,255,255,0) 100%);
}

.footer-container2 {
	display: flex;
	justify-content: space-between; 
	align-items: center;
	color: #fff;
background: rgb(242,202,20);
background: linear-gradient(90deg, rgba(242,202,20,1) 45%, rgba(255,255,255,0) 100%);
}


.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-nav ul {
	display: flex;
	gap: 50px;
	padding: 0;
	margin-right: 60px;
	list-style: none;
}

.footer-nav li {
	margin: 0;
}

.footer-nav a {
	text-decoration: none;
	color: #fff;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.mt-50 {
	margin-top: 50px;
}

.text-center {
	text-align: center;
	margin: 0 auto;
}

.border-top {
	width: 800px;
	border-top: 3px solid var(--green-color);
}


.privacy-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    justify-content: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.text-section .text-box {
    max-width: 900px;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
}
/* E-Rezept: strukturierter Inhalt */
#E-rezept .e-rezept-content {
    width: 100%;
    max-width: 720px;
}

#E-rezept .e-rezept-content p {
    margin: 0 0 14px;
}

#E-rezept .e-rezept-content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}

#E-rezept .e-rezept-content li {
    margin-bottom: 9px;
    line-height: 1.55;
}

#E-rezept .e-rezept-content a {
    color: var(--green-color);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* 24/7 Bestellhinweise */
.promo-24-7 {
    position: relative;
    z-index: 1;
    isolation:isolate;
    width: 100%;
    padding: 34px 20px;
    background: #fff;
    box-sizing: border-box;
}

.promo-24-7__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 5vw, 80px);
}

.promo-24-7__headline {
    margin: 0;
    max-width: 360px;
    color: var(--green-color);
    font-size: clamp(1.35rem, 2.2vw, 2.2rem);
    line-height: 1.15;
    font-weight: 700;
}

.promo-24-7__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-shrink: 0;
}

.promo-24-7__button {
    width: clamp(122px, 11vw, 158px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--green-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
    border: 3px solid var(--green-color);
    box-sizing: border-box;
    transition: transform .22s ease, box-shadow .22s ease;
}

.promo-24-7__button--light {
    background: #fff;
    color: var(--green-color);
}

.promo-24-7__button:hover,
.promo-24-7__button:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.promo-24-7__time {
    display: block;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 7px;
}

.promo-24-7__label {
    display: block;
    font-size: clamp(.78rem, 1vw, .98rem);
    line-height: 1.15;
    font-weight: 700;
}

.promo-24-7--yellow .promo-24-7__headline {
    color: #e4a800;
}

.promo-24-7--yellow .promo-24-7__button {
    background: #f4c300;
    border-color: #f4c300;
    color: #1d1d1d;
}

.promo-24-7--yellow .promo-24-7__button--light {
    background: #fff;
    color: #b78500;
}


/* White 24/7 section behind forest */
.promo-24-7{z-index:1!important;}
.parallax-layer5 img,.parallax-layer6 img,.parallax-layer7 img{z-index:200!important;}

/* KORREKTUR: 24/7-Balken wirklich hinter der Waldsilhouette */
#Home,
#Home .container-parallax,
#Home .parallax {
    overflow: visible !important;
}

.promo-24-7.promo-24-7--behind-parallax {
    position: relative !important;
    z-index: 0 !important;
    isolation: auto !important;
}

#Home .parallax-layer1 img,
#Home .parallax-layer3 img,
#Home .parallax-layer5 img,
#Home .parallax-layer6 img,
#Home .parallax-layer7 img {
    position: fixed !important;
    z-index: 500 !important;
    pointer-events: none;
}

/* =========================================================
   REFORMHAUS – nutzerfreundliche Inhaltsdarstellung
   ========================================================= */
.reformhaus-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0;
}

.reformhaus-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.reformhaus-hours {
    position: sticky;
    top: 125px;
    width: auto;
    padding: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(35,130,62,.16);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
    box-sizing: border-box;
    z-index: 2;
}

.reformhaus-hours h3 {
    margin: 0 0 18px;
    color: rgb(35,130,62);
    font-size: 25px;
    line-height: 1.2;
}

.reformhaus-hours-list {
    display: grid;
    gap: 14px;
}

.reformhaus-hours-row {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(35,130,62,.16);
}

.reformhaus-hours-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.reformhaus-hours-row strong,
.reformhaus-hours-row span {
    display: block;
}

.reformhaus-hours-row strong {
    margin-bottom: 4px;
    color: #23823e;
    font-size: 17px;
}

.reformhaus-hours-row span {
    font-size: 16px;
    line-height: 1.5;
}

.reformhaus-content {
    max-width: none;
    padding: clamp(28px, 4vw, 50px);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0,0,0,.12);
}

.reformhaus-content h1 {
    margin: 0 0 18px;
    color: rgb(35,130,62);
}

.reformhaus-content h2 {
    margin: 0 0 12px;
    color: #23823e;
    font-size: clamp(23px, 2.4vw, 30px);
    line-height: 1.25;
}

.reformhaus-content p {
    margin: 0 0 18px;
}

.reformhaus-lead {
    margin-bottom: 24px !important;
    padding-left: 18px;
    border-left: 4px solid #23823e;
    font-size: clamp(22px, 2.2vw, 28px) !important;
    line-height: 1.35 !important;
}

.reformhaus-highlight-box {
    margin: 28px 0;
    padding: 25px 28px 8px;
    background: rgba(35,130,62,.08);
    border-radius: 14px;
}

.reformhaus-text-section {
    margin-top: 34px;
}

.reformhaus-list {
    margin: 4px 0 22px;
    padding: 0;
    list-style: none;
}

.reformhaus-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
    font-size: 20px;
    line-height: 1.5;
}

.reformhaus-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #23823e;
    font-weight: 700;
}

.reformhaus-closing {
    margin: 34px 0 0 !important;
    padding: 20px 22px;
    color: #23823e;
    background: #fff;
    border: 2px solid rgba(35,130,62,.28);
    border-radius: 12px;
    text-align: center;
}


/* Mobile Reihenfolge Reformhaus */
@media (max-width: 991px){
.reformhaus-section{display:block;}
.reformhaus-container{padding-top:0;}
.reformhaus-layout{
 display:flex;
 flex-direction:column;
}
.reformhaus-image{
 position:relative !important;
 top:0 !important;
 left:0 !important;
 width:100%;
 height:auto !important;
 z-index:1 !important;
 order:-1;
 margin-bottom:20px;
}
.reformhaus-image img{
 width:100%;
 height:320px;
 object-fit:cover;
}
.reformhaus-hours{
 position:relative !important;
 top:0 !important;
 order:1;
}
.reformhaus-content{order:2;}
}


/* =========================================================
   STARTSEITEN – strukturierte und gut lesbare Texte
   ========================================================= */
.text-enhanced {
    max-width: 760px;
}

.text-enhanced p {
    margin: 0 0 16px;
}

.text-intro {
    padding-left: 16px;
    border-left: 4px solid var(--green-color);
    font-size: 1.15em;
    line-height: 1.45;
}

.text-closing {
    margin-top: 20px !important;
}

.feature-list {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
    font-size: 20px;
    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-color);
    font-weight: 700;
}

.feature-list--compact li {
    margin: 7px 0;
}

.text-note {
    margin-top: 22px;
    padding: 20px 22px 4px;
    background: rgba(35,130,62,.08);
    border-left: 4px solid var(--green-color);
    border-radius: 10px;
}

.contact-hours {
    width: min(100%, 420px);
    margin: 26px auto 0;
    padding: 22px;
    background: rgba(35,130,62,.07);
    border: 1px solid rgba(35,130,62,.18);
    border-radius: 14px;
    text-align: left;
}

.contact-hours h3 {
    margin: 0 0 16px;
    color: var(--green-color);
    font-size: 25px;
    text-align: center;
}

.contact-hours__row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(35,130,62,.16);
}

.contact-hours__row:last-child {
    border-bottom: 0;
}

.contact-hours__row strong,
.contact-hours__row span {
    display: block;
}

#Service .text-intro,
#Aktuell .text-intro,
#Reformhaus .text-intro,
#Kosmetik .text-intro {
    margin-bottom: 18px;
}

/* Sonnen-Apotheke: gelbe Akzente beibehalten */
body:has(.custom-btn-yellow) .text-intro {
    border-left-color: var(--yellow-color);
}

body:has(.custom-btn-yellow) .feature-list li::before {
    color: #c99c00;
}

body:has(.custom-btn-yellow) .contact-hours {
    background: rgba(242,202,20,.11);
    border-color: rgba(242,202,20,.32);
}

body:has(.custom-btn-yellow) .contact-hours h3 {
    color: #b58b00;
}

@media (max-width: 767px) {
    .feature-list li {
        font-size: 18px;
    }

    .contact-hours__row {
        display: block;
    }

    .contact-hours__row strong {
        margin-bottom: 5px;
    }
}


/* Kontaktseite Sonnen-Apotheke: gelbe Öffnungszeiten-Karte */
.contact-hours--yellow {
    background: rgba(242,202,20,.11);
    border-color: rgba(242,202,20,.32);
}

.contact-hours--yellow h3 {
    color: #b58b00;
}

.contact-hours--yellow .contact-hours__row {
    border-bottom-color: rgba(242,202,20,.28);
}

.contact-hours--yellow .contact-hours__row:last-child {
    border-bottom: 0;
}


/* =========================================================
   SERVICE-UNTERSEITEN – lesefreundliche Textgestaltung
   ========================================================= */
.service-detail-layout {
    align-items: flex-start;
    gap: clamp(30px, 5vw, 80px);
    padding: 35px 25px 120px;
}

.service-detail-card {
    position: relative;
    width: min(100%, 820px);
    max-width: 820px;
    margin: 18px 0 0;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.service-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
}

.service-detail-card--green::before { background: var(--green-color); }
.service-detail-card--yellow::before { background: var(--yellow-color); }

.card-container.show .service-detail-card {
    opacity: 1;
    transform: translateX(0);
}

.service-detail-card p {
    max-width: none;
    margin: 0 0 20px;
    padding: 0;
    font-size: clamp(18px, 1.25vw, 21px);
    line-height: 1.7;
}

.service-detail-card .service-intro {
    margin-bottom: 28px;
    padding: 18px 20px;
    background: rgba(35,130,62,.075);
    border-left: 5px solid var(--green-color);
    border-radius: 0 12px 12px 0;
    font-size: clamp(20px, 1.5vw, 24px);
    line-height: 1.55;
}

.service-detail-card--yellow .service-intro {
    background: rgba(242,202,20,.13);
    border-left-color: var(--yellow-color);
}

.service-detail-card strong {
    color: var(--green-color);
    font-family: "Titillium-Bold";
}

.service-detail-card--yellow strong { color: #a87900; }

.service-detail-card .service-list {
    display: grid;
    gap: 10px;
    margin: 10px 0 28px;
    padding: 0;
    list-style: none;
}

.service-detail-card .service-list li {
    position: relative;
    margin: 0;
    padding: 11px 14px 11px 42px;
    background: rgba(35,130,62,.065);
    border-radius: 10px;
    font-size: clamp(17px, 1.15vw, 20px);
    line-height: 1.45;
}

.service-detail-card .service-list li::before {
    content: "✓";
    position: absolute;
    top: 10px;
    left: 15px;
    color: var(--green-color);
    font-family: "Titillium-Bold";
    font-weight: 700;
}

.service-detail-card--yellow .service-list li {
    background: rgba(242,202,20,.13);
}
.service-detail-card--yellow .service-list li::before { color: #a87900; }

.service-detail-card .service-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-card .service-item-card {
    margin: 18px 0;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid rgba(35,130,62,.18);
    border-radius: 14px;
    box-shadow: 0 7px 22px rgba(0,0,0,.07);
}

.service-detail-card--yellow .service-item-card {
    border-color: rgba(242,202,20,.45);
}

.service-detail-card .service-item-card > strong:first-child {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(20px, 1.5vw, 25px);
    line-height: 1.25;
}

.service-detail-card .service-notice {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(194,14,26,.07);
    border: 1px solid rgba(194,14,26,.2);
    border-radius: 12px;
}

.service-detail-card .service-notice strong { color: var(--red-color); }

.service-detail-card button {
    margin-top: 12px;
}

@media (max-width: 991px) {
    .service-detail-layout {
        flex-direction: column;
        align-items: center;
        padding: 25px 18px 110px;
    }

    .service-detail-layout .big-card,
    .service-detail-card {
        width: 100%;
        max-width: 820px;
    }

    .service-detail-card {
        margin-top: 0;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 600px) {
    .service-detail-card {
        padding: 28px 20px;
        border-radius: 17px;
    }

    .service-detail-card .service-list--compact {
        grid-template-columns: 1fr;
    }

    .service-detail-card .service-item-card {
        padding: 18px;
    }
}

/* Beide Imagevideos nebeneinander */
.shop-imagevideo-row {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px;
    align-items: start;
    justify-content: center;
    margin: 30px auto;
}

.shop-imagevideo-wrap {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
    display: block !important;
}

.shop-imagevideo {
    display: block;
    width: 100% !important;
    height: auto;
    max-width: none !important;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    background: #000;
}

/* Nur auf wirklich kleinen Handys untereinander */
@media (max-width: 600px) {
    .shop-imagevideo-row {
        grid-template-columns: 1fr !important;
    }
}
/* Dropdowns zusätzlich per Klick/Touch öffnen */
nav li.has-dropdown.submenu-open > ul.drop-down,
nav li.has-dropdown.submenu-open > ul.drop-down-yellow {
  display: block;
}

nav li.has-dropdown > a {
  position: relative;
}

@media (hover: none), screen and (max-width: 1400px) {
  nav li.has-dropdown > a {
    padding-right: 28px;
  }

  nav li.has-dropdown > a::after {
    content: "▾";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .2s ease;
    font-size: .8em;
    line-height: 1;
  }

  nav li.has-dropdown.submenu-open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  nav li.has-dropdown:not(.submenu-open) > ul.drop-down,
  nav li.has-dropdown:not(.submenu-open) > ul.drop-down-yellow {
    display: none;
  }
}

/* =========================================================
   Dropdown-Hover-Fix: keine tote Zone zwischen Menüpunkt
   und Untermenü; Unterpunkte bleiben zuverlässig anklickbar.
   ========================================================= */
nav > ul > li {
  position: relative;
}

nav > ul > li > ul.drop-down,
nav > ul > li > ul.drop-down-yellow {
  top: 100%;
  left: 0;
  margin-top: 0 !important;
  gap: 0 !important;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Unsichtbare Hover-Brücke fängt auch minimale Rundungs-/Layout-Abstände ab. */
nav > ul > li > ul.drop-down::before,
nav > ul > li > ul.drop-down-yellow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

nav > ul > li:hover > ul.drop-down,
nav > ul > li:hover > ul.drop-down-yellow,
nav > ul > li:focus-within > ul.drop-down,
nav > ul > li:focus-within > ul.drop-down-yellow {
  display: flex;
}

nav > ul > li > ul.drop-down > li,
nav > ul > li > ul.drop-down-yellow > li {
  width: 100%;
}

nav > ul > li > ul.drop-down > li > a,
nav > ul > li > ul.drop-down-yellow > li > a {
  display: block;
  width: 100%;
}

nav li.has-dropdown.submenu-open > ul.drop-down,
nav li.has-dropdown.submenu-open > ul.drop-down-yellow {
  display: flex;
}

/* =========================================================
   FINALER DROPDOWN-LAYER-FIX
   Das Hauptmenü bildet eine eigene, sehr hohe Ebene und darf
   das Untermenü weder überdecken noch abschneiden.
   ========================================================= */
header {
  z-index: 2000000 !important;
  overflow: visible !important;
  isolation: isolate;
}

.navigation,
.logo-nav,
nav,
nav > ul,
nav > ul > li {
  overflow: visible !important;
}

.navigation {
  position: relative;
  z-index: 2000001 !important;
}

nav {
  position: relative;
  z-index: 2000002 !important;
}

nav > ul {
  position: relative;
  z-index: 2000003 !important;
}

nav > ul > li {
  position: relative;
  z-index: auto;
}

nav > ul > li:hover,
nav > ul > li:focus-within,
nav > ul > li.submenu-open {
  z-index: 2000004 !important;
}

nav > ul > li > ul.drop-down,
nav > ul > li > ul.drop-down-yellow {
  z-index: 2000005 !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

nav > ul > li:hover > ul.drop-down,
nav > ul > li:hover > ul.drop-down-yellow,
nav > ul > li:focus-within > ul.drop-down,
nav > ul > li:focus-within > ul.drop-down-yellow,
nav > ul > li.submenu-open > ul.drop-down,
nav > ul > li.submenu-open > ul.drop-down-yellow {
  display: flex !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

nav > ul > li > ul.drop-down a,
nav > ul > li > ul.drop-down-yellow a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  nav > ul > li > ul.drop-down,
  nav > ul > li > ul.drop-down-yellow {
    visibility: visible;
    opacity: 1;
  }

  nav > ul > li:not(.submenu-open) > ul.drop-down,
  nav > ul > li:not(.submenu-open) > ul.drop-down-yellow {
    display: none !important;
    pointer-events: none;
  }
}


/* NAVIGATION DROPDOWN EXTENSION TO 1850PX
   Nur für das vorgezogene Burger-Menü, ohne andere Responsive-Bereiche anzufassen. */
@media screen and (min-width: 1401px) and (max-width: 1850px) {
  nav li.has-dropdown > a { padding-right: 28px; }
  nav li.has-dropdown > a::after {
    content: "▾";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .2s ease;
    font-size: .8em;
    line-height: 1;
  }
  nav li.has-dropdown.submenu-open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  nav li.has-dropdown:not(.submenu-open) > ul.drop-down,
  nav li.has-dropdown:not(.submenu-open) > ul.drop-down-yellow {
    display: none;
  }
}
