:root {
	--lachs: #F5A88D;
	--dunkelblau: #2c3b8e;
	--hellblau: #04ABD7;
}

html {
    scroll-behavior: smooth;
}


body {
	margin: 0;
    font-family: 'Bellota Text';
	font-size: 0.95em;
	color: #333333;
	background-color: #ffffff;
  }

/*
-------------------------------
		NAVIGATION
------------------------------
*/

.header-navigation-menu {
	width: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 99;
	padding: 0px 100px;
}

@media (max-width: 768px) {
	.header-navigation-menu {
	  padding: 0px 20px;
	}
  }
  

.header-icon {
	display: inline-block;
	max-height: 80px;
}

.header-icon img {
	max-height: 40px;
	margin: 20px 0;
}

.toggle-nav-menu {
	display: table;
	float: right;
	padding: 10px 0;
	z-index: 100;
	position: relative;
}

.burg {
	display: block;
	height: 0.12em;
	width: 28px;
	margin: 29px 0 28px 5px;
	background-color: #04ABD7 !important;
	position: relative;
	transition: 0.2s;
}

.burg:before,
.burg:after {
	content: '';
	position: absolute;
	width: 28px;
	height: 0.12em;
	background-color: #04ABD7 !important;
	transition: 0.2s;
}

.burg:before {
	top: -8px;
}

.burg:after {
	top: 8px;
}

.activeBurg {
	background-color: transparent !important;
}

.activeBurg:before {
	transform: rotate(45deg);
	top: 0;
}

.activeBurg:after {
	transform: rotate(-45deg);
	top: 0;
}

.tab-nav-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 98;
}

.tab-nav-menu.open {
	display: flex;
}

.tab-nav-menu-content {
	text-align: center;
}

.tab-nav-menu-content li {
	list-style: none;
	padding: 20px 0;
}

.tab-nav-menu-content li a {
	font-size: 1.2em;
	text-decoration: none;
	color: #000!important;
	transition: color 0.3s ease;
}

.tab-nav-menu-content li a.active {
	font-weight: bold;
}

.tab-nav-menu-content li a:hover {
    color: #04ABD7!important;
}


/*
-------------------------------
		HERO
------------------------------
*/

  .page-header {
	padding-bottom: 10px;
	margin: 44px 0 22px;
	border-bottom: 1px solid #d5d5d5;
  }

.hero-image{
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url("../img/IMG_8246.JPG");
	height: 80vh;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover; /* Höhe des Bildes bleibt unverändert */
	position: relative;
	margin: 85px; 
	border-radius: 3px;
  }
  
.hero-image-2 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../img/IMG_8246.JPG");
	height: 50vh;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: start;
	text-align: left;
}

.hero-image-2 a{
	color: #fff;
	text-decoration: none;
}

.hero-image-2 a:hover{
	color: #F5A88D;
	text-decoration: none;
}


  @media (min-width: 768px) {
	.hero-image {
		animation: zoom 15s infinite ease-in-out;
		background-position: center;
		background-attachment: fixed;
	}
  }

  @media (max-width: 768px) {
	.hero-image {
		margin: 0px;
		height: 100vh;
		border-radius: 0;
		background-position: center center;
	}

	.hero-text {
		top: 80%; /* etwas weiter runter fürs Gesicht */
		transform: translate(-50%, -50%);
		padding: 0 50px;
	}


	.hero-text img {
		width: 200px;
	}

	.btn-shiny {
		padding: 10px 20px;
		font-size: 14px;
		height: auto;
	}

	/* Optional: Abstand zwischen Buttons */
	.hero-text a {
		display: inline-block;
		margin-bottom: 15px;
	}
}

.hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
  }
  
  @keyframes zoom {
	0% {
		background-size: 100%;
	}
	50% {
		background-size: 110%;
	}
	100% {
		background-size: 100%;
	}
  }



/*
-------------------------------
		HINTERGRUND
------------------------------
*/


.bg-1 {
	background: var(--dunkelblau);
}

.bg-2 {
	background: var(--lachs);
}

.bg-3{
	background-color: #2c3b8e09;
}

.bg-4{
	background-color: #f5a98d15;
}

/*
-------------------------------
		SCHRIFT
------------------------------
*/


h1, h2, h3, h4, h5 {
    font-family: 'Bellota Text';
	font-weight: 500;
	line-height: 1.4;
	text-transform:uppercase;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2em;
}

.leistungen h2{
	color: var(--dunkelblau);
}

.leistungen h6{
	color: var(--lachs);
}

h3, h4, h5  {
	font-size: 1.2em;
}

h4 {
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
}

h6{
	font-family: 'Bellota Text';
	text-transform:uppercase;
	padding-bottom: 20px;

  }


  .orange{
	color: var(--lachs);
  }
/*
-------------------------------
		LINKS
------------------------------
*/

a{
	transition: color 0.3s ease;
	color: var(--lachs)!important;
}

a, a:visited, a:hover {
	color: #333;
	font-weight: bold;
	text-decoration: none;
}

.text-yellow {
	color: #fcdb17;
}

nav a.nav-link, nav a.nav-link:visited {
	color: #fcdb17 !important;
	text-transform: uppercase;
	letter-spacing: 2px;
}

nav a.nav-link:hover {
	color: #FFF !important;
}


/*
-------------------------------
		BUTTONS
------------------------------
*/

.btn-shiny {
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 300;
	color: #fff !important;
	cursor: pointer;
	height: 55px;
	border-radius: 2px;
	text-align:center;
	border: none;
	background-size: 300% 100%;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
  }
  
  .btn-shiny:hover {
	color: #fff;
	font-size: 17px;
	font-weight: 300;
	background-position: 100% 0;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
  }
  
  .btn-shiny:focus {
	outline: none;
  }
  
  .btn-shiny {
	background-image: linear-gradient(
	  to right,
	  #F5A88D,
	  #d78b70,
	  #edb4a0,
	  #e59c81
	);
}

@media (max-width: 576px) {
	.btn-shiny {
	  padding: 10px 24px;
	  font-size: 14px;
	  height: auto;
	}
  }
  

.btn-red {
	text-decoration:none;
	font-size: 16px;
	padding: 12px 40px;
	border-radius: 2px;
	cursor: pointer;
	font-weight: 300;
	color: #fff;
	background-color: #F5A88D;
	position: relative;
	display: inline-block;
	z-index: 1; 
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	}
	
	.btn-red:hover {
	  color: #fff;
	  background: #e59c81;
	  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
	  text-decoration: none;
	  transition: all .2s ease-in-out;
	  -webkit-transition: all .2s ease-in-out; 
	  transform: translateY(-2px);
	}


	.btn-outline-red {
		text-decoration:none;
		font-size: 14px;
		padding: 12px 30px;
		border-radius: 2px;
		cursor: pointer;
		font-weight: 400;
		color: #F5A88D !important;
		text-transform: uppercase;
		background-color: none;
		border: 1px solid #F5A88D;
		position: relative;
		display: inline-block;
		z-index: 1; 
		transition: all 0.2s linear;
		-webkit-transition: all 0.2s linear;
		}
		
		.btn-outline-red:hover {
		  color: #fff !important;
		  background: #F5A88D;
		  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
		  text-decoration: none;
		  transition: all .2s ease-in-out;
		  -webkit-transition: all .2s ease-in-out; 
		  transform: translateY(-2px);
		}

		.btn-white {
			text-decoration:none;
			font-size:0.95rem;;
			padding: 12px 40px;
			border-radius: 2px;
			cursor: pointer;
			font-weight: 300;
			color: #F5A88D;
			background-color: #fff ;
			position: relative;
			display: inline-block;
			z-index: 1; 
			transition: all 0.2s linear;
			-webkit-transition: all 0.2s linear;
			}

			.btn-white:hover {
				color: #e59c81;
				background: #fcfbfa;
				box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
				text-decoration: none;
				transition: all .2s ease-in-out;
				-webkit-transition: all .2s ease-in-out; 
				transform: translateY(-2px);
			  }

			  
  /*
--------------------
AUFZÄHLUNG
--------------------
*/
  

.schmetterling-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
  }
  
  .schmetterling-list li {

	margin-bottom: 25px;
	position: relative;
	padding-left: 40px;
  }
  
  .schmetterling-list li::before {
	content: "";
	background-image: url("../img/icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 2px;
  }
  
  /* Optional: Linie zwischen Icons */
  .schmetterling-list li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 30px;
	width: 2px;
	height: calc(100% - 30px);
	background: #4560a2; /* Linienfarbe (dunkelblau z.B.) */
	opacity: 0.4;
  }
  
  /* Typografie */
  .schmetterling-list h5 {
	font-size: 1em;
	display: block;
	margin: 0;
	text-transform: uppercase;
  }
  
  .schmetterling-list p {
	margin: 0;
	font-size: 0.9em;
	color: #444;
  }
  


/*
-------------------------------
		MAIN
------------------------------
*/


.box-wrapper {
	position: relative;
  }
  
  .box-background {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #F5A88D;
	opacity: 0.2;
	border-radius: 5px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
	z-index: 0;
  }
  
.box-foreground {
	position: relative;
	z-index: 1;
	border-radius: 5px;
	background-color: #F5A88D;
	color: #fff;
  }
  
  .box-blue-foreground {
	position: relative;
	z-index: 1;
	border-radius: 5px;
	background-color: #04ABD7;
	color: #fff;
  }
  
  .box-blue-background {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #04ABD7;
	opacity: 0.2;
	border-radius: 5px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
	z-index: 0;
  }
  

.box{
    background-color: #F5A88D;
    width: 900px;
    height: 900px;
    position: absolute;
	right: -100px;
    top: -500px;
	z-index: -100;
}


.box{
    background-color: #F5A88D;
    width: 900px;
    height: 850px;
    position: absolute;
	right: -200px;
    top: -500px;
	z-index: -100;
}

@media (max-width: 768px) {
    .box {
		background-color: #F5A88D;
		width: 100%;
		height: 70vh;
		position: absolute;
		right: 0;
		top: 0;
		z-index: -100;
    }
}

/*
--------------------
CONTACT FORM
--------------------
*/


.formular{
	padding: 60px !important;
	box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
	font-size: 0.9em;
    font-family: 'Bellota Text';
  }
  
  .form-control{
	background-color: #f7f7f7 !important;
	border: none !important;
  }
  
  .form-control::placeholder{
	font-size: 0.85em;
  }


    /*
--------------------
NEWSLETTER
--------------------
*/


.content-newsletter {
	max-width: 100%;
	width: 360px;
	height: 40px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
	border-radius: 60px;
	overflow: hidden;
	margin: 20px auto;
	margin-bottom: 60px;
  }
  
  .subscription {
	position: relative;
	width: 100%;
	height: 100%;
  }
  
  .subscription .add-email {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	padding: 0 20px;
	font-size: 0.9rem;
  }
  
  .subscription .submit-email {
	position: absolute;
	top: 0;
	right: 0;
	height: calc(100% - 2px);
	width: 100px;
	border: none;
	border-radius: 60px;
	outline: none;
	margin: 1px;
	padding: 0 20px;
	cursor: pointer;
	background: #F5A88D;
	color: #FFFFFF;
	transition: width .35s ease-in-out;
	font-size: 0.9rem;
  }
  
  .subscription.done .submit-email {
	width: calc(100% - 2px);
	background: #F5A88D;
  }
  
  .subscription .submit-email .before-submit,
  .subscription .submit-email .after-submit {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 38px;
	transition: visibility .35s ease-in-out,
				opacity .35s ease-in-out;
  }
  
  .subscription.done .submit-email .before-submit,
  .subscription:not(.done) .submit-email .after-submit {
	visibility: hidden;
	opacity: 0;
  }
  
  .subscription .submit-email .after-submit {
	transition-delay: .35s;
  }
  
  .subscription:not(.done) .submit-email .before-submit,
  .subscription.done .submit-email .after-submit {
	visibility: visible;
	opacity: 1;
  }


/*
-------------------------------
		FOOTER
------------------------------
*/


footer p {
	margin: 0;
}

footer a, footer a:visited {
	color: #333!important;
	text-decoration: none;
}

footer a:hover {
	color: var(--lachs);
}

.footer{
	background-color:#f3f5f8;
	font-size: 0.85em;
}
.footer-social{
	margin-top:90px;
	margin-bottom:25px;
}
.footer-social a{
	text-transform:uppercase;
	letter-spacing:0.3em;
	font-weight:400;
	border-bottom:1px solid transparent;
	text-decoration: none;
}
.footer-social a:hover, .footer-social a:focus{
	padding-bottom:7px;
	border-color:#d5d5d5;
}
.social-icons{
	margin:0;
}
.footer-social li{
	padding:0 15px;
	margin-bottom: 15px;
}
.separator.footer-sep{
	width:25px;
}
.separator.footer-sep .sep_line{
	border-color:#000;
}
.footer-colophon{
	margin-bottom:50px;
}
.footer-colophon p{
	color:#999;
	margin-top:5px;
}
