@charset "UTF-8";
/* CSS Document */

/* yeseva-one-regular - latin */
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('/fonts/poppins-v24-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin (KORRIGIERT) */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal; /* Muss normal sein, da es keine kursive (italic) 800er-Datei ist */
  font-weight: 800;  /* Muss 800 sein, um diese Datei der korrekten Dicke zuzuordnen */
  src: url('/fonts/poppins-v24-latin-800.woff2') format('woff2');
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Yeseva One';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/yeseva-one-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('fonts/yeseva-one-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/yeseva-one-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/yeseva-one-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/yeseva-one-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/yeseva-one-v20-latin-regular.svg#YesevaOne') format('svg'); /* Legacy iOS */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Momo Trust Display';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/MomoTrustDisplay-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('fonts/momo-trust-display-latin-400-normal.woff') format('woff'), /* Modern Browsers */
       url('momo-trust-display-latin-400-normal.woff2') format('woff2'); /* Super Modern Browsers */
}

html, body {
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	max-width: 1366px;
	background: #E8E6DA;
	/* hyphens 
   -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;*/
   }

* {
  font-family: 'Poppins', Helvetica, Arial, "sans-serif";
  box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #397291;
  border-radius: 0px 0px 7px 7px;
  background: linear-gradient(to top, #0D3145, #2E5D77);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  height: 80px;
  padding: 24px;
	position: fixed;
	width: 100%;
	max-width: 1366px;
	margin-top: 0px;
	box-shadow:  0px 4px 8px 0px rgba(24,49,63,0.5);
	z-index: 1000;
	}

.top-nav a {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
}

.top-nav a:hover {
	color: #DEAD6D;
	text-decoration: none;
	transition-duration: 0.5s;
}




.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1.05em;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
  font-size: 1.1em;
 }

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.logo a {
	position: absolute;
	color: #DEAD6D;
	font-family: 'Momo Trust Display', sans-serif;
	font-weight: 400;
	font-size: 46px;
	letter-spacing: -0.04em;
	margin-top: -33px;
	/*text-shadow: 0px 6px 3px rgba(0, 0, 0, 0.15); */
} 



.logo a:hover {
	color: #FFFFFF;
}

.header {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: 7px;
	bottom: -82px;
}

.header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;

}

.header-inhalt {
	position: absolute;
	bottom: 0px;
	text-align: center;
	color: #FFFFFF;
	width: 100%;
	background: linear-gradient(to top, rgba(3,12,18,0.87), transparent);
	border-radius: 7px;
	-moz-hyphens: none;
   -o-hyphens: none;
   -webkit-hyphens: none;
   -ms-hyphens: none;
   hyphens: none;
	}

.header-inhalt h1 {
	font-weight: 100;
	font-size: 6.1em;
	text-align: center;
	padding-left: 100px;
	padding-right: 100px;
	margin-top: 0em;
	font-family: 'Yeseva One', Times, "Times New Roman", "serif";
	border-radius: 7px;
	line-height: 1.15em;
	hyphens: manual;
	text-shadow: 0px 0px 35px #000000;
	/*text-transform: uppercase;*/
}

.header-inhalt h2 {
	font-size: 2em;
	line-height: 2em;
	font-weight: 400;
	/*text-shadow: 0px 0px 60px black; */
	margin-bottom: -0.6em;
	text-transform: uppercase;
	text-shadow: 0px 0px 15px #000000;
}

.header-inhalt h3 {
	font-weight: 100;
	font-size: 2em;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: -2em;
	font-family: 'Momo Trust Display', Times, "Times New Roman", "serif";
	text-shadow: 0px 0px 25px #000000;
}

#background {
	background: #FFFFFF;
	border-radius: 7px;
	padding-top: 0px;
	margin-top:1px;
	margin-bottom: 1px;
	width: auto;
	height: auto;
	min-height: 500px;
	display: table;


}

#zutaten {
	padding: 10px 24px;
	width: 400px;
	float: left;
	font-size: 1em;
	color: #387290;
}

#zutaten li{
    list-style: none;
	line-height: 180%;
	margin-left: -20px;
	
  }

.speisenname {
	/*-moz-hyphens: auto;
   	-o-hyphens: auto;
   	-webkit-hyphens: auto;
   	-ms-hyphens: auto;
   	hyphens: auto;*/
	padding-left: 20px;
	padding-right: 20px;
	letter-spacing: -0.03em;
}


#portionen {
    color: #613807;
    padding-bottom: 4px;
    padding-top: 5px;
	padding-left: 42px;
    margin-bottom: 2px;
    margin-top: 84px;
    margin-left: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
	letter-spacing: -0.025em;
	font-weight: 800;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, #EDC28B, #E7AB60);
    border-radius: 7px;
    text-transform: uppercase;
}



#zubereitung {
	padding-top: 10px;
	margin-left: 30%;
    margin-right: 0%;
	margin-bottom: 0px;
	width: 65%;
	line-height: 160%;
	font-size: 1.2em;
	padding-bottom: 4%;
	color: #505050;
	height: auto;
	hyphens: auto;
}

#zubereitung h1 {
	font-family: 'Yeseva One', Times, "Times New Roman", "serif";
	color: #0D3145;
}

#zubereitung h3 {
	font-family: 'Yeseva One', Times, "Times New Roman", "serif";
	color: #0D3145;
}

#zubereitung a {
	color: #397291;
}

#zubereitung ol>li::marker {
	font-weight: 800;
	color: #1C7392;
}

#zubereitung li {
	margin-bottom: 1em;
}

#infobox {
	margin-left: 5%;
	margin-right: 0%;
	color: #8F8F8F;
	background: #FFFFFF;
	width: 95%;
	border-radius: 22px;
	box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
	
}

.infobox-text {
	padding: 70px 60px 40px 60px;
	margin-top: 50px;
}

.infobox-headline {
	font-weight: 800;
	font-size: 1.65rem;
	color: #1C7392;
	margin-bottom: 0.5em;
	margin-top: -1em;
}

.infobox-subline {
	font-weight: 400;
	font-size: 1.25rem;
	color: #1C7392;
	margin-bottom: 0.5em;
	margin-top: -0.7em;
}

.infobox-copy {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 1.6em;
}

.infobox-tipp {
	font-weight: 800;
	font-size: 0.8rem;
	line-height: 1.6em;
	color: rgba(231,171,96,1.00)
}


#footer {
    width: 100%;
	height: 64px;
	/* background-color: #453014; */
	/* background-color: #0D3145; */
	float: left;
	border-radius: 7px 7px 0 0 ;
	background: linear-gradient(to bottom, #533918, #2E200D);
	margin-top: 1px;
}
.footer-text {
	font-size: 1.05em;
	font-family: 'Poppins', Helvetica, Arial, "sans-serif";
	margin-top: 12px;
	color: #DEAD6D;
	text-align: center;
	text-transform: uppercase;
}

.footer-text a{
	text-decoration: none;
	color: #DEAD6D;
	font-family: 'Poppins', Helvetica, Arial, "sans-serif";
	transition-delay: 0s;
	transition-duration: 0.5s;
}

.footer-text a:hover{
	text-decoration: none;
	color: #F5E8D7;
}

#footer {
    /* Stellt sicher, dass der gesamte Footer-Inhalt zentriert wird */
    text-align: center;
}

.copyright {
	font-size: 0.6em;
	font-family: 'Poppins', Helvetica, Arial, "sans-serif";
	padding: 0em;
	color: #DEAD6D;
	text-align: center;
	display: block; 
    margin-top: 0px; /* Optional: Fügt etwas vertikalen Abstand hinzu */
}

.aufgegessen {
            width: 100%;
            max-width: 1366px; /* Begrenzung für Desktops */
            padding: 60px;
            background-color: white;
            border-radius: 0px;
            text-align: center;
            
            /* Schatten (ersetzt kitchen-shadow) */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            
            /* Übergang für den Hover-Effekt */
            transition: transform 0.3s ease-in-out;
        }


        /* 404 Code */
        .error-code {
            font-size: 6rem; /* 7xl/8xl */
            font-weight: 800;
            color: #03455C;;
            margin-top: 40px;
			margin-bottom: 0;
            display: block; /* Stellt sicher, dass es ein Blockelement ist */
            transition: transform 0.3s;
        }

        .error-code:hover {
            transform: rotate(2deg);
        }
        
        /* Headline */
        .aufgegessen_headline {
            font-size: 1.875rem; /* 3xl/4xl */
            font-weight: 700;
            color: #505050;
            margin-bottom: 16px;
        }

        /* Copy Text */
        .aufgegessen_copy {
            color: #505050;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        /* Button (Call-to-Action) */
        .aufgegessen a {
            display: inline-block;
            padding: 12px 32px;
            font-size: 1.125rem;
            font-weight: 600;
            color: #FFFFFF;
            background-color: #E7AB60;
            border-radius: 9999px; /* rounded-full */
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2), 0 2px 4px -2px rgba(220, 38, 38, 0.15); /* Leichter Schatten */
        }
        
        .aufgegessen a:hover {
            background-color: #B26F1A; /* Dunklerer Rotton */
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3), 0 4px 6px -4px rgba(220, 38, 38, 0.25);
        }

/* --- NEUES CSS FÜR BILDERLEISTE --- */
#lightbox {
    position: fixed;
    /* ... weitere Einstellungen ... */
}
.step-image-strip {
    /* Container ermöglicht horizontales Scrollen */
    display: flex;
    overflow-x: scroll;
    padding: 10px 0; /* Abstand oben/unten */
    gap: 10px; /* Abstand zwischen den Bildern */
    -webkit-overflow-scrolling: touch; /* Besseres Scrolling auf iOS */
}

.step-image-strip img {
    /* Definiert die Größe der Vorschaubilder */
    flex-shrink: 0; /* Verhindert das Verkleinern der Bilder */
    width: 200px; /* Feste Breite der Bilder (anpassbar) */
    height: 150px; /* Feste Höhe der Bilder (anpassbar) */
    object-fit: cover; /* Schneidet Bilder auf die feste Größe zu */
    border-radius: 5px;
}
/* --- ENDE NEUES CSS --- */
/* ------------------------------------------------------------------------------------------------
/* ------------------------------------------------------------------------------------------------*/
@media (max-width: 1165px)  {
	
html, body {
	background: #FFFFFF;
	}
	
	
.top-nav {
  border-radius: 0px 0px 0px 0px;
  }	

.menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 80px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.4em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;

  }
.menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
	
.logo a {
	font-size: 1.8em;
	margin-left: 0px;
	position: relative;
}	
	
	
	
.header {
	border-radius: 0px;
	margin: 0;
	padding: 0;
	bottom: -80px;
}
		
.header-inhalt {
	border-radius: 0px;
	-moz-hyphens: none;
   -o-hyphens: none;
   -webkit-hyphens: none;
   -ms-hyphens: none;
   hyphens: none;
}	

	
.header-inhalt h1 {
	font-size: 6.2em;
	padding: 0 12px;
}

.header-inhalt h2 {
	font-size: 1.8em;
	margin-bottom: 1.8em;
	line-height: 1em;
}


	
#background {
	background: #FFFFFF;
	border-radius: 0px;
	margin-top: 0px;
	padding-top: 0em;
	margin-bottom: 0px;
	width: auto;
	height: auto;
} 
		
#zutaten {
	margin-left: 0px;
    margin-right: 0%;
	padding-left: 10px;
	padding-bottom: 1em;
	padding-top: 1em;
	width: 100%;
	/*background: #DEAD6D;*/
	background: #397291;
	/*color: #453014; */
	color:#FFFFFF;
	min-height:150px;
}
	
#zutaten li{
    list-style: none;

    
}
	
#zutaten ul{
  columns: 2;
 }
	
	
#portionen {
    padding-bottom: 0.25em;
	padding-top: 0.25em;
    margin-bottom: 0;
	margin-top: 80px;
	padding-left: 26px;
	font-size: 1.2em;
	width: 100%;
	border-radius: 0;
}
	
	
#zubereitung {
	margin-left: 0;
    margin-right: 0;
	padding-top: 4%;
	padding-bottom: 4%;
	width: 92%;
	line-height: 180%;
	font-size: 1em;
	float: left;
}
	
#zubereitung li{
	margin-left: 10px;
}	
	
	
#zubereitung h1 {
	font-size: 1.6em;
}
	
#footer {
	width: 100%;
	height: 100px;
	background-color: #453014;
	float: left;
	border-radius: 0px;
	/* background: linear-gradient(to left, #916B38, #A97D41); */
	}
	
#infobox {
	width: 99%;
	
}

	
.infobox-text {
		padding: 24px;
	}
.infobox-text h1 {
		padding-top: 24px;
	}	
	
.footer-text {
	font-size: 0.8em;
	margin-top: 2.2em;
	}
}

@media screen and (max-width: 767px){
	
html, body {
	overflow-x: hidden;
    /* Stellt sicher, dass keine ungewollten Ränder existieren */
    margin: 0;
    padding: 0;
	}
	
#zutaten ul{
  columns: 1;
 }
	
.header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;

}
.header-inhalt h1, h2, h3 {
	padding-left: 30px;
	padding-right: 30px;
}	
	
.header-inhalt h1 {
	font-size: 3em;
	line-height: 1.2em;
	-moz-hyphens: none;
   -o-hyphens: none;
   -webkit-hyphens: none;
   -ms-hyphens: none;
   hyphens: manual;
	padding: 0 24px;
}

.header-inhalt h2 {
	font-size: 1.1em;
	line-height: 1.1em;
	margin-bottom: 0em;
}
	
.header-inhalt h3 {
	font-size: 1em;
	line-height: 2em;
	margin-bottom: 1.7em;
}
	
	#aufgegessen {
	margin-left: 4%;
    margin-right: 4%;
	padding-top: 4%;
	padding-bottom: 4%;
	width: 92%;
	line-height: 180%;
	font-size: 1em;
	float: left;
}

	
#footer {
	margin-top: 0;	
	}
	
	.infobox-headline {
	margin-top: 0px;
	line-height: 1.25em;
	font-size: 1.2em;
	hyphens: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
	
	.infobox-subline {
		font-size: 1em;
		line-height: 1.4em;
		margin-top: 0.09em;
	}
.infobox-copy {
	font-weight: 400;
	font-size: 0.85em;
	line-height: 1.6em;
}

#lightbox > div {
        /* Das innere Content-Feld im Modal */
        max-width: 100%; /* Volle Breite */
        margin: 0; /* Kein Rand, füllt den Screen */
        height: 100%;
        width: 100%;
        padding: 10px;
    }

    #lightbox-image {
        /* Bildgröße für Mobile */
        max-height: 65vh; 
    }	
	
	
}