*{
box-sizing:border-box;
}
body{
margin:0;
font-family:'Poppins',sans-serif;
background:#f8f6f2;
color:#333;
scroll-behavior:smooth;
padding-top:70px;
padding-bottom:60px;
overflow-x:hidden;
}
/* ===== NAVBAR ===== */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
background:#0f3d2e;
color:white;
display:flex;
justify-content:space-between;  /* WICHTIG */
align-items:center;
padding:15px;
z-index:1000;
}

.nav-logo{
font-weight:600;
font-size:18px;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.nav-links a:hover{
color:#d4af37;
}

.burger{
display:none;
font-size:28px;
cursor:pointer;
}


/* HERO */
.hero{
position:relative;
height:85vh;
min-height:600px;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.6),
rgba(0,0,0,0.3)
);
z-index:1;
}

.hero-overlay{
position:relative;
z-index:2;
}

.hero img.hero-bg{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.hero-overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
background:rgba(0,0,0,0.35);
backdrop-filter: blur(6px);
padding:40px 30px;
border-radius:25px;
width:85%;
max-width:400px;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
animation:fadeUp 0.9s ease-out forwards;
will-change: transform, opacity;
}

.hero-overlay img{
width:120px;
margin-bottom:20px;
}

.hero-overlay h1{
font-size:42px;
line-height:1.1;
}

.hero-overlay p{
color:#f1d37a;
margin-top:15px;
font-size:16px;
line-height:1.7;
font-weight:300;
letter-spacing:0.5px;
}
.hero-sub{
font-size:14px;
letter-spacing:3px;
text-transform:uppercase;
opacity:0.8;
}

.hero-main{
font-size:22px;
margin:10px 0;
font-weight:600;
color:#d4af37;
}

.hero-location{
font-size:15px;
opacity:0.85;
}
.hero-info{
margin-top:15px;
font-size:13px;
line-height:1.6;
opacity:0.85;
}

.hero-btn{
display:inline-block;
margin-top:25px;
padding:14px 35px;
background:#d4af37;
color:#0f3d2e;
font-weight:600;
text-decoration:none;
border-radius:50px;
transition:0.3s;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.hero-btn:visited{
color:#0f3d2e;
}

.hero-btn:hover{
background:#f1d37a;
color:#0f3d2e;
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(0,0,0,0.4);
}

.hero-btn:active{
color:#0f3d2e;
}

/* SECTION */
.section{
padding:80px 20px;
max-width:1200px;
margin:auto;
}

h2{
text-align:center;
color:#0f3d2e;
margin-bottom:50px;
font-size:32px;
}

/* HAUPTGERICHTE MIT BILD */
.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.menu-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
transition:0.35s;
opacity:0;
transform:translateY(40px);
}

.menu-card.show{
opacity:1;
transform:translateY(0);
}

.menu-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.menu-card img{
width:100%;
height:230px;
object-fit:cover;
}

.menu-content{
padding:25px;
}

.price{
color:#d4af37;
font-weight:700;
font-size:18px;
margin-top:10px;
}

/* TEXT MENÜ */
.text-menu{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.text-item{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
transition:0.3s;
}

.text-item:hover{
transform:translateY(-4px);
}

/* GALERIE */
.gallery{
columns:2;
column-gap:15px;
}

.gallery img{
width:100%;
margin-bottom:15px;
border-radius:15px;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* MAP */
.map iframe{
width:100%;
height:450px;
border:0;
border-radius:15px;
}

/* INSTAGRAM */
.instagram{
text-align:center;
margin-top:50px;
}

.instagram a{
display:inline-block;
padding:14px 30px;
background:#d4af37;
color:#0f3d2e;
text-decoration:none;
border-radius:10px;
font-weight:600;
}

/* FOOTER */

footer{
background:#0f3d2e;
color:white;
text-align:center;
padding:25px 20px 70px 20px;
margin-top:20px;
}

/* ANIMATION */
.section{
opacity:0;
transform:translateY(50px);
transition:1s ease;
}

.section.show{
opacity:1;
transform:translateY(0);
}
@keyframes fadeUp{
0%{
opacity:0;
transform:translate(-50%,-40%);
}
100%{
opacity:1;
transform:translate(-50%,-50%);
}
}

@media (max-width:768px){

.nav-links{
display:none;
}

.burger{
display:block;
}

.nav-links.active{
display:flex;
flex-direction:column;
position:absolute;
top:60px;
left:0;
width:100%;
background:#0f3d2e;
padding:20px 0;
text-align:center;
}
/* WHY SECTION */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-box{
background:white;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.why-box:hover{
transform:translateY(-6px);
}

.why-box h3{
color:#0f3d2e;
margin-bottom:10px;
}

.why-box p{
font-size:14px;
line-height:1.6;
}
/* GOOGLE RATING */

.rating{
text-align:center;
padding:60px 20px;
}

.rating-score{
font-size:22px;
font-weight:600;
color:#0f3d2e;
margin-bottom:10px;
}

.rating-stars{
font-size:28px;
color:#d4af37;
margin-bottom:10px;
}

.rating-count{
font-size:14px;
opacity:0.8;
}
/* OEFFNUNGSZEITEN */

.hours-box{
max-width:500px;
margin:auto;
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.hours-row{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
font-size:15px;
}

.hours-row:last-child{
border-bottom:none;
}

.hours-row span:first-child{
font-weight:600;
color:#0f3d2e;
}
/* ANFAHRT */

.transport{
margin-top:40px;
text-align:center;
}

.transport-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:20px;
}

.transport-box{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
font-size:16px;
}

.transport-box p{
font-size:14px;
margin-top:10px;
color:#555;
}

.hours{
margin-top:80px;
}
/* MOBILE ACTION BAR */

.mobile-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#0f3d2e;
display:flex;
z-index:999;
height:60px;
}

.mobile-bar a{
flex:1;
text-align:center;
padding:15px;
color:white;
text-decoration:none;
font-weight:600;
border-right:1px solid rgba(255,255,255,0.2);
}

.mobile-bar a:last-child{
border-right:none;
}

.mobile-actions{
border-top:1px solid rgba(255,255,255,0.2);
}
.section:nth-child(even){
background:#f2efe9;
}
.location-text{
text-align:center;
margin-top:15px;
font-size:14px;
color:#555;
}
/* ABOUT SECTION */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
margin-top:50px;
}

.about-text{
font-size:16px;
line-height:1.8;
color:#555;
}

.about-image img{
width:100%;
height:350px;
object-fit:cover;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width:768px){
.about-grid{
grid-template-columns:1fr;
}
}
.review-btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
background:#d4af37;
color:#0f3d2e;
text-decoration:none;
border-radius:10px;
font-weight:600;
}
}
