/* -------------------------
   Grundlegendes: mobile-first
   ------------------------- */
:root{
  --green: #009246;
  --dark-green: #007232;
  --accent: #CE2B37;
 
  --card-radius: 12px;
  --container-width: 1100px;
  --max-content-width: 1100px;
}


*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* gesamte Höhe des Viewports */
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#222;
  line-height:1.4;
  background: linear-gradient(
    to right,

    /* links leicht grünlich */
    rgba(194, 214, 182, 0.50) 0%,
    rgba(216, 228, 204, 0.40) 20%,

    /* Mitte ganz hell / weißlich */
    rgba(255, 255, 255, 0.95) 40%,
    rgba(248, 242, 236, 0.65) 70%,

    /* rechts leicht rosa */
    rgba(236, 205, 195, 0.40) 90%,
    rgba(226, 180, 170, 0.55) 100%
  );
  
  background-attachment: fixed;
}
main {
  flex: 1; /* nimmt den verbleibenden Platz zwischen Header/Hero und Footer ein */
}

#logo {
  width: 100%;       /* nimmt 80% der Elternelement-Breite ein */
  max-width: 500px; /* maximal 300px groß */
  height: auto;     /* Höhe passt sich proportional an */
  display: block;
  margin: 0 auto;   /* zentriert auf der Seite */
}


/* Utility container */
.container{
  width:95%;
  max-width:var(--container-width);
  margin:0 auto;
}


.logo{
  display:block;
  height:48px;
  width:auto;
  object-fit:contain;
}


/* HERO */
.hero{
  position:relative;
  min-height:46vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2.2rem 0;
 
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.55) 60%);
  mix-blend-mode: multiply;
}
.hero-content{
  position:relative;
  text-align:center;
  max-width:90%;
  color:#fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.hero h1, .hero .accent { font-weight:700 }
.hero h1{
  font-size:2.2rem;
  color:#CE2B37;
  margin-bottom:0.4rem;
}
.hero .accent{ color:var(--accent) }
.hero-sub{
  margin-bottom:0.8rem;
  opacity:0.95;
  font-weight:500;
}

/* Buttons */
.btn{
  display:inline-block;
  background:var(--green);
  color:#fff;
  padding:0.6rem 1.1rem;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  margin:0 0.35rem;
}
.btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.6);
}
.btn:hover{background:var(--dark-green)}

/* Sections (Menu) */
.menu-section{
  padding:2rem 0;
}
.menu-section h2{
  color:var(--accent);
  font-size:1.6rem;
  margin-bottom:0.25rem;
  text-align:center;
}
.menu-section .section-sub{
  text-align:center;
  color:var(--accent);
  font-weight:600;
  margin-bottom:1rem;
}

/* Menu grid */
.menu-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:0.9rem;
  margin-top:1rem;
}

.menu-grid--cols{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.menu-item{
  background: #fff;
  border-radius: var(--card-radius);
  padding:0.9rem;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.menu-item-body h4{
  margin-bottom:0.35rem;
  font-size:1rem;
  color:var(--green);
}
.menu-item-body p{
  margin:0;
  font-size:0.92rem;
  color:#444;
  opacity:0.92;
}



.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}



.collapse-content {
  display: none;
}

.collapse-content.open {
  display: block;
}

.collapse-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.collapse-wrapper.open {
  max-height: none;
  padding-left: 10px;
  padding-right: 10px;
   padding-bottom: 10px;
}



/* price box */
.menu-price{
  font-weight:700;
  color:var(--accent);
  margin-left:0.5rem;
  min-width:72px;
  text-align: right;
  
}
.menu-price.small{ font-size:0.95rem; font-weight:500; }

/* Contact */
.contact{
  padding:2rem 0 3rem;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:1rem;
  margin-bottom:1rem;
  font-size:0.98rem;
}
.contact a{ color:var(--accent); text-decoration:none; font-weight:600; }
.contact a:hover{ text-decoration:underline; }

/* social */
.social-icon{ width:42px; height:42px; border-radius:8px; }

/* Map wrapper */
.map-wrapper{ margin-top:1rem; border-radius:10px; overflow:hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06) }

/* Footer */
.site-footer{
  background:var(--accent);
  color:#fff;
  padding:1.1rem 0;
  margin-top:2rem;
}
.site-footer a{ color:#fff; text-decoration:underline; }

/* Scroll top button */
#scrollTopBtn{
  position:fixed;
  right:18px;
  bottom:18px;
  background:var(--green);
  color:white;
  border:none;
  padding:15px 17px;
  border-radius:50%;
  display:none;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  font-size: 20px;
}

#scrollTopBtn img {
  width: 1.3rem;   /* flexibel nach Font-Size */
  height: 1.3rem;
  max-width: 40px; /* optional: maximale Größe */
  display: block;
  margin: 0 auto;
}


.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-item-body {
  text-align: center;
}

.menu-price {
  margin-top: 0.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent);
}

.menu-price-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--accent);
}


/* -------------------------
   Responsive: ab 768px
   ------------------------- */
@media (min-width: 600px){
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr 300px; align-items:start; }
  #logo {
    max-width: 400px;
  }
}

@media (min-width: 900px){
  .hero{ min-height:56vh; }
  .hero h1{ font-size:2.6rem; }
  .menu-grid{ grid-template-columns: repeat(3, 1fr); gap:1.2rem; }
  .container{ width:92%; max-width:var(--max-content-width); }
   #logo {
    max-width: 500px;
  }
}

/* Large desktop tweak */
@media (min-width: 1200px){
  .hero h1{ font-size:3rem; }
  .menu-grid{ gap:1.4rem; }
  .menu-item{ padding:1.1rem; }
  #logo {
    max-width: 600px;
  }
}
