/* styles.css | Déjà Vu Herrenberg */
:root{
  --bg: #0e0f17;
  --bg-2: #141622;
  --card: rgba(255,255,255,0.045);
  --text: #f2efe9;
  --muted: #a3a1ac;
  --border: rgba(255,255,255,0.12);

  --accent: #e8a33d;
  --accent2: #8f6a2e;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,0.45);
}

*{ 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(14,15,23,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s ease;
  transform: translateY(0);
}

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;
  color: var(--text);
  font-weight: 700;
}

.logo img{
  height: 30px;
  width: auto;
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a{
  color: var(--text);
  text-decoration: none;
  opacity: 0.75;
  font-size: 14px;
}

.nav a:hover{ opacity: 1; color: var(--accent); }

.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;
}

/* HINWEISBAND */
.band{
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 120;
  background: var(--accent);
  color: #14151f;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
}
.band.an{ display: block; }
.band{ line-height: 1.35; }


/* HERO */
.hero{
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #1c1f30 0%, #0e0f17 62%);
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(10,11,18,0.30), rgba(10,11,18,0.75));
}

.hero-inner{
  position: relative;
  z-index: 2;
  padding: 84px 0 64px;
}

.hero-title-row{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.hero-logo{
  width: clamp(260px, 34vw, 420px);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.6));
}

.hero h1{
  margin: 0;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero .lead{
  color: rgba(255,255,255,0.86);
  margin-top: 14px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* STATUS */
.status{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  background: rgba(0,0,0,0.28);
}
.status .punkt{
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; opacity: 0.6;
}
.status.offen{ color: #78dd9b; border-color: rgba(120,221,155,0.45); }
.status.offen .punkt{ opacity: 1; }
.status.hinweis{ color: var(--accent); border-color: rgba(232,163,61,0.5); }

.btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #14151f;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn:hover{ filter: brightness(1.08); }

.btn.ghost{
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn.ghost:hover{ border-color: var(--accent); color: var(--accent); }

.location-line{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.sep{ opacity: 0.6; }

.linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

/* Chips */
.hero-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip{
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* SECTIONS */
.section{
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.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(--accent);
  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 var(--border);
  box-shadow: var(--shadow);
}

/* CARDS */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.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.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}

.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 var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

/* KARTEN BANNER */
.menu-banner{
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  min-height: 240px;
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(232,163,61,0.22), transparent 60%),
    linear-gradient(160deg, #1a1d2c 0%, #0f111a 100%);
}

.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;
  color: var(--muted);
}

.menu-banner:hover{
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.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);
}

/* EVENTS */
.event-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.event-list > div{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* PARTNER */
.partner-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.partner-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,0.04);
}

.partner-card img{
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}

@media (max-width: 700px){
  .partner-grid{ grid-template-columns: 1fr; }
  .partner-card{ text-align: center; }
  .partner-card img{ margin-left: auto; margin-right: auto; }
}

/* 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(255,255,255,0.07);
}

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

.hours-left{
  color: var(--muted);
  font-weight: 700;
}

.hours-right{ color: var(--text); }

.hours-row.heute .hours-left,
.hours-row.heute .hours-right{ color: var(--accent); }

/* GETRÄNKEKARTE */
.karte-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.karte-nav a{
  font-size: 13px;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}
.karte-nav a:hover{ color: var(--accent); border-color: var(--accent); }

.preis-card{ margin-top: 16px; }

.preis-card h3{
  margin: 0 0 4px;
  font-size: 18px;
}

.preis-kopf,
.preis-row{
  display: grid;
  grid-template-columns: 1fr 92px 92px;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.preis-card.eine-groesse .preis-kopf,
.preis-card.eine-groesse .preis-row{
  grid-template-columns: 1fr 92px;
}

.preis-kopf{
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preis-kopf span + span{ text-align: right; }

.preis-row:last-child{ border-bottom: 0; }
.preis-row span + span{ text-align: right; color: var(--text); }
.preis-row .zusatz{ font-size: 11px; color: var(--muted); vertical-align: super; }

/* 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 var(--border);
}

/* FOOTER */
.footer{
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}

.footer-inner{ text-align: center; }

.footer a{
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover{ color: var(--accent); }

/* REVEAL */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

section[id]{ scroll-margin-top: 90px; }
body.band-an section[id]{ scroll-margin-top: 130px; }

/* MOBILE */
@media (max-width: 900px){
  .nav-toggle{ display: block; }

  .nav{
    display: none;
    position: absolute;
    right: 4%;
    top: 64px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    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; }
  .event-list{ grid-template-columns: 1fr; }

  .hero-inner{
    padding: 90px 0 60px;
    text-align: center;
  }

  .hero-title-row{
    align-items: center;
    gap: 18px;
  }

  .hero-logo{ width: min(260px, 74vw); }

  .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; }
  .preis-card{ text-align: left; }

  .contact-actions,
  .social-row,
  .social-cta{ justify-content: center; }

  .list{
    text-align: left;
    display: inline-block;
  }
}

@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;
  }

  .preis-kopf,
  .preis-row{ grid-template-columns: 1fr 74px 74px; font-size: 15px; }
  .preis-card.eine-groesse .preis-kopf,
  .preis-card.eine-groesse .preis-row{ grid-template-columns: 1fr 74px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; }
  *{ transition: none !important; }
}
