/* styles.css */
:root{
  --bg: #fbf7f1;
  --card: #ffffff;
  --text: #151515;
  --muted: #5f5b55;
  --border: rgba(20,20,20,0.10);

  --accent: #2f4b3a;
  --accent2: #b08b57;

  --radius: 18px;
  --shadow: 0 12px 36px rgba(0,0,0,0.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 13px; color: var(--muted); }

.kicker{
  color: var(--muted);
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.lead{
  color: var(--muted);
  max-width: 62ch;
  margin: 12px 0 0;
  font-size: 16px;
}

/* HEADER */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(251,247,241,0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,20,20,0.08);
  transition: transform 0.35s ease;
  transform: translateY(0);
}

/* Startseite am Anfang weg */
body.is-home .header{
  transform: translateY(-110%);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo img{
  height: 44px;
  width: auto;
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a{
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  font-size: 14px;
}

.nav a:hover{ opacity: 1; }

.nav-toggle{
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* HERO */
.hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15,15,15,0.45);
}

.hero-inner{
  position: relative;
  z-index: 2;
  padding: 84px 0 64px;
  color: #fff;
}

.hero-title-row{
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-logo{
  width: 130px;
  height: 130px;
  border-radius: 999px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.35);
}

.hero .kicker{
  color: rgba(255,255,255,0.75);
}

.hero h1{
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.hero .lead{
  color: rgba(255,255,255,0.90);
  margin-top: 14px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn:hover{ filter: brightness(1.05); }

.btn.ghost{
  background: transparent;
  border: 1px solid rgba(47,75,58,0.35);
  color: var(--accent);
}

.hero .btn.ghost{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.location-line{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero .tiny{
  color: rgba(255,255,255,0.88);
}

.sep{ opacity: 0.7; }

.linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

.linklike:hover{ opacity: 1; }

/* Chips */
.hero-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(0,0,0,0.22);
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}

/* SECTIONS */
.section{
  padding: 64px 0;
  border-top: 1px solid rgba(20,20,20,0.06);
}

.section h2{
  margin: 0 0 10px;
  font-size: 28px;
  position: relative;
}

.section h2::after{
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent2);
  border-radius: 999px;
}

.two-col{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.media img{
  border-radius: var(--radius);
  border: 1px solid rgba(20,20,20,0.10);
  box-shadow: var(--shadow);
}

/* CARDS */
.card{
  background: var(--card);
  border: 1px solid rgba(20,20,20,0.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
/* SPEISEKARTE BANNER */
.menu-banner{
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20,20,20,0.10);
  box-shadow: var(--shadow);
  text-decoration: none;
  min-height: 240px;

  background-image: url("img/speisekarte-banner.jpg");
  background-size: cover;
  background-position: center;
}

.menu-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.20)
  );
}

.menu-banner-content{
  position: relative;
  z-index: 1;
  padding: 26px;
  color: #fff;
  max-width: 560px;
}

.menu-banner-title{
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.1;
}

.menu-banner-text{
  margin: 0 0 14px;
  opacity: 0.92;
}

.menu-banner .btn{
  display: inline-block;
  margin-top: 4px;
  border-color: rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.menu-banner-note{
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}

/* Hover */
.menu-banner:hover{
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

/* Reveal Text Animation innerhalb Banner */
.menu-banner .menu-banner-content{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.menu-banner.in .menu-banner-content{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 520px){
  .menu-banner{
    min-height: 260px;
    background-position: 70% center;
  }

  .menu-banner-content{
    padding: 18px;
  }

  .menu-banner-title{
    font-size: 24px;
  }
}

.center{ text-align: center; }

.info-grid{
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.info-card{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(20,20,20,0.10);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.info-card h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.address{
  margin: 0;
  display: inline-block;
  padding: 12px 14px;
  border: 1px solid rgba(20,20,20,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
}


/* HOURS */
.hours{
  max-width: 740px;
  margin: 0 auto;
  text-align: left;
}

.hours-row{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20,20,20,0.07);
}

.hours-row:last-child{ border-bottom: 0; }

.hours-left{
  color: var(--muted);
  font-weight: 700;
}

.hours-right{
  color: var(--text);
}

/* CONTACT + SOCIAL */
.contact-actions,
.social-row,
.social-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact-link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(20,20,20,0.30);
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(20,20,20,0.08);
  padding: 20px 0;
  color: var(--muted);
  background: rgba(255,255,255,0.55);
}

.footer-inner{
  text-align: center;
}

.footer a{
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover{ color: var(--text); }

/* REVEAL */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

#restaurant{
  scroll-margin-top: 90px;
}

/* MOBILE */
@media (max-width: 900px){
  .nav-toggle{ display: block; }

  .nav{
    display: none;
    position: absolute;
    right: 4%;
    top: 64px;
    background: var(--card);
    border: 1px solid rgba(20,20,20,0.12);
    border-radius: var(--radius);
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 240px;
    box-shadow: var(--shadow);
  }

  .nav.open{ display: flex; }

  .two-col{ grid-template-columns: 1fr; }
  .info-grid{ grid-template-columns: 1fr; }

  .hero-inner{
    padding: 90px 0 60px;
    text-align: center;
  }

  .hero-title-row{
    flex-direction: column;
    align-items: center;
  }

  .hero-logo{
    width: 105px;
    height: 105px;
  }

  .hero-actions,
  .location-line,
  .hero-chips{
    justify-content: center;
  }

  .hours{
    text-align: center;
  }

  .hours-row{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
  }

  .hours-left{ font-weight: 800; }
  .hours-right{ font-weight: 600; }

  .card{ text-align: center; }

  .contact-actions,
  .social-row,
  .social-cta{
    justify-content: center;
  }

  .list{
    text-align: left;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .address{
    text-align: center;
  }
}
@media (max-width: 900px){
  #restaurant + .section .media{
    display: none;
  }
}

@media (max-width: 520px){
  .hero-actions{
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn{
    width: 100%;
    max-width: 320px;
  }

  .contact-actions,
  .social-row,
  .social-cta{
    flex-direction: column;
    align-items: center;
  }

  .contact-actions .btn,
  .social-row .btn,
  .social-cta .btn{
    width: 100%;
    max-width: 320px;
  }
}
.event-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.event-item{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(20,20,20,0.10);
  color: var(--muted);
}

@media (max-width: 700px){
  .event-grid{
    grid-template-columns: 1fr;
  }

}
