/* 
Theme Name: Showroom Theme -zwetdesign 12
Theme URI: http://www.zwetdesign.com/showroom-theme
Author: Klaus Schatte
Author URI: http://www.zwetdesign.com
Description: A WordPress theme for showcasing interactive 3D technologies.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: showroom, interactive, 3D, technology
*/

/* style */

:root {
    --kontra1: #1f2327; /* var(--hellblau); */
    --kontra2: #30343b;  /* akzentfarbe koralrot */
    --kontra3: #42464b;  /* akzentfarbe koralrot */
    --backgrond: #111111; /* body background nur beim laden, das erste mal sichtbar*/
    --fassadenFarbe: rgb(32, 32, 32); /* hauptmenu background */
    --fassadenFarbeAlpha: rgba(36, 36, 36, 0.568); /* hauptmenu background */
    --firmenFarbe: #E61348; /* hauptmenu background */
    --firmenFarbeHell: #d1577b; /* hauptmenu background */
    --firmenFarbeAlpha: #df005d6c; /* var(--firmenFarbeAlpha) */
    --textfarbe: #e9e9e9; /* var(--textfarbe) */
    --textfarbe2: #b3b3b3; /* Textfarbe 2 */
    --textfarbe3: #414141; /* Textfarbe 3 */
	--verlinkung: #72a9ec; /* Textfarbe 3 */
    --haeins: #ffffff; /* var(--textfarbe) */
    --hazwei: #f1f1f1; /* var(--textfarbe) */
    --hadrei: #ffffff; /* var(--textfarbe) */
    --havier: #f1f1f1; /* var(--textfarbe) */
    --menuitems: #313131; /* Hover-Farbe */
    --menuFontColor: #dadada; /* beide menus font color */
    --menuitemsHover: #888888; /* Hover-Farbe */
    --menutitemsFontHoverColor: #ffffff; /* Hover-Farbe */
    --menuitemsSelected: #E61348; /* Hover-Farbe */
    --minimapfarbe: #5c5c5c; /* Minimap Farbe */
    --footerfarbe: #181818;  /* Footer Hintergrundfarbe */
}

html, body{
	
	color:var(--textfarbe);
	font-family: "Roboto", sans-serif;
	font-weight: 300;
    
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
	background-attachment: fixed; /* Fix the background image position */
    
    background-color: var(--backgrond);
    
	scroll-behavior: smooth; /* Für sanftes Scrollen */
	width   : 100%;
	height  : auto;
	margin  : 0;
	padding : 0;
	/*user-select: none;
	touch-action: none;*/
}
/* scroll padding top*/
html {
  scroll-padding-top: 200px;
}

ul {
    list-style: none;
    padding-left: 5px;
    margin-top:5px;
    margin-bottom:0px;

}

ul li {
  all: unset;
  display: block;
  margin-top:2px;
  position: relative;
  padding-left: 20px;
  color: var(--textfarbe);
  margin: 0px 0 2px 0;
   font-size: clamp(0.7rem, 0.8vw, 1rem);
	line-height: 1.5;  /* oder auch 1.6, je nach Look */
}

ul li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--firmenFarbe);
}

.product-tile ul li img{
    width:16px;
    height:auto;
}
.product-tile ul li a{
    color:var(--textfarbe);
}

a{	
    color:var(--verlinkung);
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
}
a:hover{	
    color: var(--firmenFarbe);
    text-decoration: none;
    
}
p{
	color:var(--textfarbe);
    font-size: clamp(0.7rem, 0.8vw, 1rem);
	line-height: 1.5;  /* oder auch 1.6, je nach Look */
    
}

h1{
	font-size: 38px;
	font-size: clamp(2rem, 3vw, 4rem);
	font-weight: 300;
    box-sizing: border-box;
	/* color:#0084ca; */
	color:var(--haeins);
}
h1 span{
	font-weight: 600;
    color:var(--haeins);
}
h2 {
	font-weight: 900;
    font-size: clamp(1.5rem, 1.8vw, 2.7rem); /* Skaliert zwischen ca. 24px und 43px */
    color: var(--hazwei);
    margin: 0;
    
}
h2 .subheadline {
    font-size: clamp(1.5rem, 1.8vw, 2.7rem);
    font-weight: 900;
    color: var(--hazwei);
    margin: 0;
    background-color: var(--firmenFarbe);
}
 .starttext {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: 300;
    color: var(--havier);
    margin: 0;
}

h3 {
    font-size: clamp(1rem, 1.1vw, 1.2rem); /* Skaliert zwischen ca. 19px und 32px */
    font-weight:300;
    color: var(--hadrei);
    margin-top: 0px;
    margin-bottom:0px;
}
h2 strong {
    background-color: var(--firmenFarbe);
    padding: 0 5px; /* Optional: Add some padding for better appearance */
    color:#fff;
}
h3 span {
    font-size: clamp(1.1rem, 1.3vw, 1.6rem); /* Skaliert zwischen ca. 19px und 32px */
    font-weight: 900;
    color: var(--hadrei);
}
h4 {
      /*font-family: "Fredericka the Great", serif; */
  font-weight: 400;
  font-style: normal;
    color:var(--havier);
    font-size: clamp(1.5rem, 2vw, 2.3rem); /* Skaliert zwischen ca. 16px und 25px */
    font-weight: 300;
    color: var(--havier);
    margin: 0;
   
}

h4 span {
    font-weight: 900;
    background-color: var(--firmenFarbe);
    color: var(--havier);
}

:focus  { outline: 0; }
strong{
	font-weight:900;
}
.read-more{
    position:absolute;
    bottom:10px;
}

#home h3 span{
    color:var(--firmenFarbe);
}
#home p{
    color:#414141; 
}
#home ul li{
    color:#414141; 
}
#home button h3 span{
    color:#ffffff; 
}

#home ul li::before{
    background-color:var(--firmenFarbe);
}
#unternehmen{
  position:relative;
  overflow:hidden;
}

#unternehmen,
#unternehmen *{
  color:var(--textfarbe3)!important;
}

#unternehmen h2 span{
  color:var(--firmenFarbe)!important;
}

#unternehmen::after{
  content:"";
  position:absolute;
  inset:0;
  background:white;
  opacity:0.55;
  pointer-events:none;
}

#unternehmen .fence{
  position:relative;
  z-index:2;
}
#unternehmen .icon-text{
  display:flex;
  align-items:center;
  gap:12px;
}

#unternehmen .icon-text > *{
  margin:0;
}
.speak-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    margin-left: 8px;
    pointer-events: all;
}
.speak-btn img {
    height: 24px;
}
.readmoreCont{
    height:80px;
    width:100%;
    text-align: center;
    position:relative;
    display: flex;
    flex-direction: column; /* Align contents vertically */
    align-items: flex-end; /* Center items horizontally */
    width: 100%; /* Sicherstellen, dass die Elemente die volle Spaltenbreite nutzen */
    
    font-size: 0.9rem; /* Adjust font size */
    border: 0px;
    overflow:hidden;
    border: 0px solid rgba(236, 20, 20, 1);
    box-sizing: border-box; /* <--- Das ist wichtig! */

}
.maintext{
	 font-weight:900;
 }

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}



#installButton {
    position: fixed;
    top: 20px;
    right: 200px;
    width: 100px;
    height: 50px;
    background-color: #0084c9;
    color: var(--textfarbe);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Initially hidden */
    z-index: 999;
}

#installButton:hover {
    background-color: #005f8a;
}

.popup {
	width: 500px;
	height: auto;
	z-index: 999;
	margin: 300px auto;
	font-size: 18px;
	color: var(--textfarbe); /* Schriftfarbe in Weiß */
	background: rgba(9, 105, 172, 0.6);
	padding: 50px;
	display: none;
	border-radius: 10px; /* optional: abgerundete Ecken */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* optional: Schatten */
}
.popup p {
	color: var(--textfarbe); /* Weiß für h3- und p-Elemente */
	margin: 0;
	padding: 0px 0px 20px 0px;
}
.popup h3 {
	color: var(--textfarbe); /* Weiß für h3- und p-Elemente */
	padding: 30px 20px 0 0px;
}
.popup button {
	padding: 20px 30px;
	background-color: #056099;
	color:var(--textfarbe);
	border: none; /* Entfernt den Standardrahmen */
	border-radius: 10px;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	transition: all 0.3s ease; /* Übergangseffekte für Hover */

	/* Schatten für den 3D-Effekt */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.popup button:hover {
	background-color: #045080; /* Leicht dunklerer Hintergrund beim Hover */
	transform: translateY(-3px); /* Leichtes Heben beim Hover */
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Verstärkter Schatten beim Hover */
}
#popupCont{

	backdrop-filter: blur(5px);
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	display:none;
	z-index:999;

}

.custom-button {
    background-color: #0084c7; /* Hintergrundfarbe */
    color: var(--textfarbe); /* Schriftfarbe */
    border: none; /* Kein Rand */
    padding: 10px 20px; /* Innenabstand */
    margin: 10px 20px; /* Außenabstand */
    font-size: 18px; /* Schriftgröße */
    cursor: pointer; /* Mauszeiger als Zeiger */
    transition: background-color 0.3s; /* Übergang für Hintergrundfarbe */
    text-transform: uppercase; /* Text in Großbuchstaben */
    font-family: "Arial Narrow", Arial, sans-serif;
    position: relative; /* Für das Pseudo-Element */
}

.custom-button::after {
    content: "→"; /* Pfeilsymbol */
    font-size: 18px; /* Pfeilgröße */
    margin-left: 10px; /* Abstand zum Text */
    position: relative; /* Ermöglicht die Verschiebung */
    top: -2px; /* Verschiebt das Symbol 2px nach oben */
}


.custom-button:hover {
    background-color: #005f8a; /* Hintergrundfarbe beim Hover */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Leichter Schatten beim Hover */
}


#ladebalke{
		height:10px;
		top:300px;
		width: auto;
		float:left;
		background-color: #3f929f;
}

.button-89{
    margin-top:40px;
}
#renderCanvas {
	position:fixed;
	top:0px;
	width   : 100%;
	height  : 100%;
	user-select: none;
	touch-action: none;
	background-color:transparent;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
#customLoadingScreenDiv h2{
display:block;
	font-size: clamp(20px, 5vw, 50px);
	text-transform: uppercase;
	color:var(--textfarbe);
}
#usage_touch {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-image: url(../img/touch_animation.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100vw;
    max-height: 100vh;
}
#infografikA{
	
}
/* bildcontainer */
#innertext{
	height:50px;
	width: 300px;
	margin: 5% auto;
}
/* textcontainer */


#Cookiebanner{
	position:fixed;
	top:0px;
	width:100%;
	height:100%;
	z-index:999;
	background: rgba(9,105,172,0.5);
}

#cookienotice{
	
	height:auto;
	width:100%;
	position:fixed;
	bottom:0px;
	margin:0px auto;
	background-color:#353535;
}

#cookienotice p{
	color:#b9b9b9;
	font-size:20px;
	padding:20px;
}

#cookienotice a{
	color:var(--firmenFarbe);
	font-weight: 900;
}
#cookienotice a:hover {
    color:var(--menuitemsHover); /* Text wird bei Hover schwarz */
}
input[type="submit"] {
  padding: 40px;
  background-color: var(--firmenFarbe);
  color: #fff;
  border: 5px;
  border-color:#000;
  cursor: pointer;
  font-size:20px;
}


#devOrientation{
	position:fixed;
	top:150px;
	width:100%;
	height:100%;
	overflow:hidden;
	display:none;
	background: rgba(45,45,45,0.1);
	padding:50px;
	backdrop-filter: blur(10px);

}


h1, p {
 clear: Left;
}

#trans1{
	z-index:10;
	width:100%;
	height:100%;
	background-image: url("../img/screen2.jpg");
	background-position: center; 
	background-repeat: no-repeat;
	background-size: cover; 
	display:none;
}
.bez{

	margin-left:-300px;
	margin-top:0px;
}
/*----------------------------- HAMBURGER Navigation -------------------------------------------*/

#mainMenu{
	position:fixed;
	background-color:var(--fassadenFarbe);
	width:100%;
	z-index:999;
	height:9%;
	display: flex;
	align-items: stretch;
  flex-direction: row;
}

#mainMenu .menucenter {
	display: flex;
  height: 100%;
  align-items: center;
}




#appLogoCont{
    width: auto;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center; /* Vertikal mittig */
}
#appLogoCont img{
	width: auto;
	height: 50%;
	cursor: pointer;
    margin-left:20px;
}

#appLogoCont div {
	height: 100%;
	
	align-content: center;
}



.flex-grow {
	flex-grow: 1;
}




/*----------------------------- FLEX HOME -------------------------------------------*/

/* Bottom-to-top Mask + Fade */
.lazy-reveal {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 400ms ease, clip-path 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, clip-path;
}

.lazy-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* Fallback für fehlende clip-path-Unterstützung */
@supports not (clip-path: inset(10% 0 0 0)) {
  .lazy-reveal {
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,1) 100%);
    -webkit-mask-size: 100% 0%;
    -webkit-mask-repeat: no-repeat;
    transition: opacity 400ms ease, -webkit-mask-size 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .lazy-reveal.is-visible {
    -webkit-mask-size: 100% 100%;
  }
}

/* Bewegungen reduzieren */
@media (prefers-reduced-motion: reduce) {
  .lazy-reveal,
  .lazy-reveal.is-visible {
    transition: none;
    clip-path: none;
    -webkit-mask-image: none;
  }
}


#page-content{
    margin-top:100px;
    min-height: calc(100vh - 230px);
}


#closeOverview{

	width:70px;
	height:70px;
	position:absolute;
	right:0px;
	top:0px;
	transition: transform 250ms;
	padding:20px;
	cursor: pointer;

}
#closeOverview img{
	width:100%;
}
#closeOverview:hover {

    transform: scale(1.2);
}


/* CSS */
.edge-ear {
    opacity:0.3;
  position: fixed;
  top: 40vh;
  left: -40px;
  width: 170px;
  height: 170px;
  background: linear-gradient(45deg, var(--firmenFarbe) 60%, var(--firmenFarbeHell) 100%);
  border: none;
  border-radius: 0 50% 50% 0 / 0 70% 70% 0;
  box-shadow: 0 4px 16px rgba(44,44,99,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  cursor: pointer;
  z-index: 9999;
  transition:
    left 0.3s cubic-bezier(.44,1.7,.41,.9),
    box-shadow 0.2s,
    background 0.2s;
}

.edge-ear:hover {
  left: 0;
  opacity: 0.9;
  box-shadow: 0 6px 24px rgba(44,44,99,0.32);
  background: linear-gradient(15deg, var(--firmenFarbe) 60%, var(--firmenFarbeHell) 100%);
}

.arrow {
  font-size: 2.5rem;
  font-weight: bold;
  transition: transform 0.3s cubic-bezier(.44,1.7,.41,.9);
  display: inline-block;
}

.edge-ear:hover .arrow {
  transform: translateX(-8px) scale(1.15);
  text-shadow: 0 2px 8px rgba(44,44,99,0.18);
}





/* Styling für die Blöcke */
.block {
    height:auto; /* Höhe des Bildschirms */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    border-bottom: 0px solid #ccc;
    text-align: left;
    position: relative; /* Wichtig für position: absolute; in child elements */
    overflow: hidden; /* Verhindert das Überlaufen des Inhalts */
    z-index:900;
    pointer-events: all;
}
#blocksaSchieber{
    display:none;
    position:fixed;
    top:50%;

    left:0;
    width:90px;
    height:90px;
    padding:10px;
    transition: transform 0.2s ease; /* Schnellere Animation für Vergrößerung */
    background-image: url('../img/navrecht.png'); /* Korrigierter Pfad */
    background-size: cover; /* Hintergrundbild proportional skalieren */
    background-position: center; /* Hintergrundbild zentrieren */
    cursor: pointer; /* Handcursor */
    z-index:999;
}
#blocksaSchieber:hover {
    transform: scale(1.2); /* Vergrößern bei Hover */
    
}
#blocksack{
    display:block;
    position:relative;
    padding-top:100px;
    transition: transform 1.9s ease; /* Gleiche Dauer wie die Menübewegung */
    z-index:900;
    padding-bottom:150px;
}
#blocksack.shifted {
    transform: translateX(-70vw);
}
#blocksack.toggled {
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
    transition: transform 3.5s, opacity 3.5s;
    overflow: hidden; /* Prevent scroll when toggled */
    
}
.noblock{
    min-height: 100vh; /* Höhe des Bildschirms */
    overflow: auto; /* Verhindert das Überlaufen des Inhalts */
    
}
.loostheader{
    position:absolute;
    font-weight: 900;
    color:#4b4b4b;
    top:20px;
    left:30px;
    z-index: 999;
}
.blockheader {
    transition: background-color 0.5s ease;
}

.blockheader p {
    padding: 0;
	margin-left: 0;
}
.faddedOut {
    opacity: 0;
    transition: opacity 1.5s ease;
    
}
.faddedIn {
    opacity: 1;
    transition: opacity 1.5s ease;
}
#minimap {
    position: absolute;
    bottom: 5px;
    left: 30px;
    width: auto;
    height: auto;
    z-index: 999;
    display:inline-block;
    text-align: left;
    padding: 0px;
    pointer-events: none;
    font-size:  clamp(0.6rem, 0.8vw, 1rem);
    color: var(--minimapfarbe);
}
#minimap table tbody {
    background-color: transparent; /* Transparent für den Minimap */    
}
#minimap table tr {
    background-color: transparent !important; /* Transparent für den Minimap, force override */
}
#minimap table td {
    padding:0px;
}
#minimap ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}
#wpSack{
    position:absolute;
    width: 100%;
    height: 100%;
    top:0px;
    left:0px;
    padding-top: 100px;
    z-index: 900;
}


#minimap li {
    margin-bottom: 10px;
    color: var(--minimapfarbe);
    font-size: 1rem;
}
#minimapLocation img {
    width: 15px; /* Größe des Icons */
    height: 15px; /* Größe des Icons */
    margin-left: 10px; /* /
    pointer-events: none; /* Verhindert, dass das Icon Klicks empfängt */
}
#minimapLocation {
    font-weight: bold;
}


#appMenu{
    margin-left: auto; /* Schiebt das Menü nach rechts */
    margin-right: 20px; /* Abstand vom rechten Rand */
    height: 100%;
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    font-size: clamp(0.7rem, 0.9vw, 1.1rem);
    font-weight: 500;
    pointer-events: all;
}
#appMenu a {
    
    margin-right: 5px;
}
#appMenu a:hover {
    color: var(--firmenFarbe); /* Farbe beim Hover */
    transform: scale(1.02);
    transition: color 0.3s, transform 0.2s;
}
#appMenu img {
    margin-left: 20px;
}


/* Kreis-Button-Layout */
.prev-post {
    --size: 56px;          /* Durchmesser des Kreises */
    --stroke: 3px;         /* Linienstärke des Pfeils */
    width: var(--size);
    height: var(--size);
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(224,224,224,1); /* volle Deckkraft */
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #6b6b6b;        /* Grundfarbe Pfeil */
    transition: background .25s ease, color .25s ease, transform .2s ease;
    text-decoration: none; /* kein Link-Underline */
}

/* Hover-Effekt: Pfeil wird grün, Kreis wird transparenter */
.prev-post:hover {
    background: rgba(224,224,224,0.6); /* 60% Deckkraft */
    color: var(--firmenFarbe); /* deine Firmenfarbe (z. B. grün) */
    transform: scale(1.04);
}

/* Pfeilspitze (V) – immer sichtbar */
.prev-post::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-left: var(--stroke) solid currentColor;
    border-bottom: var(--stroke) solid currentColor;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: border-color .25s ease;
}

/* Pfeilschaft – fährt bei Hover raus */
.prev-post::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: var(--stroke);
    background: currentColor;
    transform: translate(-2px, -50%) scaleX(0);
    transform-origin: right center;
    transition: transform .25s ease, background .25s ease;
}
.prev-post:hover::after {
    transform: translate(-2px, -50%) scaleX(1);
}

/* Text innerhalb .prev-post ausblenden */
.prev-post .back-to-home-text {
    display: none;
}

/* PAGE */

.page{
    padding-top:100px;
    width:100%;
    height:auto;
    background-color: #ffffff;
}
.page H1, .page H2 , .page H3{
    color:var(--firmenFarbe);
}

.wp-block-button__link h3 {
    color:#ffffff;
}
.wp-block-button__link img {
    width:36px;
    height:auto;
}


.page P{
    color: #292929;
}
 .page ul li::before {
  background-color: var(--firmenFarbe);
}
.page ul li{
    color: #292929;
}
.page table th{
    background-color: var(--firmenFarbe);
    color:#ffffff;
}
.page table td{
    color: #292929;
}
.page figure img{

}
.page figure{
    text-align: center;
    border-bottom:5px solid var(--firmenFarbe);
}
.page figure figcaption{
    color: #292929;
}



.read-more{
  --stroke: 2px;            /* Linienstärke */
  --pad-x: 20px;
  --pad-left-hover: 44px;   /* Platz für Pfeil beim Hover */
  --shaft: 14px;            /* Schaftlänge im Hover */
  --joint: 1px;             /* Überlappung Schaft ↔ Spitze (gegen Lücke) */

  position: relative;
  display: inline-block;
  font-size: clamp(0.7rem, 0.9vw, 1.1rem);
  font-weight: 700;
  color: var(--firmenFarbe);             /* normal: Text/Pfeil grün */
  text-decoration: none;
  padding: 12px var(--pad-x);
  background: rgba(255,255,255,0.3);
  border: none;
  border-radius: 6px;
  transition: background .25s ease, padding-left .25s ease, color .25s ease;
  margin-top: 20px;
}

/* Hover: Hintergrund und Textfarbe */
.read-more:hover{
  background: var(--menuitemsHover);
  color: #fff;
  padding-left: var(--pad-left-hover);
}

/* —— Pfeil links —— */
/* Schaft (wächst rein) */
.read-more::before{
  content:"";
  position:absolute;
  left: 16px;
  top:50%;
  height: var(--stroke);
  width: 0;
  background: currentColor;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: width .25s ease;
}

/* Spitze (liegt ÜBER dem Schaft, leicht überlappend) */
.read-more::after{
  content:"";
  position:absolute;
  left: calc(16px + var(--shaft) - var(--joint)); /* Überlappung gegen Lücke */
  top:50%;
  width: 8px; height: 8px;
  border-top: var(--stroke) solid currentColor;
  border-right: var(--stroke) solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity .25s ease, border-color .25s ease;
}

/* Hover-Zustand */
.read-more:hover::before{ width: var(--shaft); }
.read-more:hover::after{
  opacity: 1;
  border-color: currentColor;
}


.page .fence{
    padding:4%;
}

.fence {
    position: relative;
    width: 80%;
    max-width: 1900px;
    min-width: 500px;
    
    height: auto;
    overflow:hidden;
}
.nobotom{
    padding-bottom:0px;
}

#canvasHtmlCont .fence {
    padding: 30px;
    margin-top: 10px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.halffence{
	width:55%;
}

.titleCont{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;

}

.menuItem ul{
    padding:0px;
    margin:0px;
}
.menuItem b{
    padding:2px;
    margin:2px;
}


.infomercial {
    position: fixed;
    
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Inhalt linksbündig, passt sich an */
    
    padding: 20px;
   
    
    width: auto; /* Breite passt sich dem Inhalt an */
    max-width:400px;
    height: auto; /* Höhe passt sich dem Inhalt an */
    box-sizing: border-box; /* Padding wird mit einberechnet */
    word-break: break-word; /* Zeilenumbruch bei langen Wörtern */
    overflow-wrap: break-word; /* Zeilenumbruch bei langen Wörtern */
}
.infomercial img{
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: unset;
}


.spacer { 
    height:150px;
 }

footer {
    width: 100%;
    height: auto;
    background-color: var(--footerfarbe);
    color: var(--textfarbe2);
    text-align: center;
    padding: 20px ;
    position: relative;
    bottom: 0;
    left: 0;
   
    box-sizing: border-box;
    font-size: clamp(0.7rem, 0.8vw, 1rem);
}
#centerFenster {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width:100%;
    height:100%;
}
footer .product-tile img {
    width: 100px;
    height: auto;
    object-fit: cover;
}
#centerFenster img{
    width:auto;
    height:30px;
    margin:0px 10px;
    
}
footer .product-tile a {
    color: var(--textfarbe2);
    width:auto;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
}
#centerFenster img:hover{
    filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(180deg); /* Ändert die Farbe beim Hover */
}
#centerFenster a:hover {
    text-decoration: none; /* Entfernt Unterstreichung beim Hover */
}
footer .product-tile {
    border-left:1px solid var(--minimapfarbe);
    border-right:1px solid var(--minimapfarbe);
}

footer h3{
    font-weight: 900;
}
footer ul {
  padding-left:0px;
}
footer ul li::before {
  content: none;
  display: none;
}
footer ul li{
    font-weight: 400;
    padding-left:0px;
}





/* fotobanner ------------------------------------------------- */

.image-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 50px;
    width: 70%;
    height: auto;
    cursor: pointer; /* Hand cursor */
    
}

.image-overlay img {
    width: 100%; /* Passt die Breite des Bildes an den Elterncontainer an */
    height: 100%; /* Passt die Höhe des Bildes an den Elterncontainer an */
    object-fit: cover; /* Skaliert das Bild proportional, um den Container auszufüllen */
}

.fotofilter{
    position: absolute;
    inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */
    width: 100%;
    height: 100%;
    background-color: rgba(85, 85, 85, 0.6); /* Halbtransparenter Filter */
    z-index: 1;
    pointer-events: none;
    border-radius: inherit; /* Falls der Parent abgerundet ist */
}
.parent-flex-column {
    position: relative; /* Damit .fotofilter sich am Parent orientiert */
    display: flex;
    flex-direction: column;
}

.top{
    position:absolute;
    top:-40px;
    right:0px;
}


/*              changrilaCont           ---------------------------------------------------------- */

.changrilaCont {

    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust the minmax values as needed */
    /* grid-template-columns: repeat(2, 1fr);  Immer 3 Spalten */
    gap: 5px; /* Abstand zwischen den Elementen */
    justify-items: start; /* Elemente linksbündig ausrichten */
    height:auto;
    transition: transform 0.3s ease; /* Gleiche Dauer wie die Menübewegung */
    padding-top:5px;
    min-height:50px;
}
.changrilaProducts{
    grid-template-columns: repeat(auto-fit, minmax(200px,400px)); /* Adjust the minmax values as needed */

}
.changrilaCont h2{
    margin-top:0px;
    
}

.changriNumb{
    position:absolute;
    top:-30px;
    left:10px;
    
}

#control-menu{
    padding:20px;
    padding-left:0px;
    
}

button, .wp-block-button__link{
    position: relative;
    background: linear-gradient(45deg, var(--kontra1) 60%, var(--kontra2),var(--kontra3) 100%);
    color:var(--textfarbe);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.8vw, 1rem);
    padding: 30px 25px;
    width: 100%;
    text-align: center;
    cursor: pointer;    
    background-position: center;
    transition: background 0.2s, color 0.2s;
    border:0;
    display: inline-block;
    pointer-events: all;
    margin: 0;
    margin-top:20px;
    box-sizing: border-box;
    
}

button:hover {
    transform: scale(1.02);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    
}

.post-list button {
   background:transparent;
}


.style2{
    background-color: var(--kontra2);
    color: #ffffff;
}
.style3{
    background-color: var(--kontra3);
    color: #ffffff;
}
.probutton{
    position: absolute;
        bottom:20px;
        right:0px;
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.7rem, 0.8vw, 1rem);
    padding: 5px;
    width: auto;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border:1px;
    display: inline-block;
    pointer-events: all;
    margin-top:30px;
}
.probutton:hover {
    background-color: var(--firmenFarbe);
    color: #ffffff;
    
    transform: scale(1.1);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}


.center{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width:40%;
    margin: 0 auto;
}
.left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin: 0 auto;
}

.accordion-button {
    background-color: #f7f7f7;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    padding:25px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fafafa;
    border: none;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-button h3 {
    font-size: clamp(0.8rem, 1.1vw, 1.5rem);
}
.accordion-list {
    
    padding-top: 20px;
    margin: 0;
}


/* LESSEN SIE MEHR POPUP */;

.chidden{
    visibility:hidden;
    transition: transform 0.5s ease; /* Gleiche Dauer wie die Menübewegung */
}
.chilang{
    margin-bottom:80px;
}
.chilang img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.chiddle{
    /* EINBLENDEN */
    /* top: 100px;
     left: 50%;*/
    position:fixed;

    
    transition: transform 0.5s ease; /* Gleiche Dauer wie die Menübewegung */
    overflow: hidden;
  /*   padding-left:10%;*/
  /*   padding-right:10%;*/
}
#meinPopover{
    background-color: var(--firmenFarbe);
    color: var(--textfarbe);
    padding: 45px;
    position:fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 420px;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 4px 32px #0003;
    z-index: 10000;
}
#popoverBackdrop{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 9999;
}
@keyframes popoverDropIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#meinPopover {
    /* ...deine bisherigen Styles... */
    animation: popoverDropIn 0.35s cubic-bezier(.33,1.4,.53,1.1);
}
#popover-close-btn {
    background: transparent;
    color: #fff;               /* Weiß */
    border: none;
    font-size: 1.7em;
    cursor: pointer;
    position: absolute;        /* Optional, damit es oben rechts bleibt */
    right: 16px;
    top: 14px;
    padding: 0;
    line-height: 1;
}

/* END mehr POPUP */;


#scene-info-box{
    pointer-events: none; /* Verhindert, dass die Box Klicks empfängt */;
}


.fimage {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    max-height:400px;
    object-fit: cover;
    z-index: -1; /* Put image behind all content */
    pointer-events: none; /* Prevent interaction */
    transition: transform 250ms;
}

/*              changrilaCont           ---------------------------------------------------------- */

#canvasHtmlCont .product-tile h2,
#canvasHtmlCont .product-tile h3 {
    color: #fff;
}

.milky{
    background: var(--fassadenFarbeAlpha); /* Corrected to use --dunkelblauRGB as a string */
    backdrop-filter: blur(10px);
    transition: background-color 0.5s ease;
}
.whity{
    background: var(--fassadenFarbe);
    
}
#image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

#background-image {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#background-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* Styling für den Weiter-Button */
.next-button {
    background-color: #0084c7; /* Hintergrundfarbe */
    color: #fff; /* Schriftfarbe */
    border: none; /* Kein Rand */
    padding: 10px 20px; /* Innenabstand */
    margin: 10px 20px; /* Außenabstand */
    font-size: 18px; /* Schriftgröße */
    cursor: pointer; /* Mauszeiger als Zeiger */
    transition: background-color 0.3s; /* Übergang für Hintergrundfarbe */
    text-transform: uppercase; /* Text in Großbuchstaben */
    font-family: "Arial Narrow", Arial, sans-serif; /* Schriftart */
}

.next-button:hover {
    background-color: #005f8a; /* Hintergrundfarbe beim Hover */
}

/* Spezifisches Styling für den Button am unteren Rand im letzten Block */
.bottom-button {
    position: absolute;
    bottom: 50px;
}

.next-button:hover {
    background-color: #87bfe9;
}

/* Styling für den immer sichtbaren Navigationsbereich */
#navigation {
    
    position: fixed;
    top:20%;
    right: -140px;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 10px; /* Abstand zwischen den Quadraten */
    z-index: 1000; /* Sicherstellen, dass die Navigation über allem liegt */
    transition: right 0.5s ease; /* Übergangsanimation */
    background-color: var(--fassadenFarbeAlpha);
    padding:10px;
}
#navigation:hover {
    right:0px;
}
/*              language           ---------------------------------------------------------- */

#language {
    margin-right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: clamp(0.7rem, 0.9vw, 1.1rem);
    display: none;

}

.lang-link {
  display: inline-flex;
  align-items: center;
  border-radius: 0px;
  transition: 
    box-shadow 0.2s cubic-bezier(.23,1,.32,1),
    transform 0.2s cubic-bezier(.23,1,.32,1),
    background 0.2s;
  padding: 2px;
  position: relative;
  z-index: 0;
}

.lang-link svg {
  display: block;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.04);
  transition: filter 0.2s, box-shadow 0.2s;
}

.lang-link:hover,
.lang-link:focus-visible {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10), 0 0 0 3px #48793955;
  background: rgba(255,255,255,0.12);
}

.lang-link:hover svg,
.lang-link:focus-visible svg {
  filter: brightness(1.1) drop-shadow(0 1px 6px #fff6);
}

.lang-link.active,
.lang-link.selected {
  box-shadow: 0 0 0 3px var(--firmenFarbe), 0 2px 10px 0 rgba(0,0,0,0.10);
  background: linear-gradient(90deg, #fffbe9 0%, #fff3 60%, #fffbe9 100%);
  /* Optional animierter Glanz */
  
}

.lang-link.active svg,
.lang-link.selected svg {
  filter: brightness(1.14) drop-shadow(0 2px 8px #30742e77);
}



.lang-separator {
  margin: 0 4px;
  color: #bbb;
  font-weight: 300;
  letter-spacing: 0.2em;
  user-select: none;
}

/*              end language          ---------------------------------------------------------- */

#closeContentBTN{
    position:fixed;
    top:15%;
    right:5%;
    width:70px;
    height:70px;
   
    transition: transform 0.2s ease; /* Schnelle Animation für Vergrößerung */
    background-image: url('img/pageClose.png'); /* Korrigierter Pfad */
    background-size: cover; /* Hintergrundbild proportional skalieren */
    background-position: center; /* Hintergrundbild zentrieren */
    cursor: pointer; /* Handcursor */
    z-index:999;
    
}

#closeContentBTN:hover {
    transform: scale(1.2); /* Vergrößern bei Hover */
    
}
.leerraum{
  width: 100%;
  height: clamp(40px, 8vh, 120px); /* min 40px, meist 8% Viewport, max 120px */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TABLESDANCE */
table {
    width: 100%;
    border-collapse: collapse; /* Entfernt Abstände zwischen Zellen */
    margin-top:30px;
}

/* Cute design for table body and rows */
tbody {
    background-color: rgba(0, 132, 199, 0.05); /* Soft blue background */
}

tr {
    transition: background-color 0.3s;
}

tr:nth-child(even) {
    background-color: rgba(255, 54, 93, 0.07); /* Soft pink for even rows */
}

tr:hover {
    background-color: #cc000022; /* Highlight row on hover */
}

td, th {
    padding: 5px 10px;
    border-bottom: 1px solid #e0e0e0;
	line-height: 1.5;  /* oder auch 1.6, je nach Look */
    font-size: clamp(0.7rem, 0.8vw, 0.9rem);
}


th {
    background-color: #0084c7;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #cc0000;
    letter-spacing: 1px;
}


.tableTop tbody {
    background-color: rgba(197, 197, 197, 0.568); /* Soft pink background for table body */
}
.tableTop tr:nth-child(even) {
    background-color: rgba(197, 197, 197, 0.568); /* Soft pink for even rows */
}
.tableTop tr:hover {
    background-color: rgba(88, 114, 99, 0.226); /* Highlight row on hover */
}


/* Styling für die Navigationsquadrate */
.nav-square {
    width: auto; /* Größe der Navigationsquadrate */
    height: 50px;
    background-color:var(--menuitems);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Elemente innerhalb nach rechts ausrichten */
    color: var(--menuFontColor); /* Schriftfarbe */
    font-size: 18px; /* Schriftgröße */
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Schatten hinzugefügt für bessere Sichtbarkeit */
    transition: background-color 0.3s;
    padding: 5px 20px;
    cursor: pointer; /* Zeigt an, dass es klickbar ist */
}
.menu-blink {
    animation: whiteGlow 0.5s infinite alternate;
    
}
@keyframes whiteGlow {
    from {
        background-color:var(--menuitems); /* Blue background */
    }
    to {
        background-color: rgb(255, 0, 0); /* White background */
    }
    
}
#navigation .nav-icon {
    width: 45px; /* Breite des Icons */
    height: 37px; /* Höhe des Icons */
    margin-right:10px; /* Abstand zwischen Icon und Text */
    margin-left:0px;
    pointer-events: none; /* No clicks or mouse interaction */
}
.nav-square:hover {
    background-color:var(--menuitemsHover);
}
.nav-square.active {
    background-color:var(--menuitemsSelected);
    color:var(--menutitemsFontHoverColor);
}
.nav-square img {
    margin-left: -15px; /* Verschiebt das Icon weiter nach links */
}

#appMenu .nav-square{
    background-color:transparent;
    box-shadow:none;
    padding:5px 5px;
    color:var(--menuFontColor);
}
#appMenu .nav-square.active {
    background-color:var(--firmenFarbe);
    color:#fff;
}


.popupAnim {
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    
    text-align: center;
    display: flex; /* Use flexbox for horizontal alignment */
    flex-direction: row; /* Arrange elements horizontally */
    align-items: center; /* Align items vertically in the center */
    justify-content: center; /* Center items horizontally */
    gap: 10px; /* Add spacing between elements */

    animation: bounce 1.5s infinite ease-in-out;
    background-color: rgba(223, 9, 116, 0.8);
}
.popupAnim h3{
    color:#fff;
    line-height: 1.2;
    padding-bottom:0px;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
#menu-handle {
    position:fixed;
    top:240px;
    left:0;
    width: 70px; /* Breite des "Ohrs" */
    height: 70px;
    
	background-image: url('img/menuOpen2.png'); /* Korrigierter Pfad */
	background-size: cover; /* Hintergrundbild proportional skalieren */
	background-position: center; /* Hintergrundbild zentrieren */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.5s ease; /* Gleiche Dauer wie die Menübewegung */
    z-index:999;
}
/* Transition für die Rotation */
#menu-handle span {
    display: inline-block;
    padding-bottom:5px;
    
}

/* Klasse zum Rotieren des Pfeils */
.rotate {
    transform: rotate(180deg);
}

.flex-container {

    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    align-content: stretch;
    align-items: stretch;
	/*background-color: #f7f7f7;*/

}
#flex-container {
    display: flex;
    gap: 10px;
}
#flex-container h3{
    color: #3c3c3b;
}

article {
	padding: 30px;
	padding-top:150px;
}

.full{    
    height:100%;
    height: 100vh;
    height: 100dvh;
}
.tocable {
    pointer-events:auto ;
}
.tofront {
    z-index: 999;
}
.product-tile{
    position:relative;
    display: flex;
    flex-direction: column; /* Align contents vertically */
    align-items: flex-start;
    width: 100%; /* Sicherstellen, dass die Elemente die volle Spaltenbreite nutzen */
    overflow:hidden;
    border: 0px solid rgba(236, 20, 20, 1);
    box-sizing: border-box; /* <--- Das ist wichtig! */
    z-index:2;
    
}
.product-tile .post-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.product-tile .changriguata{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.mitad{
    justify-content: center; /* horizontal zentrieren */
}
.product-tile H2{
    z-index:5;
    transition: transform 350ms;
}
.product-tile H3{
    z-index:5;
   
    transition: transform 350ms;
}

.product-tile img{
    width:100%;
    height: auto;
    object-fit: cover;

}



.intoInteractive {
    width: 200px;
    height: 200px;
}
.intoInteractive:hover {
    transform: scale(1.1);
    transition: transform 250ms;
}
.centurio{
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertikal */
}
.centered-image-container {
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertikal */
}

.centered-image-container img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-tile .frame {
    position: relative;
    width: 100%;
    height: 400px; /* or use a fixed height suitable for your layout */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}
.product-tile .frame > * {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.product-tile a{
    width:100%;
    height: auto;
    object-fit: cover;

}
.product-tile a{
    width:100%;
    height: auto;
    object-fit: cover;

}
#social .product-tile a img{
    max-width:50px;
    height: auto;
    position:relative;
    margin-left:40%;
    padding:10px;
}
#social .product-tile a img:hover{
    transform: scale(1.2);
    transition: transform 250ms;
}
.product-tile video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.coverimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;      /* neu: passt die Höhe automatisch an den Container an */
    object-fit: cover; /* skaliert und schneidet Überstände, kein Verzerren */
    z-index: 1;
    transition: transform 250ms;
}


.changriguata{
    padding:0.5vw;

}

.changriguata .chlogo {
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    display: block;
    max-width: none;
    width: 200px;
}
.farbbox{
    background: var(--menuitems);
}
.farbbox p,
.farbbox a,
.farbbox h2,
.farbbox h3,
.farbbox h1,
.farbbox ul li {
    color: var(--textfarbe);
}

.bierbauch{
    width:100%;
    height:200px;
    object-fit: cover;
}


.product-tile .chlogo {
	width:150px;
    height:auto;
    padding-bottom:20px;
    
}

.videobanner {
    width: 100%; /* Stellt sicher, dass der videobanner-Container die volle Breite einnimmt */
    max-width: 100%; /* Verhindert Einschränkungen durch max-width */
    height: 400px; /* Höhe des Containers */
    overflow: hidden; /* Verhindert, dass der Inhalt außerhalb des Containers sichtbar ist */
    position: relative; /* Erforderlich für die absolute Positionierung des iframes */
    display: flex; /* Flexbox verwenden, um den Inhalt zu strecken */
    align-items: center; /* Zentriert den Inhalt vertikal */
    justify-content: center; /* Zentriert den Inhalt horizontal */
}
.videoBackground{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}
.videoBackground .videoOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Halbtransparenter schwarzer Filter */
    z-index:1;
}
.videoBackground video{
    width: auto; /* Passt die Breite des iframes an den Container an */
    height: 100%; /* Passt die Höhe des iframes an den Container an */
    position: absolute; /* Ermöglicht die genaue Positionierung innerhalb des Containers */
    top: 0; /* Setzt das iframe an den oberen Rand des Containers */
    left: 0; /* Setzt das iframe an den linken Rand des Containers */
    border: none; /* Entfernt den Rahmen des iframes */
    object-fit: cover; /* Skaliert den Inhalt proportional, um den Container auszufüllen */
}
.videobanner video {
    width: 100%; /* Passt die Breite des iframes an den Container an */
    height: 100%; /* Passt die Höhe des iframes an den Container an */
    position: absolute; /* Ermöglicht die genaue Positionierung innerhalb des Containers */
    top: 0; /* Setzt das iframe an den oberen Rand des Containers */
    left: 0; /* Setzt das iframe an den linken Rand des Containers */
    border: none; /* Entfernt den Rahmen des iframes */
    object-fit: cover; /* Skaliert den Inhalt proportional, um den Container auszufüllen */
}


/* fotobanner ------------------------------------------------- */
.fotobanner{
    width: 100%;
    aspect-ratio: 16 / 2; /* oder z.B. 16 / 3 für ein breiteres Banner */
    height: 21vh;
    overflow: hidden;
    z-index:1;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.fotobanner h3{
    font-size: clamp(1.5rem, 2vw, 3rem);
}
.fotobanner3{
    width: 100%;
    aspect-ratio: 16 / 2; /* oder z.B. 16 / 3 für ein breiteres Banner */
    height: 100%;
    overflow: hidden;
    z-index:1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fotobanner img{    
    width: 100%;
    height: 100%;
    object-fit: cover; /* Optional: passt das Bild an, ohne das Seitenverhältnis zu verändern */
    position: absolute;
    top: 0;
    left: 0;
    z-index:-1;
    cursor: pointer; /* Hand cursor */
    transition: transform 0.3s ease; /* Smooth hover effect */
}
.fotobanner:hover {
    transform: scale(1.01); /* Slight enlargement on hover */
    transition: transform 0.3s ease-in-out; /* Smooth animation for the hover effect */
}
.fotoBanerOverlay.selected {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay when selected */
    transition: background-color 0.3s ease; /* Smooth transition for the overlay */

}
.fotoBanerOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* Ensures the overlay is above the image */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fotoButOverlay{

    z-index: 5; /* Ensures the overlay is above the image */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fotoBanerOverlay h3{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease; /* Smooth hover effect */
    pointer-events: none;
    user-select: none;
    cursor: default;
    font-weight: 900;
}
.fotoBanerOverlay img{
    width:35%;
    transition: transform 0.3s ease; /* Smooth hover effect */
    opacity: 0.5;
}
.product-tile video:hover  {
    
  transform: scale(1.05);

}

/* New class for horizontal layout */
.product-tile-horizontal {
    display: flex;
    flex-direction: row; /* Align contents horizontally */
    align-items: center; /* Center items vertically */
    padding: 10px; /* Adjust padding */
    margin: 10px; /* Adjust margin */
    font-size: 0.9rem; /* Adjust font size */
    border: 0px;
    background: rgba(255,255,255,0);
    backdrop-filter: blur(10px);
    flex: 1; /* Ensure equal width */
}

.product-tile-horizontal img {
    width: auto; /* Adjust image width */
    height: 150px;
    object-fit: cover;
    margin-right: 10px; /* Add margin to the right of the image */
}

.product-tile-horizontal h2 {
    font-size: 1.2rem; /* Adjust heading size */
    margin: 0 10px; /* Adjust margin */
}

.product-tile-horizontal p {
    font-size: 0.9rem; /* Adjust paragraph size */
    margin: 0 10px; /* Adjust margin */
}



.highlight {
    background-color: #E61348; /* Set pink background */
    padding: 0 5px; /* Optional: Add some padding for better appearance */
    color: #fff;
}


.centerit{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* EINBLENDEN animation fur alle elemente */
.element {
  opacity: 1;
  transform: translateY(200px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.elA{
    transform: translateY(200px);
}
.elB{
    transform: translateX(-250px);
}
.triggered-in-viewport {
  opacity: 1;
  transform: translateY(0);
  transform: translateX(0);
}


button .button-icon{
    width: 40px;
    height: auto;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
	margin-top: 20px; /* Abstand nach oben in px */
    
}


.cta1-button{
    position:relative;
    background:none;
    color: var(--textfarbe);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.8vw, 1rem);
    text-align: center;
    cursor: pointer;
    border:0px;
    background-position: center;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    pointer-events: all;
    overflow: hidden;
    margin-top:0;
    padding:0;
}
.cta1-button span{
    font-size: clamp(1rem, 1.5vw, 2rem);
    opacity: 0;
    display: block;
    transform: translateY(25px);
}
.cta1-button:hover {

    background-color:transparent;
    
    transform: scale(1.05);
    transition: transform 0.2s;
}
.cta1-button:hover span{
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swinger {
  display: inline-block;
  animation: floatY 2s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

#zuruckHand.visible {
    opacity: 1;
    display: block;
}
#zuruckHand{

    position:fixed;
    top:50%;
    left:0;
    transform: translateY(-50%);
    width: 170px; /* Breite des "Ohrs" */
    height: 170px;
    z-index:999;
    
    display:none;
    opacity: 0;
    
}
#zuruckHand.active{
    opacity: 1;
    display:block;
    transform: scale(1.2);
    transition: transform 0.5s ease, opacity 0.5s ease; /* Gleiche Dauer wie die Menübewegung */
}


.contact-form {

}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--textfarbe);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7f7f7;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: var(--fassadenFarbe);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
    background: linear-gradient(90deg, #0084c7 60%, #00a896 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,132,199,0.12);
    transition: background 0.2s, transform 0.2s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
    background: linear-gradient(90deg, #00a896 60%, #0084c7 100%);
    transform: scale(1.05);
}

.contact-form .wpcf7-response-output {
    margin-top: 18px;
    padding: 12px;
    border-radius: 8px;
    background: #e0f7fa;
    color: #0084c7;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #b6e2e2;
}

.intocable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
    pointer-events: none;
}   

#canvasHtmlCont {

    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100vw;
    min-width:300px; /* Minimale Breite für kleinere Bildschirme */
    
    height: auto;
    max-height: 40vh;
    transition: max-height 0.5s ease;
    display: block;
    overflow-y: scroll;
    overflow-x: hidden; /* Verhindert horizontale Scrollbar */
    z-index:3;



}

#canvasHtmlCont::-webkit-scrollbar {
    width: 24px; /* Chrome, Safari, Edge */
    height: 24px; /* Für horizontale Scrollbars */
}
#canvasHtmlCont::-webkit-scrollbar-thumb {
    background: rgba(0, 132, 199, 0.7);
    border-radius: 12px;
    border: 6px solid rgba(255,255,255,0.1); /* Optional: Abstand zum Rand */
}
#canvasHtmlCont::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}


/* Startposition: komplett rechts außerhalb */
.chslideout {
  transform: translateX(120vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.44,1.7,.41,.9), opacity 0.3s;
  /* anpassen: 120vw reicht meist, damit es "richtig" raus ist */
}

/* Sichtbar: reingeslidet */
.chslidein {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.5s cubic-bezier(.44,1.7,.41,.9), opacity 0.3s;
  /* falls Du z-index brauchst: */
  z-index: 2000;
}



/* layoutShowroom.css */

/* General layout styles for the showroom theme */
.showroomContent {
    position: relative;
    display: flex;
    flex-direction: column; /* Items vertikal anordnen */
    gap: 10px; /* Abstand zwischen den Items */
    padding-top: 50px;
    margin-top:50px;
    padding-bottom: 100px;
    overflow: hidden;
    z-index: 900;
}
.showroomitems{
    position: relative;
    display: flex;
    flex-direction: column; /* Items vertikal anordnen */
    gap: 10px; /* Abstand zwischen den Items */
    padding-bottom: 100px;
    overflow: auto;
}
.showroomheader {
    padding: 0px 0px 140px;
    z-index:910;
    width:100%;
    height:auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Optional: Inhalte horizontal zentrieren */
}

#canvasHtmlCont button{
    position:absolute;
    top: 20px;
    right: 10%;
    transform: translateX(50%);
    width: 75px;
    height: 50px;
    z-index: 999;
    background-image: url('img/hoch.png'); /* Replace with the actual path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color:transparent;
}

.showroomItem {
    display: flex;
    flex-direction: row; /* Inhalte horizontal anordnen */
    border: none; /* Optional: Rahmen für die Items */
    padding-left: 100px;
    background-color: rgba(var(--dunkelblauRGB), 0.2); /* Optional: Transparente Hintergrundfarbe mit Alpha */
    width: 50%; /* Alle Items gleich lang mit 40% Breite */
    min-width:300px;
    margin-right: auto; /* links ausrichten */
    align-items: center; /* Optional: Inhalte vertikal zentrieren */
    backdrop-filter: blur(5px); /* Weichzeichner-Effekt nur auf den Hintergrund */
}
.showroomItem img {
    width: 350px; /* Fixe Breite */
    height: 350px; /* Fixe Höhe */
    object-fit: cover; /* Bild füllt den Bereich aus und behält das Seitenverhältnis */
    flex-shrink: 0; /* Verhindert, dass das Bild schrumpft */
}
.showroomItem iframe {
    width: 450px; /* Fixe Breite */
    height: 450px; /* Fixe Höhe */
    object-fit: cover; /* Bild füllt den Bereich aus und behält das Seitenverhältnis */
    flex-shrink: 0; /* Verhindert, dass das Bild schrumpft */
}
.sceneSnipet{
    width:100%;
    padding-left:45px;
    padding-right:20px;
    height:auto;
}
.itemHeader {
    width: 100%; /* Bild soll die volle Breite des Items einnehmen */
    height: auto; /* Höhe passt sich proportional an */
}
.showRoomHeader {
    float: right;
    margin-left: auto; /* Sicherstellen, dass es links ausgerichtet bleibt */
    padding:150px;
    padding-left:200px;
}
#cortinas{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color:var(--backgrond);
    display:none;
    z-index:1;
}
#cortinasInhalt{
    position: absolute;
    top: 130px;
    left:50px;
    
    width: 100px;
    height: 100px;
    z-index:2;

}
#play {
    position: absolute;
    width: 90px;
    height: 90px;
    background-image: url('../img/playbtn.png'); /* Replace with the actual path to your image */
    background-size: cover;
    background-position: center;
    left: 50%;
    transform: translateX(50%);
    bottom:30px;
    animation: pulseGlow 2s infinite; /* Add animation */
}
#play:hover {
    animation: none; /* Stop the pulseGlow animation */
    transform: scale(1.2); /* Vergrößert den Button beim Hover */
    transition: transform 0.3s ease; /* Sanfter Übergang */
    cursor: pointer; /* Hand-Cursor anzeigen */
}
#play:active {
    transform: scale(1); /* Zurück zur Originalgröße beim Klicken */
    transition: transform 0.1s ease; /* Schneller Übergang */
}


@keyframes pulseGlow {
    0%, 100% {
        
        transform: scale(1);
    }
    50% {
        
        transform: scale(1.1);
    }
}


#control-menu{
    height:50px;
    display: flex;
    align-items: center; /* Optional: Inhalte horizontal zentrieren */
}

/* CSS FILTER MENU */
.filterItem {
    padding:15px;
    border:1px solid #4b4b4b;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    background-color: transparent;
    font-size:19px;
    font-weight:300;
    cursor: pointer; /* Show hand cursor on hover */
    color:#9b9b9b;
    transition: all 0.1s ease; /* Übergangseffekte für Hover */
}

.filterItem:hover,
.filterItem:focus-visible {
    background: rgba(var(--menuitems), 0.5);
    border:1px solid #fff;

}

.filterItem:active {
    border:2px solid #fff;
}

.filterselected {
    border:3px solid #fff;
    color:#fff;
}

.overlayA{
    background-color: var(--firmenFarbeAlpha);
    color:#fff;
}
.overlayA h1,
.overlayA h2,
.overlayA h3,
.overlayA h4,
.overlayA p,
.overlayE h1,
.overlayE h2,
.overlayE h3,
.overlayE h4,
.overlayE p {
  color: #fff;
}
.overlayB{
    background-color: rgba(47, 103, 121, 0.8);
}
.overlayC{
    background-color: rgba(59, 79, 143, 0.8);
}
.overlayD{
    background-color: rgba(143, 59, 143, 0.8);
}
.overlayE{
    background-color: rgba(96, 96, 96, 0.8);
}
/* Banner scroll */


#banner {
    height: 70%; /* Höhe des Banners */
    overflow: hidden;
    border: 0px solid #333;
    flex: 1;
    align-self: center;
}

#banner .banner-overflow {
    height: 100%;
    width: 70vw;
    overflow: hidden;
    margin: 0 auto;
    display: flex; /* Ensures children are arranged horizontally */
    flex-direction: row; /* Explicitly sets horizontal arrangement */
}

.scrolling-image {
    display: flex;
    height: 100%;
    animation: scroll 60s linear infinite; /* Animation anwenden */
}

.scrolling-image img {
    height: 100%; /* Bild passt sich der Bannerhöhe an */
    width: auto; /* Bild nimmt mindestens die Breite des Banners ein */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* STYLING WEBGL HTML CONTENT */
#canvas-container{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
    
}
#heroOverlay img{
    width:100%;
    height:100%;
    object-fit: cover;
    position:fixed;
    top:0;
    left:0;
    z-index: 1;
}
#projectName {
	position:fixed;
	top:15%;
	min-height:100px;
	color:#000;
	right:50px;
	touch-action: none;
}
.menuHeader{
	display: flex;
	flex-direction: row;
	align-items:center;
	gap:15px;
	/*justify-content: space-between;*/
	margin:10px;
	margin-bottom:10px;
}
.menuHeader h2{
	color:#fff;
}


.wpHidden, .wpVisible {
    
    overflow: hidden;
}
.wpHidden { 
    opacity: 0;
    visibility: hidden;
    height:auto;
    overflow:hidden;
    pointer-events: none;
    position:absolute;
}
.wpVisible { 
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    pointer-events: auto;
    position: relative;
}

/*
			CSS INFOPOINTS MENU
*/
.scrollmenu2{
	 /* Unsichtbar zu Beginn */
	position:fixed;
	top: 9%; /* 50% von der oberen Fensterkante */
	left: -450px; /* Startposition außerhalb des Bildschirms */
	
	height: calc(100% - 9%); /* Höhe anpassen, um innerhalb des Bildschirms zu bleiben */
	width:450px;
	background: rgba(155, 155, 155, 0.9);
	padding:30px;
	padding-bottom:90px;
	padding-left:100px;
	
	min-width:200px;

	opacity: 0; /* Unsichtbar zu Beginn */
	transition: left 0.5s ease, opacity 0.5s ease; /* Animation für Position und Sichtbarkeit */

	overflow-y: auto; /* Scrollbar bei Bedarf */
	overflow-x: hidden; /* Keine horizontale Scrollbar */

	z-index:800;
}
#usageCont{
	height: 200px;
	width: 300px;
	position: fixed;
	bottom: 5%;
	right: 5%;
	pointer-events: none;
	display:block;
}
.backplate{
    background-color:#161616;
}
#usageCont img{
	width: 100%;
	height: 100%;
	object-fit: cover; /* Bild füllt den verfügbaren Platz proportional */
}
.shake {
    animation: shakeAnim 0.5s;
}
@keyframes shakeAnim {
    0% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(8px); }
    100% { transform: translateX(0); }
}


#customLoadingScreenDiv{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(104, 104, 104, 0.4);
	background-position: center; 
	background-repeat: no-repeat;
	background-size: cover; 
	color: var(--textfarbe);
	font-size:30px;
	text-align:center;
	/*background-color: rgb(13, 19, 43);  Korrigierter RGBA-Wert */
	z-index:999;
}

    .lds-ellipsis {
        position:absolute;
        top: 180px;
        left: 40px;
        
        width:150px;
        height:150px;
    }
    .lds-ellipsis H2{
        padding-top:45px;
        color:#3a3a3a;
    }
  .lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  @keyframes lds-ellipsis3 {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(0);
	}
  }
  @keyframes lds-ellipsis2 {
	0% {
	  transform: translate(0, 0);
	}
	100% {
	  transform: translate(24px, 0);
	}
  }


.overlaySelected{
    background-color: rgba(90, 170, 120, 0.9); /* Dark overlay with only alpha */
    transition: background-color 0.3s ease; /* Smooth transition for the overlay */
}
.overlayPreSelected{
    background-color: rgba(253, 253, 253, 0.3); /* Dark overlay with only alpha */
    transition: background-color 0.3s ease; /* Smooth transition for the overlay */
}



.closebtn{
	position:absolute;
	top:30px;
	right:5px;
	width:50px;
	height:auto;
    cursor: pointer; /* Handcursor */
	transition: transform 0.3s ease;
}
.closebtn:hover {
    transform: scale(1.1); /* Vergrößern bei Hover */
    
}
.closebtn img{
	width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den verfügbaren Platz proportional */
}
.headElm{
	cursor:pointer;
	width:100%;
	padding:5%;
	padding-left:5%;
	padding-right:15%;
}


.scrollmenu{
	display:none;
	position:fixed;
	bottom:140px;
	height:140px;
	width:100%;
	
}
.scrollSubmenu{
	display:none;
	position:fixed;
	bottom:0px;
	height:auto;
	width:100%;
	z-index:850;
	background: rgba(155, 155, 155, 0.9);
}
.container {
	
	overflow: auto;
	white-space: nowrap; 
  width:100%;
  height:auto;  
} 
.container a {
	display: inline-block;
	text-decoration: none;
	border:1px solid#dfdfdf;
	padding: 40px;
	font-size: 23px;
	align-items:center;
}
.container a:hover {
color: #000;
}

.spanner{
    
}

.scroll {
	white-space: nowrap; /* [1] */
	overflow-x: auto; /* [2] */
	-webkit-overflow-scrolling: touch; /* [3] */
	-ms-overflow-style: -ms-autohiding-scrollbar; /* [4] */ 
}

/* [5] */
.scroll::-webkit-scrollbar {
	display: none; 
}
.headElm img{
    max-width: 100%; /* Bild skaliert mit dem Container */
    height: auto; /* Seitenverhältnis bleibt erhalten */
    object-fit: cover; /* Bild füllt den verfügbaren Platz */

}
/*.menuHeader div{
    flex: 1 1 auto;   
    min-width: 0;
    
    text-align: center; 
    padding: 2px;
}*/

.portrait-img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.container2 {
	overflow: auto;
	 
	width:100%;
	height:auto;  
} 

.container a {
	display: inline-block;
	text-decoration: none;
	border-right:1px solid#dfdfdf;
	padding: 2%;
	align-items:center;
	
}
/* layout hong */
.container2 a {
	display:block;
	text-decoration: none;
	padding: 2%;

	border-bottom:1px solid#b1b1b1;

	align-items:center;
	color:#ffffff;
}
.container2 a::marker {
	position:absolute;

}
.right {
  margin-left: auto; /* Drückt das Element nach rechts */
}
.menuentry{
	display:block;
	background-image: url('../img/bullet.png'); /* Hintergrundbild */
	background-size: 7px 7px; /* Hintergrundbildgröße: Breite x Höhe */
	background-position: left center; /* Position: links und vertikal zentriert */
	background-repeat: no-repeat; /* Verhindert Wiederholung des Hintergrunds */
	background-position: 0px 7px; /* Abstand von links und oben */
	padding-left:18px;
	
}
#sliderContainer {
	position: fixed;
	bottom:0;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex; /* Flexbox for horizontal alignment */
	align-items: center; /* Center items vertically */
	justify-content: space-between; /* Space between input and button */

}

#sliderContainer input {
	width: 85%; /* Adjust width to fit nicely */
	height: 30px;
	color: black;
}

#sliderContainer button {
	border: none;
	color: white;
	width: 50px;
	height: 50px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}
#sliderPlay.selected {
	background:rgba(104, 104, 104, 0.2);
}
#sliderPlay{
	right:50px;
	background:rgba(104, 104, 104, 0.2); 
}
#sliderSwitch{
	background:rgba(104, 104, 104, 0.2); 
	background-image: url('../img/camera.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
#sliderSwitch.selected{
	background-image: url('../img/cameraOn.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;	
}


#scene-info-box {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: rgb(255, 255, 255);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.2rem;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    
}


.center-text {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    align-items: flex-start; /* oben statt vertikal mittig */
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px; /* 30% kleiner als 120px */
    height: 84px; /* 30% kleiner als 120px */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px; 
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05),
                0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
	margin-top: 6%;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 39px; /* 30% kleiner als 56px */
    height: auto;
	 
}
.icon-text {
    display: flex;
    align-items: center; /* vertikal zentriert */
    gap: 12px; /* Abstand zwischen Bild und Text */
    margin-bottom: 15px; /* Abstand zwischen den Elementen */
}
.icon-text img{
    max-width:100px;
    height:auto;
}
.icon-text h4 {
    margin: 0; /* Standardabstand entfernen */
}



.chagridH {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.chagrid4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


.box {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow-wrap: break-word;
}

/*
aspect-ratio: 1 / 1;    Quadrat 
aspect-ratio: 16 / 9;   Videoformat 
aspect-ratio: 4 / 3;    klassisch 
aspect-ratio: 3 / 4;    hochkant

*/


/* Mobilgeräte bis 767.98px */
@media (max-width: 767px) {

    .edge-ear {
        width: 120px; /* Breite des "Ohrs" */
        height: 120px;
        top: 10vh;
    }

    #zuruckHand{
        width: 80px; /* Breite des "Ohrs" */
        height: 800px;
        top:10%;
    }
    footer{
        padding: 0px;
    }
    footer .fence{
        width: 100%;
        margin-top: 0px;
    }
    footer .product-tile a {
        height:5%;
        width:auto;
    }
    .chagrid4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .box {
        aspect-ratio: 1 / 1;
    }
    .fotoBanerOverlay img{
        width:80%;
    }

    #blocksack {
        padding-bottom: 100px;
    }
    .spacer {
        height: 50px;
    }
    .chagridH {
        grid-template-columns: repeat(5, 1fr);
        
    }
    footer .changridH {
        grid-template-columns: repeat(1, 1fr);
    }
     .fence {
        min-width: 0;
    }
    .full{
        height:auto;
    }
    button .button-icon {
        width: 20px;
        margin-top: 5px;
    }



    #navigation{
        top: 0px;
        padding:0px;
        display:none;
    }

    .nav-square {
        height:auto;
        
    }
    #language {
        margin-left: auto;
        margin-right:10px;
    }

    h1 {
        font-size: 1rem;
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: normal;
        hyphens: none;
    }
	
	h2 {
        font-size: 1.2rem;
    }
    h3 {
        font-size: 0.8rem;
    }
    p {
        font-size: 0.6rem;
    }
	
	ul li {
        font-size: 0.6rem;
    }
	
    .product-tile {
        font-size: 1rem;
    }
    #banner .banner-overflow {
        width: calc(100% - 1rem);
        margin: 0;
    }

    .fence {
        padding-bottom: 0;
        margin-bottom: 0;
        margin-top: 20px;
        width: 95%;

    }
    #Übersicht .fence {
        margin-top: 150px;
    }

    .accordion-content p {
        padding-left: 20px;
    }
    .accordion-content ul {
        margin-left: 40px;
        font-size: 1.2rem;
    }
    .scrolling-image {
        animation-duration: 20s;
    }
    .accordion-button {
        padding-bottom: 4%;
    }
    .accordion-button h3 {
        margin-top: 4%;
    }
    .accordion-list{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #mainMenu {
        height: 80px;
    }
    #closeContentBTN {
        width: 40px;
        height: 40px;
        padding: 5px;
        top:90px;
        right: 2%;
        
    }
    #backToHome {
        width: 50px;
        height: 50px;
        top: 60px;
    }
    .menuentry {
        background-size: 4px 4px;
        padding-left: 14px;
    }
    .changridH {
        grid-template-columns: repeat(1, 1fr);
    }


    .chagridA {
        grid-template-columns: repeat(1, 1fr);
    }

    #appMenu{
        display:none;
    }

    #menu-handle {
        width: 40px;
        height: 40px;
        top: 40px;
        opacity: 1;
    }
    .chagridB {
        grid-template-columns: repeat(1, 1fr);
    }

    #appLogoCont {
        height:80%;
    }

    #usageCont{
        
        width: 100px;
        height: 100px;
    }
    .infomercial{
        font-size: 0.3rem;
        max-width: 200px;
        padding: 5px;
    }
    .infomercial h2{
        font-size: 0.9rem;
    }
    .infomercial h3{
        font-size: 0.9rem;
    }
    .infomercial h4{
        font-size: 0.9rem;
    }
    .infomercial button h3{
        font-size: 0.5rem;
    }
    .infomercial button span{
        font-size: 0.5rem;
    }
    button{
        padding: 2px 5px;
        
    }
    #scene-info-box {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: rgb(255, 255, 255);
        padding: 5px 5px;
        border-radius: 8px;
        font-size: 0.8rem;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.5s;
        display: flex;
        align-items: center;
    }


}
@media (min-width: 768px) and (max-width: 1200px) { 



    .chagridA {
        grid-template-columns: repeat(3, 1fr);
    }
   

    .fence {
        width: 95%;
    }

    #appMenu{
        display:none;
    }
    .chagridC {
        grid-template-columns: repeat(1, 1fr);
    }
    .chagridB {
        grid-template-columns: repeat(2, 1fr);
    }

    #language {
        margin-left: auto;
    }
    #appLogoCont {
        height:50%;
    }
    #minimap{
        top:35px;
    }

}

/* Von 1201px bis 1979px: 2 Spalten für Grids */
@media (min-width: 1201px) and (max-width: 1979px) {
    .chagridA {
        grid-template-columns: repeat(3, 1fr);
    }
    #menu-handle {
        display:none;
    }
    .chagridB {
        grid-template-columns: repeat(2, 1fr);
    }
    .chagridC {
        grid-template-columns: repeat(1, 1fr);
    }

    .chagridC {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Ab 1980px: 3 Spalten für Grids */
@media (min-width: 1980px) and (max-width: 8979px){
    .chagridA {
        grid-template-columns: repeat(3, 1fr);
    }
    .chagridC {
        grid-template-columns: repeat(1, 1fr);
    }


    .chagridB {
        grid-template-columns: repeat(2, 1fr);
    }


    #menu-handle {
        display:none;
    }

}

