/**
	* Template Name: Impact - v1.0.0
	* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
	* Author: BootstrapMade.com
	* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
	# Set main reusable colors and fonts using CSS variables
	# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v34-latin-regular.woff2") format("woff2"),
       url("../fonts/open-sans-v34-latin-regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v34-latin-600.woff2") format("woff2"),
       url("../fonts/open-sans-v34-latin-600.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v34-latin-700.woff2") format("woff2"),
       url("../fonts/open-sans-v34-latin-700.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v25-latin-600.woff2") format("woff2"),
       url("../fonts/montserrat-v25-latin-600.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v25-latin-700.woff2") format("woff2"),
       url("../fonts/montserrat-v25-latin-700.woff") format("woff");
  font-display: swap;
}

:root {
  --font-default: "Open Sans", sans-serif;
  --font-primary: "Montserrat", sans-serif;
}

:root { 
  /* Basis */
  --background-color: #ffffff; 
  --default-color: #1f1f1f;
  --heading-color: #0f1f1d;

  /* Akzent jetzt deutlich dunkler → WCAG-konform */
  --accent-color: #6b5a56;

  --surface-color: #ffffff; 
  --contrast-color: #ffffff;

  --nav-color: #1f1f1f;                
  --nav-hover-color: #0f1f1d;         
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1f1f1f;     
  --nav-dropdown-hover-color: #0f1f1d;
}

/* Helle Bereiche */
.light-background {
  --background-color: #f4f6f6;
  --surface-color: #ffffff;
}

/* Dunkle Bereiche */
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f1f1f;
  --contrast-color: #ffffff;

  --nav-color: #ffffff;

  /* heller Akzent auf dunklem Grund ok */
  --nav-hover-color: #b89f99; 
}

/* Akzent-Hintergrund */
.accent-background {
  --background-color: #6b5a56;
  --default-color: #ffffff;   
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #ffffff;
  --contrast-color: #6b5a56;
}

/* Legacy / Utility Farben */
:root {
  --color-default: #1f1f1f;
  --color-primary: #6b5a56;
  --color-secondary: #4f423f;
  --color-white: #ffffff;
  --color-dark: #111111;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}



/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/

body {
	font-family: var(--font-default);
	color: var(--color-default);
}

a {
	color: var(--color-dark);
	text-decoration: none!important;
}

a:hover {
	color: #998580;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
}

/*--------------------------------------------------------------
	# Sections & Section Header
--------------------------------------------------------------*/
.bg-primary{
	background-color:#B3A4A0!important;
}
.bg-secondary{
	background-color:#f2f2f2!important;
}
/*--------------------------------------------------------------
	# Services Section
--------------------------------------------------------------*/

/* Wrapper */
.service-section {
	position: relative;
}

/* Item */
.service-item {
	height: 100%;
}

/* Card */
.service-details {
	position: relative;
	padding: 60px 30px 35px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	text-align: center;
	box-shadow:
		rgba(0, 0, 0, 0.1) 0 10px 15px -3px,
		rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
	transition: transform .25s ease, box-shadow .25s ease;
}

/* Icon */
.service-icon {
	width: 72px;
	height: 72px;
	background: #222;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid #fff;
	transition: all .25s ease;
}

/* Headline */
.service-details h3 {
	margin: 15px 0 15px;
	font-size: 22px;
	font-weight: 700;
	color: #1a1f24;
}

/* Text */
.service-details p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 18px;
	color: #333;
}

/* Link */
.service-link {
	font-weight: 600;
	text-decoration: none;
	color: var(--color-primary);
}

.service-link:hover {
	text-decoration: underline;
}

/* Hover */
.service-item:hover .service-details {
	transform: translateY(-6px);
	box-shadow:
		rgba(0, 0, 0, 0.18) 0 16px 30px -8px;
}

.service-item:hover .service-icon {
	background: #fff;
	color: #B3A4A0;
	border-color: #B3A4A0;
}

section {
	padding: 60px 0;
	overflow: hidden;
}

.sections-bg {
	background-color: #f6f6f6;
}

.section-header {
	text-align: center;
	padding-bottom: 60px;
}

.section-header h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-header h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--color-primary);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-header p {
	margin-bottom: 0;
	color: #6f6f6f;
}

.opening-hours-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(18, 161, 107, .12);
  color: #12a16b;
  flex: 0 0 auto;
  font-size: 20px;
}

.opening-hours-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.opening-hours-list li{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.03);
}

.opening-hours-list li span:first-child{
  font-weight: 700;
  color: #1a1f24;
  min-width: 28px;
}

.opening-hours-list li span:last-child{
  color: #1a1f24;
  font-weight: 600;
}

.opening-hours-list li.is-closed{
  background: rgba(0,0,0,.06);
}

.opening-hours-list li.is-closed span:last-child{
  opacity: .75;
  font-weight: 700;
}
.rounded-map{
	border-radius: 16px;          /* kannst du anpassen */
	overflow: hidden;             /* WICHTIG */
	box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* Sicherheit: falls Google Maps inline Styles setzt */
.rounded-map iframe,
.rounded-map > div{
	border-radius: 16px;
}

/*--------------------------------------------------------------
	# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
	padding: 60px 0 60px 0;
	min-height: 20vh;
	position: relative;
	background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
	font-size: 56px;
	font-weight: 600;
	color: #fff;
	
}

.breadcrumbs .page-header p {
	color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
	background-color: #f6f6f6;
	padding: 20px 0;
}

.breadcrumbs nav ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-default);
}

.breadcrumbs nav ol a {
	color: var(--color-primary);
	transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
	text-decoration: underline;
}

.breadcrumbs nav ol li+li {
	padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: var(--color-secondary);
	content: "/";
}

/*--------------------------------------------------------------
	# Scroll top button
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.scroll-top {
		bottom: 75px !important;
	}
}
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background: var(--color-secondary);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.scroll-top:hover {
	background: var(--color-primary);
	color: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
	# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--color-primary) transparent var(--color-primary) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1.5s linear infinite;
	animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
	# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar{
  background: var(--color-default);
  height: 40px;
  font-size: 14px;
  transition: all .5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i{
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span{
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px){
  .topbar .contact-info i a,
  .topbar .contact-info i span{
    font-size: 13px;
  }
}

.topbar .contact-info i a{
  line-height: 0;
  transition: .3s;
}

.topbar .contact-info i a:hover{
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a{
  color: rgba(255,255,255,.7);
  line-height: 0;
  transition: .3s;
  margin-left: 20px;
}

.topbar .social-links a:hover{
  color: #fff;
}

/* Header */
.header{
  transition: height .25s ease, box-shadow .25s ease, border-top-color .25s ease;
  z-index: 997;
  height: 90px;
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

/* Sticky */
.header.sticked{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  border-top: 5px solid var(--color-primary);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

/* Logo: proportional skalieren über Höhe */
.header .logo picture,
.header .logo img{
  display: block;
}

.header .logo img{
  height: 80px;        /* normal */
  width: auto;         /* proportional */
  margin-right: 6px;
  transition: height .25s ease;
}

/* Wenn Sticky: Logo kleiner */
.header.sticked .logo img{
  height: 58px;        /* feinjustieren: 56–62 je nach Optik */
}

/* Wenn du auch Textlogo hast */
.header .logo h1{
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: .8px;
  color: #333;
  font-family: var(--font-primary);
  transition: font-size .25s ease;
}

.header.sticked .logo h1{
  font-size: 26px;
}

.header .logo h1 span{
  color: #f96f59;
}

/* Offset für fixed header */
.sticked-header-offset{
  padding-top: 70px;
}

section{
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
	# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
	.navbar {
		padding: 0;
	}
	
	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}
	
	.navbar li {
		position: relative;
	}
	
	.navbar>ul>li {
		white-space: nowrap;
		padding: 10px 0 10px 28px;
	}
	
	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3px;
		
		font-size: 16px;
		font-weight: 600;
		color: var(--color-default);
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}
	
	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}
	
	.navbar>ul>li>a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--color-secondary);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}
	
	.navbar a:hover:before,
	.navbar li:hover>a:before,
	.navbar .active:before {
		visibility: visible;
		width: 100%;
	}
	
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: var(--color-secondary);
	}
	
	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 28px;
		top: calc(100% + 30px);
		margin: 0;
		padding: 10px 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
		transition: 0.3s;
		border-radius: 4px;
	}
	
	.navbar .dropdown ul li {
		min-width: 200px;
	}
	
	.navbar .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		font-weight: 600;
		color: #006a5d;
	}
	
	.navbar .dropdown ul a i {
		font-size: 12px;
	}
	
	.navbar .dropdown ul a:hover,
	.navbar .dropdown ul .active:hover,
	.navbar .dropdown ul li:hover>a {
		color: var(--color-secondary);
	}
	
	.navbar .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}
	
	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 30px);
		visibility: hidden;
	}
	
	.navbar .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}
}

@media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;	
	}
	
	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {
	
	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
	# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}
	
	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background-color: rgba(0,0,0,0.7);
		color:#fff;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}
	
	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-primary);
		font-size: 15px;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		transition: 0.3s;
	}
	
	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}
	
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: #fff;
	}
	
	.navbar .getstarted,
	.navbar .getstarted:focus {
		background: var(--color-primary);
		padding: 8px 20px;
		border-radius: 4px;
		margin: 15px;
		color: #fff;
	}
	
	.navbar .getstarted:hover,
	.navbar .getstarted:focus:hover {
		color: #fff;
		background: rgba(0, 131, 116, 0.8);
	}
	
	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		transition: all 0.5s ease-in-out;
		background-color: rgba(0,0,0,0.5);
		border: 1px solid #006459;
	}
	
	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}
	
	.mobile-nav-show {
		color: rgba(255, 255, 255, 0.6);
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		z-index: 9999;
		margin-right: 10px;
	}
	
	.mobile-nav-hide {
		color: #fff;
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 9999;
	}
	
	.mobile-nav-active {
		overflow: hidden;
	}
	
	.mobile-nav-active .navbar {
		right: 0;
	}
	
	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background-color: rgba(0,0,0,0.5);
		z-index: 9996;
	}
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* Section: unten mehr Luft zur nächsten Section */
.testimonials.section{
  padding-top: 60px;
  padding-bottom: 60px; /* <- wichtig */
}

/* Row/Cols: Cards sollen volle Höhe bekommen */
.testimonials .row > [class*="col-"]{
  display: flex;
}

/* Card: kein Außen-Margin mehr (macht bei Grid nur Ärger) */
.testimonials .testimonial-item{
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;          /* content-box war unnötig/kontraproduktiv */
  padding: 30px;
  margin: 0;                       /* <- statt 30px 15px */
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 14px;             /* optional, sieht sauberer aus */
}

/* Bild */
.testimonials .testimonial-item .testimonial-img{
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}

/* Typo */
.testimonials .testimonial-item h3{
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4{
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/* Sterne */
.testimonials .testimonial-item .stars{
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i{
  color: #ffc107;
  margin: 0 1px;
}

/* Quotes */
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right{
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left{
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right{
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p{
  font-style: italic;
  margin: 15px 0 0 0;
}

/* Mobile: padding etwas kleiner + gleiche Grid-Logik */
@media (max-width: 767px){
  .testimonials.section{
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonials .testimonial-item{
    padding: 24px;
  }
}

.testimonials .section-title{
  text-align: center;
}

/*--------------------------------------------------------------
	# About Us Section
--------------------------------------------------------------*/
.about h3 {
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 20px;
	
}

.about .call-us {
	left: 10%;
	right: 10%;
	bottom: 0;
	background-color: #fff;
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
	padding: 20px;
	text-align: center;
}

.about .call-us h4 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.about .call-us p {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary);
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding: 0 0 10px 30px;
	position: relative;
}

.about .content ul i {
	position: absolute;
	font-size: 20px;
	left: 0;
	top: -3px;
	color: var(--color-primary);
}

.about .content p:last-child {
	margin-bottom: 0;
}
@media (max-width: 991.98px){
  #ueber-mich .about-mobile-card{
    background: var(--surface-color);
    border-radius: 14px;
    padding: 20px 18px; 
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.10);
    box-sizing: border-box;  
    margin-top: 14px;
  }
}

/* Desktop: neutral */
@media (min-width: 992px){
  #ueber-mich .about-mobile-card{
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: 0;
    margin-top: 0;
  }
}
@media (max-width: 767.98px){
  #ueber-mich h3{
    font-size: 1.05rem;   /* kleiner */
    font-weight: 600;    /* weniger fett */
    line-height: 1.35;
    margin-bottom: .5rem;
  }
}
/* About-Card: Link klar erkennbar (Kontrast + Unterstreichung) */
#ueber-mich .about-mobile-card a{
  color: var(--default-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--accent-color), #000 35%);
}

/* Hover/Focus: sichtbar */
#ueber-mich .about-mobile-card a:hover,
#ueber-mich .about-mobile-card a:focus-visible{
  color: var(--accent-color);
  text-decoration-color: currentColor;
  outline: none;
}


@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: #333333;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: #333333;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: #333333;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #111111;
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}
#kontakt .text-light,
#contact .text-light{
  color: #111 !important;
}

/*--------------------------------------------------------------
	# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
	font-weight: 400;
	font-size: 34px;
}

.faq .content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 5px;
}

.faq .content p {
	font-size: 15px;
	color: #6c757d;
}

.faq .accordion-item {
	border: 0;
	margin-bottom: 20px;
	box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
	border-radius: 10px;
}

.faq .accordion-item:last-child {
	margin-bottom: 0;
}

.faq .accordion-collapse {
	border: 0;
}

.faq .accordion-button {
	padding: 20px 50px 20px 20px;
	font-weight: 600;
	border: 0;
	font-size: 18px;
	line-height: 24px;
	color: var(--color-white);
	text-align: left;
	background: #fff;
	box-shadow: none;
	border-radius: 10px;
}

.faq .accordion-button .num {
	padding-right: 10px;
	font-size: 20px;
	line-height: 0;
	color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
	color: var(--color-primary);
	border-bottom: 0;
	box-shadow: none;
}

.faq .accordion-button:after {
	position: absolute;
	right: 20px;
	top: 20px;
}

.faq .accordion-body {
	padding: 0 40px 30px 45px;
	border: 0;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
}

/*--------------------------------------------------------------
	# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
	background-color: #000000;
	height: 100%;
	padding: 20px;
	border-radius: 10px 0 0 10px;
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
	width: 100%;
	background-color: #e1d8d4;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 10px;
	color: #333;
}

.contact .info-item:last-child {
	margin-bottom: 0;
}

.contact .info-item i {
	font-size: 20px;
	color: #fff;
	float: left;
	width: 44px;
	height: 44px;
	background-color: rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}

.contact .info-item h3 {
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.contact .info-item:hover i {
	background: #fff;
	color: var(--color-primary);
}

.contact .php-email-form {
	width: 100%;
	height: 100%;
	background: #fff;
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
	padding: 30px;
	border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .form-feedback{
  position: static;
  transform: none;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 18px auto; /* Abstand zum Button */
}


/* Messages */
.contact .php-email-form .form-feedback .loading,
.contact .php-email-form .form-feedback .error-message,
.contact .php-email-form .form-feedback .sent-message{
  display: none;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
  font-weight: 600;
  line-height: 1.35;
  animation: formMsgIn .18s ease-out;
}

/* EINZIGE Animation – nur Y */
@keyframes formMsgIn{
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Farben */
.contact .php-email-form .form-feedback .sent-message{
  background: #12a16b;
  color: #fff;
}

.contact .php-email-form .form-feedback .error-message{
  background: #df1529;
  color: #fff;
}

.contact .php-email-form .form-feedback .loading{
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,.12);
}


.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--color-primary);
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	background: var(--color-primary);
	border: 0;
	padding: 14px 45px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
	background: var(--color-dark);
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
	# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;  
	position: relative;
	background: #000000;
	padding: 60px 0 0 0;
}
@media ( min-width: 900px ) { /** Großer Viewport: Browserfenster **/
	.hero { 
		height:550px;
	}
}
@media (min-width: 1365px) {
	.hero {
		background-attachment: fixed;
	}
}

.hero h2 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}
@media (max-width: 575.98px) { 
	.hero h2 {
		font-size: 26px!important;
		font-weight: 700; 
	}	
}
.hero p {
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 30px;
}

.hero .btn-get-started{
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;

  color: #fff; 
  background: var(--accent-color); 
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255,255,255,.5);
}

/* Icon im Button */
.hero .btn-get-started i{
  color: #fff !important;
}




.hero .btn-get-started:hover {
	border-color: rgba(0, 0, 0, 0.5);
}

.hero .btn-watch-video {
	font-size: 16px;
	transition: 0.5s;
	margin-left: 25px;
	color: #fff;
	font-weight: 600;
}

.hero .btn-watch-video i {
	color: rgba(255, 255, 255, 0.5);
	font-size: 32px;
	transition: 0.3s;
	line-height: 0;
	margin-right: 8px;
}

.hero .btn-watch-video:hover i {
	color: #fff;
}

.hero-split{
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

.hero-split .hero-image{
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-image: url("../img/slide.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-split .container{
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
	.hero h2 {
		font-size: 36px;
	}
	
	.hero .btn-get-started,
	.hero .btn-watch-video {
		font-size: 14px;
	}
}

.hero .icon-boxes {
	padding-bottom: 60px;
}

@media (min-width: 1200px) {
	.hero .icon-boxes:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: calc(50% + 20px);
		background-color: #fff;
	}
}

.hero .icon-box {
	padding: 4px 2px;
	position: relative;
	overflow: hidden;
	background: #000;
	box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease-in-out;
	border-top:1px solid #00b39e;
	z-index: 1;
	height: 100%;
	width: 100%;
	text-align: center;
}

.hero .icon-box .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 24px;
}

.hero .icon-box .title a {
	color: #fff;
	transition: 0.3s;
}

.hero .icon-box .icon {
	margin-bottom: 20px;
	padding-top: 10px;
	display: inline-block;
	transition: all 0.3s ease-in-out;
	font-size: 48px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
	color: #00b39e;
}
/* Desktop default: startcontainer "neutral" (kein Glas) */
@media (min-width: 992px){
  .hero .startcontainer{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;          /* falls du Desktop ohne Kasten willst */
    border-radius: 0 !important;
  }
}

/* Mobile + Tablet */
@media (max-width: 991.98px){

  /* hero-image wird vollflächig */
  .hero-split .hero-image{
    width: 100vw;
    left: 0;
    right: 0;
    background-position: center;
  }

  /* optional: damit Text über dem Bild besser lesbar ist */
  .hero-split::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1;
  }

  .hero-split .container{
    position: relative;
    z-index: 2;
  }

  /* startcontainer aktiv NUR auf mobile/tablet */
  .hero .startcontainer{
    padding: 32px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  @supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))){
    .hero .startcontainer{
      background: rgba(255, 255, 255, 0.14);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
      backdrop-filter: blur(18px) saturate(150%);
    }
  }
}
/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/
.footer {
	font-size: 14px;
	background-color: var(--color-default);
	padding: 50px 0;
	color: white;
}

.footer .footer-info .logo {
	line-height: 0;
	margin-bottom: 25px;
}

.footer .footer-info .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-info .logo span {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	font-family: var(--font-primary);
}

.footer .footer-info p {
	font-size: 14px;
	font-family: var(--font-primary);
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: #fff;
	border-color: #fff;
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	padding-right: 2px;
	color: rgba(0, 131, 116, 0.8);
	font-size: 12px;
	line-height: 0;
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	color: rgba(255, 255, 255, 0.7);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: #fff;
}

.footer .footer-contact p {
	line-height: 26px;
}

.footer .copyright {
	text-align: left;  
}

.footer .credits {
	padding-top: 4px;
	text-align: center;
	font-size: 13px;
}

.footer .credits a {
	color: #fff;
}
/*--------------------------------------------------------------
	# Footer Mobile Menu
--------------------------------------------------------------*/
.footernavbar {
	overflow: hidden;  
	position: fixed;
	z-index:99999;	
	bottom: 0;
	width: 100%;
	color: #d7d7d7;
	border: solid 1px #333;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
	background: -moz-linear-gradient(top,  #666,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
	transform: translateY(110%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  will-change: transform, opacity;
}

.footernavbar.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.footernavbar a {
	float: left;
	display: block;
	width:25%;
	color: #f2f2f2;
	text-align: center;
	padding: 18px 20px;
	text-decoration: none;
	font-size: 17px;  
}
.footernavbar .borderactive {
	border-right:1px solid #262626;
}
.footernavbar a:hover {
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
	background: -moz-linear-gradient(top,  #444,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}

.footernavbar a.active {
	color: #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
	background: -moz-linear-gradient(top,  #000,  #444);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
}
.footernavbar svg {
	-webkit-filter: drop-shadow( 2px 2px 1px rgba(0, 0, 0, .7));
	filter: drop-shadow( 2px 2px 1px rgba(0, 0, 0, .7));
}
/* Overlay/Modal */
.pwa-modal,
#pwaModal {
	position: fixed;
	inset: 0;
	display: flex;                 /* ✅ bleibt immer flex */
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(15, 23, 42, .55);
	z-index: 9999;

	/* ✅ Animation */
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease,
		visibility 0s linear 0.6s;

	pointer-events: none;          /* ✅ klickt nicht, wenn zu */
}

/* offen */
.pwa-modal.is-open,
#pwaModal.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;

	pointer-events: auto;
}

/* Card */
.pwa-card {
	width: min(720px, 100%);
	background: #fff;
	border-radius: 18px;
	padding: 26px 28px;
	box-shadow: 0 24px 60px rgba(0,0,0,.22);
	text-align: center;

	/* optional: Card minimal extra smooth */
	transition: transform 0.6s ease;
}

.pwa-icon {
	width: 255px;
	height: 100px;
	margin: 0 auto 14px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: #f3f6f8;
}

.pwa-icon img { width: 235px; height: 80px; }

.pwa-card h3 {
	font-size: 22px;
	margin: 6px 0 8px;
	font-weight: 700;
}

.pwa-card p {
	margin: 0 auto;
	max-width: 480px;
	color: #556;
	line-height: 1.6;
}

.pwa-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 28px;
}

.pwa-btn {
	border: 0;
	cursor: pointer;
	border-radius: 12px;
	padding: 12px 18px;
	min-width: 220px;
	font-weight: 600;
}

.pwa-btn-primary { background: #333333; color: #fff; }
.pwa-btn-ghost   { background: #eef2f7; color: #1f2937; }

.pwa-dismiss {
	margin-top: 14px;
	background: transparent;
	border: 0;
	color: #6b7280;
	cursor: pointer;
	font-weight: 600;
}
.google-btn {
    width: auto;
    display: flex;
    align-items: center;
    gap: 14px;
	
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
	
    text-decoration: none;
    color: #333;
    transition: background 0.25s ease, border-color 0.25s ease;
}

/* Linker Bereich: Logo */
.google-left {
    flex-shrink: 0;
}

.google-icon {
    width: 40px;
    height: auto;
}

/* Rechter Bereich: Text + Sterne */
.google-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Text */
.google-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Sterne */
.google-stars {
    margin-top: 3px;
    display: flex;
    gap: 3px;
}

.google-stars .star {
    font-size: 20px;
    color: #fbbf24; /* Gold */
    line-height: 1;
}

.google-stars .star::before {
    content: "★";
}

/* Hover */
.google-btn:hover {
    background: #f5f5f5;
    border-color: #cfcfcf;
}

/* Mobile Anpassung */
@media (max-width: 576px) {
    .google-btn {
        padding: 14px 16px;
        gap: 10px;
	}
	
    .google-icon {
        width: 32px;
	}
	
    .google-text {
        font-size: 0.95rem;
	}
	
    .google-stars .star {
        font-size: 18px;
	}
}
.contact-separator {
  width: 1px;
  height: 20px;
  background-color: rgba(255,255,255,.4); /* anpassen */
  margin: 0 12px;
}
.offcanvas.offcanvas-booking {
  width: 620px;
  max-width: 100vw;
}

@media (max-width: 767.98px) {
  .offcanvas.offcanvas-booking {
    width: 100vw !important;
  }
}

.offcanvas.offcanvas-booking {
  z-index: 1055 !important;
}
.offcanvas-backdrop {
  z-index: 1050 !important;
}

#header,
.navbar,
.mobile-nav-toggle {
  z-index: 999 !important;
}

.offcanvas.offcanvas-booking .offcanvas-header {
  background:#000000 !important; 
  border-bottom: 1px solid rgba(0,0,0,.10) !important;
  color:#ffffff;
  padding: 18px 18px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.offcanvas.offcanvas-booking .offcanvas-title {
  font-weight: 800;
   color:#ffffff;
  letter-spacing: .2px;
  margin: 0;
}

.offcanvas.offcanvas-booking .booking-subtitle {
  display: block;
  font-size: 0.9rem;
   color:#ffffff;
  margin-top: 2px;
}


/* Eigener Close-Button */
.offcanvas.offcanvas-booking .booking-close{
  appearance: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  opacity: .9;
}

.offcanvas.offcanvas-booking .booking-close:hover{
  opacity: 1;
  background: rgba(255,255,255,.12);
}

.offcanvas.offcanvas-booking .offcanvas-body {
  padding: 18px;
}

.offcanvas.offcanvas-booking .booking-intro {
  color: rgba(15, 23, 42, .80);
  margin-bottom: 16px;
}

.offcanvas.offcanvas-booking .booking-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 22px;
  border: 1px dashed rgba(0,0,0,.14);
}

.offcanvas.offcanvas-booking {
  box-shadow: -18px 0 60px rgba(0,0,0,.18);
}
/* Wrapper */
.font-size-controls{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.04);
  border-radius: 999px;
  padding: 6px;
}

/* Buttons */
.font-size-controls .font-btn{
  appearance: none;
  border: none;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}

.font-size-controls .font-btn:hover{
  background: rgba(0,0,0,.06);
}

.font-size-controls .font-btn:active{
  transform: scale(.96);
}

/* Mittelanzeige */
.font-size-controls .font-indicator{
  font-weight: 700;
  font-size: 0.95rem;
  opacity: .7;
  padding: 0 4px;
}

:root{
  --ui-scale: 1;
}

/* Bereiche, die skalieren sollen */
body,
header,
nav,
footer{
  font-size: calc(1rem * var(--ui-scale));
}

/* Sicherheit: auch Navbar-Links */
.navbar,
.navbar a,
footer,
footer a{
  font-size: calc(1rem * var(--ui-scale));
}
.font-reset{
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.12);
}
/* FORCE: NA-Zeile im Pricing in Primary Color */
section.pricing .pricing-item ul li.na,
section.pricing .pricing-item ul li.na > span,
section.pricing .pricing-item ul li.na > i {
  color: var(--color-primary) !important;
  opacity: 1 !important;
}

/* optional: nicht durchstreichen */
section.pricing .pricing-item ul li.na > span {
  text-decoration: none !important;
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
/* Filter-Wrapper */
.portfolio .portfolio-filters {
  padding: 0 0 24px;
  margin: 0 auto;
  list-style: none;
  text-align: center;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Einzelner Filter */
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  border-radius: 14px;
  border: 2px solid #ced4da;           /* sichtbarer Border */
  background-color: #ffffff;
  color: #212529;

  transition: all 0.25s ease;
  user-select: none;
}

/* Hover */
.portfolio .portfolio-filters li:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

/* Active-State (Isotope setzt .filter-active) */
.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* Mobile */
@media (max-width: 575px) {
  .portfolio .portfolio-filters {
    gap: 8px;
  }

  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 12px;
  }
}


.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}	