/* Normalize meis */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],/* 1 */
input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}


@font-face {
    font-family: 'OpenSansRegular'; 
    src: url('../fonts/OpenSans/OpenSans-Regular-webfont.eot');
    src: url('../fonts/OpenSans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans/OpenSans-Regular-webfont.woff') format('woff'),
         url('../fonts/OpenSans/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

:root {
	--primary: #3E6D92;
	--primary-light: #E8F0F6;
	--text: #444;
	--bg: #ffffff;
	--font-serif: Georgia, 'Times New Roman', serif;
	--font-sans: 'OpenSansRegular', sans-serif;
	--font-segoe: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	--transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset & Basis */
* { margin: 0; padding: 0; box-sizing: border-box; }


/* Grid System 12er
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0px !important;
  box-sizing: border-box; 
  background-color: white; }
  
.container:first-child::before {
   content: '';
   min-height: 20px;
   display: block;
 }
 
 .wrap {padding: 1rem 2rem 0 2rem !important}
   @media (min-width: 550px) {
	  .wrap {padding: 1rem 4rem 0 4rem !important}
  }
  

@media (min-width: 1025px) {
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12 gleich große Spalten */
    column-gap: 15px;
  }

  /* Grids */
  .one.cols    { grid-column: span 1; }
  .two.cols    { grid-column: span 2; }
  .three.cols  { grid-column: span 3; }
  .four.cols   { grid-column: span 4; }
  .five.cols   { grid-column: span 5; }
  .six.cols    { grid-column: span 6; }
  .seven.cols  { grid-column: span 7; }
  .eight.cols  { grid-column: span 8; }
  .nine.cols   { grid-column: span 9; }
  .ten.cols    { grid-column: span 10; }
  .eleven.cols { grid-column: span 11; }
  .twelve.cols { grid-column: span 12; }
  
  /* Breite auf auto setzen! */
  .col, .cols { width: auto; }
}


/* Team Grid */
.team-grid {
	display: flex;
	flex-direction: column;
	gap: 180px;
	margin-top: 60px;
}

.team-item {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	align-items: center;
	gap: 0px;
}

.team-image {
	grid-column: 1 / 6;
	grid-row: 1;
	position: relative;
	z-index: 5;
}

.team-image::before,
.team-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: var(--transition);
}

.team-image::before {
	background-color: #3E6D92;
	transform: rotate(-3deg) translate(-15px, 10px);
	opacity: 0.8;
}

.team-image::after {
	background-color: var(--primary-light);
	transform: rotate(4deg) translate(15px, -5px);
	border: 1px solid rgba(0,0,0,0.05);
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	filter: grayscale(100%);
	display: block;
	border: 1px solid #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	position: relative;
	background: #fff;
	margin-bottom:0;
}

.team-info {
	grid-column: 7 / 13;
	grid-row: 1;
}

.team-item:nth-child(even) .team-image { grid-column: 8 / 13; }
.team-item:nth-child(even) .team-image::before { transform: rotate(3deg) translate(15px, 10px); }
.team-item:nth-child(even) .team-image::after { transform: rotate(-4deg) translate(-15px, -5px); }

.team-item:nth-child(even) .team-info { grid-column: 1 / 7; text-align: right; }

.team-info h2 {   margin-bottom: 15px; }
.team-info .role { 
	color: #3E6D92; 
	font-weight: 600; 
	margin-bottom: 12px; 
	display: block; 
	text-transform: uppercase;
	font-size: 1.2rem;
	letter-spacing: 0.14em;
}
.team-info .details { font-size: 1.8rem; color: #555; }
.team-info .languages { margin-top: 25px; font-size: 1.5rem; color: #444; border-top: 1px solid #ccc; padding-top: 10px; display: inline-block; }


 @media (max-width: 1024px) {
           
            .container { padding: 0 60px; }
            .text-columns { grid-template-columns: 1fr; gap: 15px; }
            .team-grid { gap: 90px;}
			.team-item, .team-item:nth-child(even) { 
                display: flex; 
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
			.team-info .role {margin-top:35px;}
            .team-info, .team-item:nth-child(even) .team-info { text-align: left; }
            .team-image { width: 80%; margin: 0 auto; }
			.team-info .languages { margin-top: 0px;}
            .row { grid-template-columns: 1fr; gap: 15px; }
			.col, .cols { margin-top:20px; }
        }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px; /* aus den sichtb. Bereich schieben */
  left: 0;
  background: #000;
  color: #fff;
  padding: 10px;
  z-index: 100;
}

.skip-link:focus {
  top: 0; /* Erscheint oben am Bildschirm, sobald man "Tab" drückt */
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.segoe {font-family: var(--font-segoe);}

html {
  font-size: 62.5%;  /* 62,5% = 1.5rem = 15px :) */
   scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 2.0em; 
  line-height: 1.5;
  font-weight: 400;
  color: #444; 
  background-color: #fff; 
  
  }

strong {
	font-weight: 600;
}


h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400; }

h1 { font-size: clamp(2.2rem, 5vw + 1rem, 5rem); line-height: 1.2; font-family: 'Georgia', serif; }
h2 { font-size: clamp(2rem, 4.5vw + 1rem, 4.5rem); line-height: 1.25; font-family: 'Georgia', serif; }
h3 { font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem); line-height: 1.3; letter-spacing: -.1rem; }
h4 { font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: clamp(1.2rem, 1.5vw + 1rem, 1.8rem); line-height: 1.5; letter-spacing: -.05rem; }
h6 { font-size: clamp(1rem, 1vw + 1rem, 1.6rem); line-height: 1.6; letter-spacing: 0; }

p {
  margin-top: 0; 
  margin-bottom:3.0rem;
  }

address { font-style:normal;}

a.link-blue {
	color:blue;
	text-decoration:underline
}




/* Text Div-Sizing */
.text-size-28 {	font-size:2.8rem !important; }
.text-size-26 {	font-size:2.6rem !important; }
.text-size-25 {	font-size:2.5rem !important; }
.text-size-24 {	font-size:2.4rem !important; }
.text-size-22 {	font-size:2.2rem !important; }
.text-size-20 {	font-size:2.0rem !important; }
.text-size-19 {	font-size:1.9rem !important; }
.text-size-18 {	font-size:1.8rem !important; }
.text-size-17 {	font-size:1.7rem !important; }
.text-size-16 {	font-size:1.6rem !important; }
.text-size-14 {	font-size:1.4rem !important; }
.text-size-12 {	font-size:1.2rem !important; }

.text-size-90 {	font-size:90% !important; }



/* Bg colors 
------------------------------------------------- */
.bg_trans	{ background-color:none; background-color:transparent}
.bg_red 	{ background-color:#da1d2c; color:white;} 		
.bg_darkred { background-color:darkred; color:white;}
.bg_sh_red	{ background-color:#a22523; color:white; }			
.bg_sh_wall { background-color:#ecdabc; color:#444; }  /* #ecdabc */
.bg_sbblue  { background-color:#3E6D92; color:#fff}
.bg_footer  { background-color: #e2efd1; }
.bg_beige  { background-color: #FAF4E8; }			
.bg_cta 	{ background-color:#2B2930; color:white}

.bg_crimson { background-color:crimson; color:white;}
.bg_coral	{ background-color:coral; }
.bg_blue 	{ background-color:lightblue; }
.bg_darkblue{ background-color:#102f47; color:white;}
.bg_darkblu2{ background-color:#1e4059; color:white;}
.bg_white 	{ background-color:white; }
.bg_ghostwhite 	{ background-color:ghostwhite; }
.bg_yellow 	{ background-color:yellow; }
.bg_green 	{ background-color:#1b3312; color:white;}
.bg_black 	{ background-color:#222; color:white;}
.bg_black2 	{ background-color:#000; color:#f8f8f8;}
.bg_gray	{ background-color:gray; color: white;}
.bg_light 	{ background-color:#fbf8f6; }
.bg_maroon	{ background-color:maroon; color:white;}
.bg_darkmagenta	{ background-color:darkmagenta; color:white;}
.bg_orange	{ background-color:orange; color:white;}
.bg_olive	{ background-color:olive; color:white;}
.bg_purple	{ background-color:purple; color:white;}
.bg_fuchsia	{ background-color:fuchsia; color:white;}
.bg_navy	{ background-color:navy; color:white;}
.bg_gold_2	{  background-image: url("../img/layout/gold_2.png");	}
.bg_hotpink	{ background-color:hotpink; }
.bg_indigo	{ background-color:indigo; color:white;}
.bg_lavender	{ background-color:lavender; }
.bg_lavenderblush	{ background-color:lavenderblush; }
.bg_ivory	{ background-color:ivory; }
.bg_lightblue	{ background-color:lightblue; }
.bg_thistle	{ background-color:thistle; }
.bg_royalblue	{ background-color:royalblue; color:white;}
.bg_slategray	{ background-color:slategray; color:white;}
.bg_orange 	{ background-color:orange; }
.bg_orangered 	{ background-color:orangered; color:white; }
.bg_skyvlue	{ background-color:skyblue; }
.bg_yellowgreen	{ background-color:yellowgreen; }
.bg_steelblue 	{ background-color:steelblue; color:white}

.bg_darkgreen 	{ background-color:#1b3312; color:white; }
.bg_lightgreen 	{ background-color:#e2efd1; color:black; }
.bg_teal 	{ background-color:teal; color:white; }
.bg_tan	{ background-color:tan; color:white; }

.bg_seagreen 	{ background-color:seagreen; color:white; }
.bg_dimgray 	{ background-color:dimgray; color:white; }
.bg_firebrick 	{ background-color:firebrick; color:white; }
.bg_oldlace 	{ background-color:oldlace;  }

.bg_dim 	{ background-color:#f8f8f8;  }

.bg_purple-hotpink  { background-image:linear-gradient(110deg, #5f0a87 0%, #a4508b 100%); color:#fff; }
.bg_hinweis-1  		{ background-image: linear-gradient(180deg, #431726 0%, #091c4c 100%); color:#fff }
.bg_wall-main 		{ background-image:linear-gradient(110deg, #cdba9c 0%, #fbf8f6 100%);  }
.bg_main 			{ background-image:linear-gradient(345deg, #abc2fe 0%, #004080 100%);  }


.no-bg { background-color:transparent !important; background-image:none;  }

.border-1	{ border: 1px solid white}
.border-3	{ border: 3px solid white}
.border-1-dark	{ border: 1px solid #444}

a {
	color: inherit;
	text-decoration:none;}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	 text-decoration:none;
	 color:inherit;
 }




/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color:white;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: navy;
  border-color: blue; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

input[type="submit"].gutscheinbutton {
	background-color:#a22523; color:white;
}



/* Animate
------------------------------------------------ */
.anibox { overflow: auto; position:relative}
.img-animate { animation:none; }
@media (min-width: 1200px) {
	.anibox {
	  width: 100%; 
	  height: 100%; 
	  overflow: hidden; 
	  position: relative;
	 
	}


	.img-animate {
	  width: 100%; 
	  height: 100%; 
	  object-fit: cover; 
	  animation: zoomOut 10s ease; /* Animation */
	}


	@keyframes zoomOut {
	  0% {
		transform: scale(1.12); /* Startgröße */
	  }
	  100% {
		transform: scale(1); /* Ende mit leichtem Auszoomen */
	  }
	}	
}	

/* TopButton
------------------------------------------------ */
#gototop {
  display: none;
  position: fixed;
  bottom: 2px;
  right: 10px;
  z-index: 99;
  font-size: 3.0rem;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0px 15px;
  border-radius: 4px;
  background-color:#df2331;
}


/* Produktseite img Abstand
------------------------------------------------- */

#produkte .four img {margin-bottom:3px !important; }


/* Scroll Down
------------------------------------------------- */
.scroll-down {
    bottom: 20px;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 2;
	}
	
	.scroll-down a {
    display: inline-block;
    outline: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
	animation: bounce 2000ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
	cursor: pointer;
}
@keyframes bounce {
50% {
    transform: translateY(-20px);
  }
}

.scroll-down a svg {
    display: block;
    fill: #fff;
    -webkit-filter: drop-shadow(0 0 3px #000);
    height: 50px;
    -webkit-transform: rotate(90deg);
    width: 50px;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  width:100%;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Listen
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul, ol {
  padding-inline-start: 3.5rem; 
  margin-block: 1rem; 
	font-size: 1.8rem;    
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;             
}

/* Spezielle Abstände für verschachtelte Listen */
:is(ul, ol) :is(ul, ol) {
  margin-block: 0.75rem;
  font-size: 0.95em;            
}

a:hover { text-decoration:underline; }


/* Mandanteninfo
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#aktuelles li, #aktuelles li a {color:#666}
#aktuelles li:hover { text-decoration:underline; cursor:pointer; }

#service li, #service li a {color:#fff}
#service li:hover { text-decoration:underline; cursor:pointer; }

.sideA { padding:12px 10px; background:#f8f8f8;}
.sideA li {font-size: 1.6rem; line-height: 1.2;   }
.sideA h3 {font-size: clamp(1.6rem, 3vw + 1rem, 2.2rem); line-height: 1.3; letter-spacing: -.1rem;}



/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table { font-size:85%}
th,
td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #E1E1E1; }

th:first-child,
td:first-child {
  padding-left: 15px; }
th:last-child,
td:last-child {
  padding-right: 15px; }

thead tr  { background-color:#f5f5f5; }
tr:hover { background-color:#f8f8f8; }
td:hover { background-color:#f1f1f1; }

.vita-table td:first-of-type {
	width:95px !important;
}



/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

section:first-of-type {
  margin-top:0rem;
}
section:last-of-type {
  margin-bottom:6rem;
}

section {
  margin-top:4rem;
}


button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form,
img {
  margin-bottom: 2.5rem; }

img {
	max-width: 100%;
  height: auto;
}




/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #a1a1a1; }

.center {
	margin:0 auto;
	display:block;}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.clear,
.container:after {
  content: "";
  display: table;
  clear: both; }


/* Aspect Ratio
--------------------------------------------------- */
img {
  aspect-ratio: attr(width) / attr(height);
}


/* ############################################################################################### 
 BASE LAYOUT HELPERS
################################################################################################## */

/* Shadow */
.drop   { -moz-box-shadow: 0 0 5px #aaa; -webkit-box-shadow: 0 0 5px #aaa; box-shadow: 0 0 5px #aaa; }
.drop-2   { -moz-box-shadow: 0 0 2px #aaa; -webkit-box-shadow: 0 0 2px #aaa; box-shadow: 0 0 2px #aaa; }
.drop-10   { -moz-box-shadow: 0 0 10px #aaa; -webkit-box-shadow: 0 0 10px #aaa; box-shadow: 0 0 10px #aaa; }
.drop-50   { -moz-box-shadow: 0 0 50px #fff; -webkit-box-shadow: 0 0 50px #fff; box-shadow: 0 0 50px #fff; }

 
.hide { display:none; }
.rotate3 { transform:rotate(3deg); -ms-transform:rotate(3deg); -moz-transform:rotate(3deg);  -webkit-transform:rotate(3deg); -o-transform:rotate(3deg); }
.rotate-3 { transform:rotate(-3deg); -ms-transform:rotate(-3deg); -moz-transform:rotate(-3deg);  -webkit-transform:rotate(-3deg); -o-transform:rotate(-3deg); }
.rotate-5 { transform:rotate(-5deg); -ms-transform:rotate(-5deg); -moz-transform:rotate(-5deg);  -webkit-transform:rotate(-5deg); -o-transform:rotate(-5deg); }
.rotate-90 { transform:rotate(90deg); -ms-transform:rotate(90deg); -moz-transform:rotate(90deg);  -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); }
.spacer-big	{clear:both; display:block; height:1rem; margin-top:8rem; margin-bottom:4rem;}
.img-circle { border-radius: 50%; }


/* Topper und Bildunterschriften */
.topper	{ font-size: 1.6rem; line-height: 1.6;  letter-spacing: 0; }
.bu 	{ font-size: 1.6rem; line-height: 1.6;  letter-spacing: 0; }
.bu1 	{ font-size: 1.2rem; line-height: 1.6;  letter-spacing: 0; }

.block  {display:block; }


.mt_m10{ margin-top:-1.0rem !important;}
.mt_0  { margin-top:0rem}
.mt_10 { margin-top:1.0rem !important;}
.mt_20 { margin-top:2.0rem !important;}
.mt_30 { margin-top:3.0rem !important;}
.mt_40 { margin-top:4.0rem !important;}
.mt_50 { margin-top:5.0rem !important;}
.mt_60 { margin-top:6.0rem !important;}
.mt_70 { margin-top:7.0rem !important;}
.mt_80 { margin-top:8.0rem !important;}

.mb_0  { margin-bottom:0rem !important;}
.mb_5  { margin-bottom:0.5rem !important;}
.mb_10 { margin-bottom:1.0rem !important;}
.mb_20 { margin-bottom:2.0rem !important;}
.mb_30 { margin-bottom:3.0rem !important;}
.mb_40 { margin-bottom:4.0rem !important;}
.mb_50 { margin-bottom:5.0rem !important;}
.mb_60 { margin-bottom:6.0rem !important;}
.mb_70 { margin-bottom:7.0rem !important;}
.mb_80 { margin-bottom:8.0rem !important;}

.ml_0  { margin-left:0rem !important;}
.ml_10 { margin-left:1.0rem !important;}
.ml_20 { margin-left:2.0rem !important;}
.ml_30 { margin-left:3.0rem !important;}
.ml_40 { margin-left:4.0rem !important;}

.mr_0  { margin-right:0rem !important;}
.mr_10 { margin-right:1.0rem !important;}
.mr_20 { margin-right:2.0rem !important;}
.mr_30 { margin-right:3.0rem !important;}
.mr_40 { margin-right:4.0rem !important;}

.ma_0   { margin:0rem; !important;}



.pt_0  { padding-top: 0rem !important;}
.pt_10 { padding-top:1.0rem !important;}
.pt_20 { padding-top:2.0rem !important;}
.pt_30 { padding-top:3.0rem !important;}
.pt_40 { padding-top:4.0rem !important;}
.pt_50 { padding-top:5.0rem !important;}

.pb_0  { padding-bottom:0rem !important;}
.pb_10 { padding-bottom:1.0rem !important;}
.pb_20 { padding-bottom:2.0rem !important;}
.pb_30 { padding-bottom:3.0rem !important;}
.pb_40 { padding-bottom:4.0rem !important;}
.pb_50 { padding-bottom:5.0rem !important;}

.pl_0  { padding-left:0rem !important;}
.pl_10 { padding-left:1.0rem !important;}
.pl_20 { padding-left:2.0rem !important;}
.pl_30 { padding-left:3.0rem !important;}
.pl_40 { padding-left:4.0rem !important;}
.pl_50 { padding-left:5.0rem !important;}

.pr_0  { padding-right:0rem !important;}
.pr_10 { padding-right:1.0rem !important;}
.pr_20 { padding-right:2.0rem !important;}
.pr_30 { padding-right:3.0rem !important;}
.pr_40 { padding-right:4.0rem !important;}
.pr_40 { padding-right:5.0rem !important;}

.pa_0   { padding:0rem !important; }
.pa_10  { padding:1.0rem !important;}
.pa_20  { padding:2.0rem !important; }
.pa_30  { padding:3.0rem !important; }
.pa_40  { padding:4.0rem !important; }
.pa_50  { padding:5.0rem !important; }
.pa_60  { padding:6.0rem !important; }
.pa_70  { padding:7.0rem !important; }
.pa_80  { padding:8.0rem !important; }


.h100	{min-height:100px}
.h200	{min-height:200px}
.h300	{min-height:300px}
.h400	{min-height:400px}
.h500	{min-height:500px}
.h600	{min-height:600px}



/* Scrollable table */
.table-scrollable {
  width: 100%;
  overflow-y: auto;
  margin: 0 0 1em;
}

.table-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-scrollable::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, .3);
}


.ta1 { height:82px}
.ta2 { height:82px}

@media (min-width: 1050px) {
.pa_full {padding:0 17.0rem 0 17.0rem}
}


.hide_on_mobile {display:none}
@media (min-width: 800px) {
.hide_on_mobile {display:block}
}

.hide_on_mobile_2 {display:none}
@media (min-width: 1250px) {
.hide_on_mobile_2 {display:block}
}

.show_on_desktop { display:none}
@media (min-width: 800px) { .show_on_desktop {display:inline;} }

.show_on_mobile { display:table; }
@media (min-width: 1160px) { .show_on_mobile {display:none;} }



/* FS Galerie */
.lbimage {
	margin-bottom: 0;
    border: 2px solid #a22523;
    box-shadow: 2px 2px 5px #aaa;
    border-radius: 5px;
} 

.fsgal {
	position:relative;
}
.lupe {
	position: absolute;
    bottom: 9px;
    right: -3px;
    width: 20px;
    height: 20px;
    padding:8px;
	background: #a22523;
	border: 2px solid #a22523;
    border-radius: 5px 0 5px 0px;
    
}
@media (min-width: 1050px) {
	.lupe {
	width: 30px;
    height: 30px;
	}
}
.lupe img { filter: invert(100%); }

/* Toolbar ausblenden 
	.fslightbox-toolbar-button:nth-child(-n+5) { display: none; }
*/


/* Round Corners */
.round { -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; }


/* Chart Tooltip */



/* Text  */
.text-left	 	{ text-align:left; }	
.text-right 	{ text-align:right; }	
.text-center 	{ text-align:center; }
.text-bold  	{ font-weight:500; }

.text-left-center { text-align:center; }
.text-right-center { text-align:center; }
.fullw-mobile		{ display:block; margin:0 0 20px 0}
.footernav			{ margin-right:10px}

.fcorr			{padding-left:0px; margin-left:-20px}
.firstcorr	{margin-top:-20px}

@media (min-width: 1050px) {
	.text-left-center 	{ text-align:left;}
	.text-right-center  { text-align:right;}
	.fullw-mobile		{ display:inline; margin:0 0 0px 0}
	.footernav			{ margin-right:10px}
	.footernav:last		{  margin-right:0px}
	.fcorr			{padding-left:40px}
	.firstcorr	{margin-top:20px}
	
}



.text-uppercase { text-transform: uppercase; }

/* Full Width Images 100%	*/
.fullw { width:100%; }
.w300	{ width:300px !important; }

/* Fehler */
.fehler { background:#FFD5D5; border:1px solid #600; color:#444}
.nos	{ display:none; }


/* No Optionen 
-------------------------------------------- */
.no-border { 
	border:none;
	border:0px !important;
	}
	
	

/* ---- Video Wrapper ----------------------------------------------------------------------- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* images
-------------------------------------------------- */
.image-container {
	position: relative;
	width: 100%; 
    height: 100vh; 
    overflow: hidden; 
}

@media (max-width: 1149px) {
  .ta_overlay { 
    display: block; 
    margin-top: -10px; 
    padding: 20px 15px; 
    border: 0px !important; 
    box-shadow: none;      
    border-radius: 4px;    
  }
  .ta_overlay_head h1 {
    font-size: 1.26em; 
    margin-bottom: 5px; 
    font-weight: normal; 
    letter-spacing: 0;
  }
  .ta_overlay_sub h2 {
    font-size: 0.8em; 
    margin-bottom: 0; 
    font-weight: normal; 
    letter-spacing: 0;
  }
}

@media (min-width: 1150px) {
	.ta_overlay {
    position: absolute; 
    top: 80px; 
    padding: 20px 5px;
    z-index: 99;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
	
}

@media (min-width: 1460px) {
  .ta_overlay {
    position: absolute; 
    top: 30px; 
    padding: 20px 35px;
    z-index: 99;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
 
	.ta_overlay_head h1 {
		font-size:2.5em; 
		margin-bottom:0; 
		font-weight: normal; 
		letter-spacing:0
		}
	
	.ta_overlay_sub h2 {
		font-size:1em; 
		margin-bottom:0; 
		font-weight: normal; 
		letter-spacing:0;
		}
}

.ta_buttons {
	padding:0 10px 0 10px;
}

.ta_overlay {
    left: 30px;
    color: #102f47; 
    text-align: center; 
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.8) 100%);
    
}

.ta_overlay_head { font-family: 'Georgia, Times', serif;}



.responsive {
  max-width: 100%;
  height: auto;
}
 .innerborder {
	outline: 1px solid #f5f5f5;
    outline-offset: -10px;

 }
 
 .scale {
	 transform: scale(1);
	 transition: all 0.3s linear;
 }
 
 .scale:hover {
	 transform: scale(1.03);
 }
 
.logo { margin:0; padding:0}
.plogo { margin:10px 20px; padding:0}
.logo-footer { margin: 0px 0 0 -40px}
@media (min-width: 768px) {
	.logo-footer { margin: -22px 0 0 -5px}
}



.imgbox img {
	margin-bottom:0;
}

.topaufmacher {
	width:100%; height:509px;
		background-image: url("../img/ta_sabudo_960.jpg");	
		
}

.ta_main { height:205px; color:#fff;}

@media (min-width: 768px) {
	
	.topaufmacher {
		width:100%; height:645px;
	}
}

@media (min-width: 950px) {
	
	.topaufmacher {
		width:100%; height:509px;
		background-image: url("../img/bg_3.jpg");	
		}
	
	.ta_main { 
		height:auto; 
		}					
}


/* Teaser Overlay */

@media (max-width: 950px) {
	
	
	.teaser_overlay_gutschein {
		display:inline-block;
		width:90px; 
		margin:0 0 10px 20px;
		
	}
	
	.teaser_overlay-2 {
		display:inline-block;
		width:200px; 
		margin:0 0 0 20px;
		vertical-align: top; 
	}
	.teaser_overlay-2 img {
    width: 100%;       /* Nutzt die vollen 200px des Containers */
    height: auto;      /* Berechnet die Höhe korrekt auf 125px (200 / 1.6) */
    display: block;    /* Entfernt den Standard-Abstand unter Bildern */
	}
}


@media (min-width: 950px) {
	.teaser-wrap {
		position: relative;
	}
	
	.teaser_overlay_gutschein {
		position:absolute;
		right:20px;
		bottom:220px;
		z-index:99;
		width:150px;
	}
	
	.teaser_overlay-2 {
		position:absolute;
		right:20px;
		bottom:30px;
		z-index:99;
		width:300px;
		
	}
}

/* Headline Hacks */
@media (min-width: 950px) {
	.head1 {    
	background: #f12020;
    color: #fff;
    padding: 15px;
    margin: 50px 0 50px -186px;
	}
	
	.head2 {    
	background: #f12020;
    color: #fff;
    padding: 15px;
    margin: 10px 0px 0px 0px;
	}
}
	
	.team {
		display:block;
		font-size:2rem;
	}
	
	

/* footer 
--------------------------------------------------- */
.f-box {
		margin-bottom:50px;
		padding:0px 20px 2px 60px;
}

.bdimagebox {
		margin:20px 0 40px 0;
}

.copyright {
	text-align: center;
    margin: 0 0 20px 0;
}
.sublinks {
	text-align:center;
}

.sublinks a {
	display: inline-block;
    text-align: center;
    margin: 10px 20px 0px 0px
}

.sm-icon { max-width:70px; margin-right:5px}


@media (min-width: 950px) {
	.copyright {
	text-align: left;
    margin: 0 0 0px 0;
	}
	
	.f-box { margin-top:50px; padding:0; }
	.bdimagebox { margin:40px 0 45px 0; }
	
	.sublinks { text-align:right}
	.sublinks a {
	display: inline-block;
    text-align: left;
    margin: 0 16px 0 0;
	}
}

.faq-item {
	
	margin-bottom:80px;
}


/* cards
--------------------------------------------------- */

@media (min-width: 950px) {
	.row-equal-heights { display: flex;  }
}

.cards {
  margin-bottom:30px;
  padding:11px;
  border: 1px solid #aaa;
  height: 96%;
  font-size:86%;
  text-align:center;
  cursor:pointer;
}

.cards h3 {
	    margin: 0 0 5px 0;
    font-size: 2.1rem;
    font-weight: 500;
}



@media (min-width: 950px) {
	.cards { margin-bottom:0px;  }
}



.zitat {
width:auto;
margin:54px auto;
border-top: solid 1px #a1a1a1;
border-bottom: solid 1px #a1a1a1;
font-family: serif;
padding: 50px 50px 30px 50px;
color:#222 !important; 
font-weight: 100 !important;
line-height:1.4 !important;
font-size:2.0rem !important;
text-align: center;
font-style:italic;
}



.zitat span {
	font-size:65%;
	display:block;
	margin-top:22px !important;
}

.no-zitat p:before { 
   content: open-quote;
   color: darkorange;
   font: 150% Georgia, serif;
margin-right:5px;
}

.no-zitat p:after { 
   content: close-quote;
   color: darkorange;
   font: 150% Georgia, serif;
   margin-left:0px;
   margin-top:-10px;
}

@media (min-width: 750px) {
	.zitat {
		width:85%;
		font-weight: 100 !important;
		line-height:1.4 !important;
		font-size:3.6rem !important;
		}
}




/* Promoboxen
-------------------------------------------------- */

/* TA headline */
.headline {
	margin-top:0px;
	font-size:1.5em;
}
@media (min-width: 800px) {
	.headline {
	margin-top:30px;
	}
}

aside {
  width: 90%;
  padding:0.0rem;
  float: none;
  font-style: italic;
  margin: 0 0 25px 0px;
  border:0px solid red;
}
.aside-headline {
	font-size:2.1rem;
	margin:0 0 1rem 0;
	
}

@media (min-width: 750px) {
	aside {
		float: right;
		margin: 0 0 10px 15px;
	    width: 30%;
	}
}

.promo-teaser {
	font-size:1.7rem; 
}
.promo-teaser h3 { font-size:2.4rem; margin-bottom:3rem }



.promo-big {
		padding: 1rem 2rem 1rem 2rem;
		margin: 0;
		border:0px solid darkred;
		}

@media (min-width: 800px) {
.promo-big {
		padding: 2rem 4rem 0.8rem 4rem;
		}
}


/* Accordion
----------------------------------------- */

.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: background-color 0.4s, color 0.4s;
margin: 10px 0 0 0;
padding: 8px 10px 6px 10px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
/* für das + zeichen rechts */
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
}

.accordion:hover {
background-color: #ccc;
color: #000; 
}

.accordion:focus-visible {
outline: 2px solid #444;
background-color: #ddd;
}

.accordion.accordion-active {
background-color: #444; 
color: #fff;           
}



.panel {
border: 1px solid #eee;
border-top: none;
padding: 0 20px;
font-size: 1.5rem; /* Korrigiert von 1.8rem für bessere Lesbarkeit */
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}

/* + Icon rechts im Tab */
.accordion::after {
		content: '\002B'; /* Unicode Plus */
		font-size: 18px;
		font-weight: bold;
		color: #777;
		transition: transform 0.3s ease, color 0.3s ease;
		line-height: 1;
	}
	
.accordion-active + .panel {
border: 1px solid #ccc;
border-top: none;
}

/* Icon-Wechsel bei aktiver Klasse */
.accordion.accordion-active::after {
	content: '\2212'; /* Unicode für - */
	color: #fff;
}

@media only screen and (max-width: 1024px) {
.panel ul { margin-left: -20px !important; }
}

.panel ul { margin-left: 0px; }




/* Header Navigation
-------------------------------------------------- */
.bg_nav {
background-image: url("../img/bg_nav.jpg");	
}



/* Header Navigation
-------------------------------------------------- */
.bg_nav {
    background-color: transparent;
}

.nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    pointer-events: none; /* Damit das Hauptbild darunter klickbar bleibt */
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

/* Hamburger Button */
.hamburger {
    display: block;
    cursor: pointer;
    background: white;
    padding: 20px;
    border-radius: 4px;
    position: relative;
    margin: 20px 20px 0 0;
    pointer-events: all; /* Hamburger ist klickbar */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #486e3c;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    background-color: var(--primary);
    text-align: center;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding-top: 100px;
    pointer-events: all;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: flex-start;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li:first-of-type {
    margin-top: 0;
}

.nav-item {
    margin: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:last-of-type {
    border-bottom: none;
}

.nav-link {
    font-size: 1.7rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f1f1f1;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover { text-decoration:none; }

/* Nicht benötigte Elemente ausblenden */
.nav-logo {
    display: none;
}

/* Tablet Ansicht */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .hamburger {
        margin: 25px 25px 0 0;
        padding: 22px;
    }
    
    .nav-menu {
        width: 350px;
        padding-top: 120px;
    }
    
    .nav-link {
        font-size: 1.8rem;
    }
}

/* Desktop Ansicht */
@media only screen and (min-width: 1200px) {
    .hamburger {
        margin: 30px 30px 0 0;
        padding: 25px;
    }
    
    .bar {
        width: 28px;
        height: 3px;
    }
    
    .nav-menu {
        width: 400px;
        padding-top: 120px;
    }
    
    .nav-link {
        font-size: 1.9rem;
        padding: 0.7rem 2.5rem;
    }
    
    .nav-item {
        padding: 1.8rem 0;
    }
}

/* Mobile Optimierung */
@media only screen and (max-width: 767px) {
    .hamburger {
        margin: 15px 15px 0 0;
        padding: 18px;
    }
    
    .bar {
        width: 22px;
    }
    
    .nav-menu {
        width: 280px;
        padding-top: 80px;
    }
    
    .nav-link {
        font-size: 1.6rem;
    }
    
    .nav-item {
        padding: 1.2rem 0;
    }
}



/* Timeline
--------------------------------------------------- */



/* Paralax
--------------------------------------------------- */
.paralax {
  
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;	
}

.para_1 { 
	background-image: url("../img/p1.jpg");
    min-height: 300px; 
}

.para_2 {
  background-image: url("../img/p2.jpg");	
  min-height: 100px; 
}

/* Divider
-------------------------------------------------- */
.divider {
	position:relative;
}
.divider hr {
	border-top:1px solid #a1a1a1;
}
.divider i {
	position:absolute;
	top:-10px;
	left:44%;
	background-color:white;
	padding:0 3%;
	font-size:1.8rem;
}

.divider .text-divider {
	position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%);
    border: 1px solid #a2a2a2;
    padding: 2px 15px;
    font-size: 80%;
}





/* Colors
-------------------------------------------------- */

.text-normal 	{ color: #222; }
.text-white		{ color:#fff; }
.text-gray		{ color:#ccc}
.text-red		{ color:red; }
.text-darkred		{ color:darkred; }
.text-sh-red	{ color:#a22523; }
.h2-red			{ color: #f12020;}
.h2-orange			{ color: orange;}

	{
		margin-bottom:20px;
		padding:20px 20px 2px 20px;
}



.box .ecke {
	float: left;
	margin:0 1rem 0 0;
	padding:0;
	
}

.hinweis {
	background-color:#f8f8f8;
	color:#222;
	margin-bottom: 15px;
	padding: 10px;
	font-size:90%;
	
}

.newsletterbox {
	position: relative;
	background-color:#cc0b0e;
	margin-bottom: 25px;
	margin-top: 30px;
	padding: 25px;
	font-size:86%;
	border:0	px dashed #b10b18;
	font-style: normal;
	color:white;
	max-width:74%;
	
}

@media (min-width: 750px) {
	.newsletterbox {
		max-width:100%;
		margin:0 15px;
	}
	
}

.boxlogo {
	width: 100px;
    position: absolute;
    top: -45px;
    right: -42px;
}



.danger {
  background-color: #ffdddd;
  border-left: 6px solid #f44336;
  color:black;
}

.success {
  background-color: #ddffdd;
  border-left: 6px solid #04AA6D;
  color:black;
}

.info {
	background-color: #f5f5f5;
    border-left: 6px solid #df2331;
    color: #444;
    font-size: 1.7rem;
}


.note {
  background-color: #ffffcc;
  border-left: 6px solid #ffeb3b;
}

.bigbox {
	max-width:100%;
	padding:80px 30px;
}

.bigbox-head {
	font-size:2.5rem;
}

/* Larger than tablet */
@media (min-width: 750px) { 
	.bigbox {padding:60px 30px 80px 30px;}
	.bigbox-head { 	font-size:3rem;  } }

.bigbox-text {
	font-variant:small-caps;
	font-size:2.0rem;
}



/* Form
-------------------------------------------------- */

.reservation_form {
	font-size: 1.5rem;
    
	
}

.mycheckbox {
		float:left;
		transform: scale(2);
		margin:6px 10px 0 10px;

}




input.shop-btn {
	display: block;
    margin: 10px auto !important;
    width: 229px;
    background-color: darkred;
    color: white;
    border: 1px solid white;
}

input.shop-btn-green {
	display: block;
    margin: 10px auto !important;
    width: 272px;
    background-color: green;
    color: white;
    border: 1px solid white;
}


	
/* Anfrageformular */

    /* CSS für die Ausblendung und Gestaltung */
    #booking-form-container {
        display: none; /* Initial versteckt */
        overflow: hidden;
        transition: all 0.5s ease-in-out;
		background-color:#eee;
    }
    
    #booking-form-container.active {
        display: block;
    }

    .row-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }

    .col-spalte {
        flex: 1;
        min-width: 300px;
    }

    .reservation_form label {
        display: block;
        margin: 12px 0 5px 0;
        font-weight: bold;
        font-size: 0.9em;
    }

    .reservation_form input[type="text"],
    .reservation_form input[type="email"],
    .reservation_form input[type="date"],
    .reservation_form input[type="number"],
    .reservation_form select,
    .reservation_form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .reservation_form textarea {
        height: 120px;
        resize: vertical;
    }

    .submit-btn {
        background-color: #a02 !important;
        color: white !important;
        border: none;
        padding: 15px;
        width: 100%;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
        margin-top: 0px;
        transition: background 0.3s;
		line-height:0;
		font-size:12px !important;
    }

    .submit-btn:hover {
        background-color: darkgreen !important;
    }

    .status-box {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .error-box { background: #fff5f5; border: 1px solid red; color: #a00; }
    .success-box { background: #f5fff5; border: 1px solid green; color: #080; }
	
	
	
/* -------------------------------------------------- */	
/* Overlay text - Mobile First */
 @media (min-width: 1024px) {
#ta {height:712px; border:0px solid red}
 }
 
.hero-overlaytext {      
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 0 1rem;
    filter: drop-shadow(3px 2px 4px rgba(0, 0, 0, 0.4));
}

/* ZEILE 1: Klassisch & Dezent */
.erstezeile {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(0.65rem, 2.5vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 300;
    opacity: 0.9;
}

/* ZEILE 2: Groß & Prachtvoll */
.titlezeile {
    font-family: 'Georgia', serif;
    font-size: clamp(4.2rem, 10vw, 9rem);
    font-style: italic;
    margin: -0.05em 0;
    font-weight: 400;
    background: linear-gradient(to bottom, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* ZEILE 3: Modern & Clean */
.subtitlezeile {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 0.3em 0.5em;
    display: inline-block;
    margin: 0.2em auto;
}

/* ZEILE 4: Verspielt & Romantisch */
.unterzeile {
    font-family: 'Times New Roman', serif;
    font-size: clamp(0.85rem, 3vw, 1.8rem);
    font-style: italic;
    max-width: 90%;
    margin: 0.3rem auto 0;
    line-height: 1.4;
    opacity: 0.85;
}

/* Tablet Optimierung */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-overlaytext {
        width: 85%;
        gap: 0.5rem;
        filter: drop-shadow(4px 2.5px 4.5px rgba(0, 0, 0, 0.35));
    }
    
    .erstezeile {
        font-size: clamp(0.8rem, 2.5vw, 1.5rem);
        letter-spacing: 0.35em;
    }
    
    .titlezeile {
        font-size: clamp(5rem, 8vw, 9rem);
        margin: -0.15em 0;
        line-height: 1.1;
    }
    
    .subtitlezeile {
        font-size: clamp(1.2rem, 4vw, 2.5rem);
        letter-spacing: 0.09em;
        padding: 0.25em 0.8em;
        margin: 0.3em auto;
    }
    
    .unterzeile {
        font-size: clamp(1rem, 3.2vw, 1.8rem);
        max-width: 500px;
        margin: 0.8rem auto 0;
        line-height: 1.45;
    }
}

/* Desktop Optimierung (1920x800 Herobild) */
@media (min-width: 1200px) {
    .hero-overlaytext {
        width: 100%;
        gap: 0.5rem;
        filter: drop-shadow(5px 3px 5px rgba(0, 0, 0, 0.3));
    }
    
    .erstezeile {
        font-size: clamp(1rem, 2vw, 1.5rem);
        letter-spacing: 0.4em;
    }
    
    .titlezeile {
        font-size: clamp(3rem, 6vw, 9rem);
        margin: -0.2em 0;
        line-height: 1.1;
    }
    
    .subtitlezeile {
        font-size: clamp(1.4rem, 3vw, 2.5rem);
        letter-spacing: 0.1em;
        padding: 0.2em 1em;
        margin: 0.4em auto;
    }
    
    .unterzeile {
        font-size: clamp(1rem, 1.8vw, 1.8rem);
        max-width: 600px;
        margin: 1rem auto 0;
        line-height: 1.4;
    }
}


@media (max-width: 768px) {
  blockquote {
    margin: 0;
    padding: 0;  
  }
}

@media print {
    .pagebreak {
        clear: both;
        page-break-after: always;
    }
}


