  body {
    margin: 0;
    height: 100vh;
    background-color: #f0f0f0;
	font-family: Verdana;
  }
  
  a {
  	color: #778b88;
	text-decoration: none;  	
  }
  
  #impressum {
  	position: fixed;
  	bottom: 2%;
  	right: 1%;  
  	color: #ffff;	
  }
  
  #insta {
  	position: fixed;
  	top: 1%;
  	right: -80px; 
	z-index: 1000; 
  }

  #insta img {
	width: 30%;
	z-index: 1000;
  }
  
  #content {
  	position: absolute;
  	top: 40%;
  	left: 3%;
  	width: 490px;
  	height: auto;
  	padding: 3%;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 2s; /* Verzögerung von x Sekunden */
    background: #ffffff;
	font-family: Verdana;
	font-size: 100%;
  	color: #778b88;
  	line-height: 145%;
  	margin-bottom: 350px;
  }
  

.headline b {
	color: #fdd475;
	font-size: 100%;
}

#about {
	margin-top: -50px;
}
  
  h1 {
	font-family: Verdana;
  	font-size: 40px;
	line-height: 1.2;
  	color: #52b4b7;
  	text-decoration: none;
  	border-bottom: 6px solid #fdd475;
  	padding-bottom: 25px;
  	margin-top: 70px;	
  }
 
  
  h2 {
	font-family: Verdana;
  	font-size: 30px;
  	color: #c1e1dc;
  	text-decoration: none;
  	line-height: 105%;
  }
  
  h3 {
	font-family: Verdana;
  	font-size: 30px;
  	color: #fdd475;
  	text-decoration: none;
   	line-height: 115%; 	
   	margin-bottom: 0px;
  }
  
  h4 {
	font-family: Verdana;
  	font-size: 25px;
	line-height: 1.2;
  	color: #52b4b7;
  	text-decoration: none;
  	border-bottom: 6px solid #fdd475;
  	padding-bottom: 5px;
  	margin-top: 70px;	
  }
  
  
/* Hamburger Button nur auf Mobilgeräten anzeigen */
#hamburger {
  display: none;  /* zwingend ausblenden */
}

/* Standard-Menü */
#menu { 
	position: fixed; 
	top: 10px; 
	left: 53%; 
	opacity: 0; 
	animation: fadeIn 1s forwards; 
	animation-delay: 1s; /* Verzögerung von x Sekunden */ 
	z-index: 100; 
	background: #fdd475; 
	} 
	
#menu a { 
	font-family: Verdana; 
	font-size: 20px; 
	font-weight: bold; 
	color: #52b4b7; 		
	text-decoration: none; 
	text-transform: uppercase; 
	letter-spacing: 3px; 
	border-bottom: 6px solid #baac85; 
	padding-bottom: 3px;
	} 
		
#menu a:hover { 
	color: #a6bfbc; 
	}
	
.menu-item {
  position: relative; /* ermöglicht absolute Positionen innen */
  list-style: none;
}

.wrapper {
  position: relative;
}

/* Info-Boxen initial verstecken */
.info-box1,
.info-box2,
.info-box3 {
  position: fixed;
  top: 15%;
  left: 75%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999; /* über #rund */
}

.info-box1 img,
.info-box2 img,
.info-box3 img {
	width: 80%;	
  	z-index: 850;
  }

/* Hover auf trigger1 -> Info-Box1 einblenden, #rund ausblenden */
.trigger1:hover ~ .info-box1,
.trigger2:hover ~ .info-box2,
.trigger3:hover ~ .info-box3 {
  opacity: 1;
  pointer-events: auto;
}

.trigger1:hover ~ #rund,
.trigger2:hover ~ #rund,
.trigger3:hover ~ #rund {
  opacity: 0;
  pointer-events: none;
}
  
  #torte {
  	position: fixed;
  	top: 60%;
  	left: 58%;  
  	z-index: 400;
  }
  
  #torte img {
  	width: 63%;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 2s; /* Verzögerung von x Sekunden */	  	
  }
  
  #box1 {
  	position: relative;
  	width: 80%;
  	padding: 20px;
  	margin: 50px 30px;
    z-index: 100;
    background: #fdd475;
    font-size: 20px;
    color: #ffffff;
  }
  
  #box2 {
  	position: relative;
  	width: 80%;
  	padding: 20px;
  	margin: 50px 30px;
    z-index: 100;
    background: #fdd475;
    font-size: 20px;
    color: #ffffff;
  }
  
  #box1 h2, #box2 h2 {
  	color: #52b4b7;
  }
  
  #box1 a {
  	color: #52b4b7;
  }

 /* Animation für das Einblenden */
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  /* Optional: Styling für das Menü */
  ul {
   	width: 500px:
  	margin: 20px 80px;
    list-style: none;
    padding: 0;
  }

  li {
    margin: 5px 0;
    padding: 0px 170px 20px 30px;
  }
  
  /* Regal verstecken und dann anzeigen mit Verzögerung */
  #regal {
  	position: absolute;
  	top: 10px;
  	left: 5%;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 2s; /* Verzögerung von x Sekunden */
    z-index: 99;
  }
  
  /* Logo verstecken und dann anzeigen mit Verzögerung */
  #logo {
  	position: absolute;
  	top: 75%;
  	left: 42%;
  	width: 70%;
    opacity: 0;
    animation: fadeIn 3s forwards;
    animation-delay: 3s; /* Verzögerung von x Sekunden */
    z-index: 100;
  }
  
/* Rundes Element */
#rund {
  position: fixed;
  top: 15%;
  left: 75%;
  z-index: 101;
  transition: opacity 0.3s ease;
    display: none; /* Standard ausblenden */
}

#rund a {
	border-bottom: 0px; 	
}
  
  #rund img {
	width: 80%;	
    opacity: 0;
    animation: fadeIn 3s forwards;
    animation-delay: 3s; /* Verzögerung von x Sekunden */
  }

  #rund img:hover {  
    opacity: 0.5;
  }

body.startpage #rund {
  display: block; /* nur auf index.php einblenden */
} 

#rund_mobile, #formate_mobile {
	display: none;
}
  
  #images {
  	position: fixed;
  	top: 0;
  	left: 0;  	
  }

  /* Gemeinsame Styles für alle Bilder */
  .image {
    object-fit: cover;
    width: 100%;
    /* Animation */
    animation: flyIn 4s forwards;
  }

  /* Positionen für die Startpunkte */
  .top-left {
    width: 25%;
    animation-name: flyInTopLeft;
  }

  .top-right {
    width: 60%;
    animation-name: flyInTopRight;
    z-index: -100;
  }

  .bottom-left {
    width: 70%;
    animation-name: flyInBottomLeft;
  }

  .bottom-right {
    width: 14%;
    animation-name: flyInBottomRight;
  }

  
  .bottom-top {
    width: 20%;
    z-index: 2;
    animation-name: flyInBottomTop;
  }

  /* Keyframes für die Animationen */


  /* Fließen */
  @keyframes flyInTopRight {
    0% {
      transform: translate(80%, -10%);
      opacity: 0;
    }
    100% {
      transform: translate(40%, 80%);
      opacity: 1;
    }
  }

  /* Theke */
  @keyframes flyInBottomLeft {
    0% {
      transform: translate(10%, 10%);
      opacity: 0;
    }
    100% {
      transform: translate(17%, -45%);
      opacity: 1;
    }
  }

  /* Torte */
  @keyframes flyInBottomRight {
    0% {
      transform: translate(0%, 0%);
      opacity: 0;
    }
    100% {
      transform: translate(-445%, -447%);
      opacity: 1;
    }
  }

  
@media (max-width: 1100px) {

  #menu {
  	left: 45%;
      opacity: 1;
  }

  #menu a {
  	font-size: 16px;
  	padding-bottom: -5px;
  }
  
  ul {
   	width: 100px:

}

}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
	
	
  html.startpage, body.startpage {
    overflow: hidden; /* scrollen verhindern */
  }
	
  #hamburger {
    display: block;
    position: fixed;
    top: -10px;
    right: 10px;
    font-size: 60px;
    color: #52b4b7;
    cursor: pointer;
  z-index: 9999;
  pointer-events: auto;  }
  


#menu ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: -20px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    background: #fdd475;
    padding: 30px 0 60px 0;
    z-index: 8888; /* über allen Bildern */
}

  #menu ul li {
    margin: 0 0;
    margin-bottom: -15px;
    width: 100%;
    text-align: center;
  }

  #menu a {
    font-size: 18px;
    color: #52b4b7;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 15%;
  }
  
  #menu-items {
    display: none; /* standardmäßig verstecken */
  }

  #menu-items.active {
    display: block; /* nur sichtbar, wenn aktiv */
  }
  
  #insta {
  	position: fixed;
  	top: 1%;
  	left: 5px;  
  }
  
  #insta img {
	width: 8%;
	z-index: 1000;
  }
  
  /* Info-Box einblenden, wenn LI gehovt wird */
  .trigger1:hover .info-box1,
  .trigger2:hover .info-box2 {
    opacity: 1;
    pointer-events: auto;
  }

  /* #rund ausblenden */
  .trigger1:hover ~ #rund,
  .trigger2:hover ~ #rund {
    opacity: 0;
    pointer-events: none;
  }

  .info-box1,
  .info-box2,
  #rund {
    opacity: 1; /* oder Standardwert, je nach gewünschtem Verhalten */
    pointer-events: auto;
    display: none;
  }
  
body.startpage #rund {
  display: none; /* nur auf index.php einblenden */
} 

  /* Regal-Bild skalieren und zentrieren */
  #regal {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    margin: 20px 0;
  }

  #regal img {
    width: 80%;
    height: auto;
  }
  
  /* Corner-Bilder stapeln und skalieren */
  #images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }

  #images img {
    width: 70%;
    max-width: 300px;
    height: auto;
    margin: 10px 0;
  }

  /* Impressum zentrieren */
  #impressum {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin: 20px 0;
  }

  /* Content-Box anpassen */
  #content {
    position: relative;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 2% 5%;
    margin: 0;
  }
  
/* Impressum fest unten positionieren */
  #impressum {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #fdd475;
    padding: 10px 0;
    margin-bottom: 0px;
    z-index: 1000;
  }

  #impressum a {
    color: #52b4b7;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
  }

  #box {
	margin: 50px 10px;
    font-size: 17px;
    font-weight: bold;
  }
  
  /* Fließen und Theke volle Breite */
  .top-right,  /* Fließen */
  .bottom-left /* Theke */ {
    position: relative !important;   /* normale Position */
    height: auto !important;         /* proportional skalieren */
    max-width: 100vw !important;     /* sicherstellen, dass kein Limit */
    left: 0 !important;
    transform: none !important;
    z-index: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;               /* füllt Container sauber aus */
    display: block;                  /* Block-Level, keine Inline-Probleme */
  }
  

  /* Optional: Abstand zwischen den Bildern */
  .top-right {
    bottom: -40px !important;
    width: 90vw !important;         /* volle Bildschirmbreite */
  }

  .bottom-left {
    bottom: 122px !important;
    width: 100vw !important;         /* volle Bildschirmbreite */
  }

#rund_mobile {
	position: fixed;
	top: 42%;
	left: 58%;
	display: inline;
	z-index: 1000;
}  

  #rund_mobile img {
	width: 88%;	
	display: inline;
	z-index: 1000 !important;    

  }
  
#formate_mobile {
	position: static;
	top: 35%;
	left: 0;
	display: inline;
	z-index: 1000 !important;
}  

  #formate_mobile img {
	width: 70%;	
	display: inline;
	z-index: 1000 !important;    
  }
  
#torte {
    display: none; 
} 

#space {
	height: 50px;
}
  
}


@media (min-width: 769px) {
  /* Info-Box einblenden */
  .trigger1:hover .info-box1,
  .trigger2:hover .info-box2 {
    opacity: 1;
    pointer-events: auto;
  }

}