/* tasty must have – OnePager
   Modern, dark, with warm accent – inspired by premium streetfood sites
*/
:root{
  --bg:#0b0b0c;
  --bg2:#101114;
  --card:#14151a;
  --text:#f2f2f2;
  --muted:#b7b7b7;
  --accent:#f6b13b;
  --accent2:#ff3b3b;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:radial-gradient(1200px 700px at 50% -10%, rgba(246,177,59,.25), transparent 55%),
             radial-gradient(900px 500px at 10% 20%, rgba(255,59,59,.10), transparent 60%),
             var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

img{ max-width:100%; display:block; }

.container{
  width:min(1160px, calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(10,10,12,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  min-width: 220px;
}
.brand-logo{
  width:54px;
  height:54px;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}
.brand-name{
  font-family: Oswald, Impact, sans-serif;
  letter-spacing:.5px;
  text-transform:lowercase;
  font-size:22px;
  line-height:1.1;
}
.brand-tagline{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.site-nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  opacity:.92;
  position:relative;
  padding:10px 2px;
}
.site-nav a:hover{ opacity:1; }
.site-nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:4px;
  height:2px;
  background:linear-gradient(90deg, var(--accent), transparent);
  border-radius:999px;
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  margin:4px 0;
  border-radius:999px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--accent), #ffd07b);
  color:#121212;
  text-decoration:none;
  font-weight:700;
  border:0;
  cursor:pointer;
  box-shadow: 0 12px 30px rgba(246,177,59,.22);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn.ghost{
  background:transparent;
  border:1px solid rgba(246,177,59,.45);
  color:var(--text);
  box-shadow:none;
}
.btn.small{
  padding:10px 14px;
  border-radius:12px;
}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:flex-end;
  padding: 74px 0 58px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 65% 25%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.40));
}
.hero-content{
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-block;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(0,0,0,.25);
  color:var(--muted);
  font-weight:600;
  margin:0 0 12px;
}
.hero h1{
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(42px, 5.4vw, 68px);
  margin:0 0 10px;
  letter-spacing:.3px;
}
.accent{ color:var(--accent); }
.lead{
  max-width: 720px;
  color:rgba(255,255,255,.88);
  font-size: 18px;
  line-height:1.6;
  margin: 0 0 22px;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}
.hero-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.86);
  font-weight:600;
  font-size:13px;
}

/* Sections */
.section{
  padding: 74px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 55%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  display:grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap:22px;
  align-items:end;
  margin-bottom:28px;
}
.section h2{
  font-family: Oswald, Impact, sans-serif;
  font-size: 40px;
  letter-spacing:.4px;
  margin:0;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

/* Grids & Cards */
.grid{
  display:grid;
  gap:16px;
}
.grid.cards{
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.grid.two{
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
}
.card, .panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{
  margin:0 0 8px;
  font-size:18px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.card.highlight{
  border-color: rgba(246,177,59,.45);
  background: radial-gradient(600px 220px at 0% 0%, rgba(246,177,59,.18), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.link{
  display:inline-block;
  margin-top:12px;
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
}

.menu-download{
  margin-top:18px;
  border-radius: calc(var(--radius) + 4px);
  padding: 1px;
  background: linear-gradient(90deg, rgba(246,177,59,.6), rgba(255,255,255,.08));
}
.menu-download-inner{
  background: rgba(10,10,12,.65);
  border-radius: calc(var(--radius) + 4px);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(255,255,255,.08);
}

/* Catering panels */
.panel h3{ margin:0 0 10px; }
.checklist{
  margin:0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}
.checklist li{ margin:8px 0; }
.callout{
  margin-top:12px;
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
}
.cta-box{
  margin-top:14px;
  padding:14px;
  border-radius: 16px;
  background: radial-gradient(700px 240px at 0% 0%, rgba(255,59,59,.18), transparent 60%),
              rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.cta-title{
  margin:0 0 6px;
  font-weight:800;
}
.cta-sub{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.6;
}

/* Gallery */
.gallery{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item{
  grid-column: span 4;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.gallery-item.big{ grid-column: span 8; }
.gallery img{
  width:100%;
  height: 240px;
  object-fit: cover;
}
.gallery-item.big img{ height: 240px; }

/* Social */
.social-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.social-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  color:var(--text);
}
.social-card:hover{
  border-color: rgba(246,177,59,.35);
  transform: translateY(-1px);
}
.social-icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(246,177,59,.14);
  border:1px solid rgba(246,177,59,.22);
  font-weight:900;
}
.social-title{ font-weight:800; }
.social-sub{ color:var(--muted); font-size:14px; margin-top:2px; }
.social-arrow{ margin-left:auto; color:var(--accent); font-weight:900; }

.hint{
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.7;
}

/* Contact */
.contact-line{
  margin:10px 0;
  font-size:16px;
}
.contact-line span{ margin-right:8px; }
.contact-line a{ color: var(--text); text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.25); }
.contact-line a:hover{ border-bottom-color: rgba(246,177,59,.7); }

.contact-form label{
  display:block;
  font-size:13px;
  color: var(--muted);
  margin:10px 0;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(246,177,59,.55);
  box-shadow: 0 0 0 4px rgba(246,177,59,.12);
}
.mini{
  margin-top:14px;
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}

/* Footer */
.site-footer{
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.impressum-box{
  margin-top: 18px;
}
.impressum-box p{
  margin: 8px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color: var(--muted);
  font-size:14px;
}
.footer-links a{
  color: var(--muted);
  text-decoration:none;
  margin-left:14px;
}
.footer-links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .section-head{ grid-template-columns: 1fr; }
  .grid.cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-item{ grid-column: span 6; }
  .gallery-item.big{ grid-column: span 12; }
  .gallery img{ height: 220px; }
}
@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    position:fixed;
    top:72px;
    right:16px;
    left:16px;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border-radius: 18px;
    background: rgba(12,12,14,.92);
    border:1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition: .2s ease;
  }
  .site-nav.open{
    transform: translateY(0px);
    opacity:1;
    pointer-events:auto;
  }
  .site-nav a{ padding:12px 10px; border-radius: 12px; }
  .site-nav a:hover{ background: rgba(255,255,255,.05); }

  .hero{ padding-top: 68px; }
  .lead{ font-size: 16px; }
  .grid.two{ grid-template-columns: 1fr; }
  .social-cards{ grid-template-columns: 1fr; }
  .menu-download-inner{ flex-direction:column; align-items:flex-start; }
}
