/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  background: #111;
  color: #fff;
  scroll-behavior: smooth;
  line-height: 1.5;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === HEADER === */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1000;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo { height: 42px; width: auto; }

.nav-toggle {
  font-size: 26px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}
.main-nav a:hover { color: #e63946; }

/* === MOBILE NAV === */
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
  }
  .main-nav.open { display: flex; }
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1567188040759-fb8a883dc6cb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { font-size: 3rem; margin-bottom: 15px; }
.hero p  { font-size: 1.2rem; margin-bottom: 25px; }

.btn {
  padding: 12px 24px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 8px;
  transition: 0.25s;
}
.btn:hover { background: #b21f2d; }
.btn.ghost { background: transparent; border: 1px solid #fff; }

/* === SECTIONS === */
.section { padding: 90px 0; }
.section.dark {
  background: #000;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.section h2 { font-size: 2rem; text-align: center; margin-bottom: 40px; }

.lead { font-size: 1.2rem; margin-bottom: 20px; }
.muted { opacity: 0.6; font-size: 0.9rem; }

/* === MENU CARDS === */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.card {
  background: #181818;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #222;
  transition: 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: #e63946; }

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #222;
}
.price { color: #e63946; }

/* === FOOTER === */
.site-footer {
  padding: 25px;
  text-align: center;
  background: #000;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* === FORCE BLACK HEADER (sicherheitshalber) === */
.site-header{
  background:#000 !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  border-bottom:1px solid #222 !important;
}
@media (max-width:800px){
  .main-nav{ background:#000 !important; }
}

/* === BRAND TEXT STYLING (WANG + Unterzeile) === */
.brand-textwrap{ display:flex; flex-direction:column; line-height:1.05; }


/* Titel – Rot → Gold */
.site-header .brand-title{
  font-weight: 900;
  letter-spacing: .06em;
  background: linear-gradient(90deg, #C8102E 0%, #F4B000 55%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Unterzeile – Gold Verlauf */
.site-header .brand-sub{
  font-weight: 700;
  letter-spacing: .12em;
  background: linear-gradient(90deg, #F4B000 0%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .95;
}

/* Responsives Tuning */
@media (max-width: 900px){
  .brand-title{ font-size: 1.15rem; }
  .brand-sub{   font-size: 0.82rem; }
  .brand-logo{  height: 36px; }
}
@media (max-width: 700px){
  .brand-title{ font-size: 1.0rem; }
  .brand-sub{   font-size: 0.75rem; letter-spacing: .10em; }
  .brand-logo{  height: 30px; }
}

/* === Footer-Brand (größer) === */
.footer-brand{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.footer-title{
  font-weight: 900; letter-spacing:.08em; font-size: 2.7rem;
  background: linear-gradient(90deg, #C8102E 0%, #F4B000 55%, #FFD700 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent !important;
}
.footer-sub{
  font-weight:700; letter-spacing:.14em; font-size:1.3rem;
  background: linear-gradient(90deg, #F4B000 0%, #FFD700 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent !important; opacity:.95;
}
.footer-info{ font-size:1.1rem; }
.footer-hours p{ font-size:1.05rem; }
.footer-hours h3{ font-size:1.4rem; }

/* === Footer Links im WANG-Farbverlauf === */
.footer-info a{
  background: linear-gradient(90deg,#C8102E 0%,#F4B000 55%,#FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  font-weight: 600;
}
.footer-info a:hover { opacity: .75; }

/* === HEADER SIZE TUNING === */
.site-header .brand-logo{ height: 60px; width:auto; }
.site-header .brand-title{ font-size: 1.15rem; letter-spacing:.05em; }
.site-header .brand-sub{   font-size: 0.75rem; letter-spacing:.10em; }
@media (max-width:700px){
  .site-header .brand-logo{ height: 46px; }
  .site-header .brand-title{ font-size: 0.95rem; }
  .site-header .brand-sub{   font-size: 0.68rem; }
}

/* =========================================================
   LIGHT-SPLIT (SVG): oben Mitte teilt → Seiten runter → unten Mitte
   ========================================================= */
.menu-page .card{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #222 inset;
}

/* SVG Overlay vollflächig über dem Bild */
.split-glow{
  position:absolute; inset:0; width:100%; height:100%;
  pointer-events:none;
}

/* Lichtstreifen: konstant, länger, mit sanftem Glow */
.split-glow .left-run,
.split-glow .right-run{
  fill:none;
  stroke: rgba(255,215,0,.68);      /* eher Licht als „Vollgold“ */
  stroke-width: 1.4px;              /* dünn & edel */
  stroke-linecap: round;
  stroke-linejoin: round;
  /* zarter, breiter Glow durch gestackte Schatten */
  filter:
    drop-shadow(0 0 3px rgba(255,215,0,.35))
    drop-shadow(0 0 9px rgba(255,215,0,.18));
  shape-rendering: geometricPrecision;
  will-change: stroke-dashoffset;

  /* längerer sichtbarer Abschnitt (fühlt sich „lichtiger“ an) */
  stroke-dasharray: 180 820;        /* 180 sichtbar, 820 leer (bei pathLength=1000) */
  stroke-dashoffset: 1000;

  /* WICHTIG: konstante Geschwindigkeit, kein Stop-&-Go */
  animation: splitRun 8.2s linear infinite;
}

/* keine Verzögerung – beide bleiben synchron */
.split-glow .right-run{ animation-delay: 0s; }

@keyframes splitRun{
  to { stroke-dashoffset: 0; }
}

/* Barrierefreiheit beibehalten */
@media (prefers-reduced-motion: reduce){
  .split-glow .left-run,
  .split-glow .right-run{
    animation: none; stroke-dashoffset: 0;
  }
}

/* === ABOUT section (Icons + Grid) === */
.about-title{
  text-align:center;
  margin-bottom:10px;
  font-size:2rem;
  background: linear-gradient(90deg,#C8102E 0%,#F4B000 55%,#FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-lead{
  text-align:center;
  max-width:820px;
  margin:0 auto 36px;
  opacity:.85;
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr)); /* gleichmäßig verteilt */
  gap: 26px;
  justify-items: center; /* Icons und Text schön zentriert */
}

@media (max-width:1100px){
  .about-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:700px){
  .about-grid{ grid-template-columns: repeat(1, 1fr); }
}

.about-item{
  background:#0c0c0c;
  border:1px solid #1f1f1f;
  border-radius:14px;
  padding:18px 16px 16px;
  text-align:center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-item:hover{
  transform: translateY(-4px);
  border-color:#333;
  box-shadow:0 0 18px rgba(255,215,0,.10);
}

.about-icon{
  width:64px; height:64px;
  margin:0 auto 10px;
}
.about-icon svg{
  width:64px; height:64px; display:block;
}

.about-heading{
  margin:6px 0 8px;
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.02em;
  background: linear-gradient(90deg,#C8102E 0%,#F4B000 55%,#FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-item p{
  font-size:.98rem;
  opacity:.9;
}
