@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=IM+Fell+English:ital@0;1&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a3a2a;
  --green-dark: #0f2218;
  --green-mid: #254d38;
  --brown: #5c3d1e;
  --brown-light: #7a5230;
  --cream: #f5eed8;
  --cream-dark: #e8dfc0;
  --gold: #c8982a;
  --gold-light: #e0b84a;
  --charcoal: #1c1a18;
  --text: #2e2520;
  --text-mid: #5a4e40;
  --text-light: #8a7a68;
  --white: #fdfaf4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ——— SCROLL REVEAL ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,152,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,238,216,0.4);
}
.btn-outline:hover {
  background: rgba(245,238,216,0.08);
  border-color: var(--cream);
}

/* ——— NAV ——— */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(15, 34, 24, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,238,216,0.5);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,238,216,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.55rem 1.3rem;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--charcoal) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 22, 16, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'IM Fell English', serif;
  font-size: 1.6rem;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(92deg, transparent, transparent 2px, rgba(92,61,30,0.04) 2px, rgba(92,61,30,0.04) 3px),
    repeating-linear-gradient(180deg, transparent, transparent 60px, rgba(0,0,0,0.08) 60px, rgba(0,0,0,0.08) 61px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,22,16,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.candle-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,152,42,0.12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}

.stag-wrap {
  margin: 0 auto 2rem;
  width: 180px; /* Increased size */
  max-width: 100%; /* Ensure responsiveness */
  height: auto; /* Maintain aspect ratio */
  opacity: 0.85;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 60px rgba(200,152,42,0.3);
}

.hero-sub {
  font-family: 'IM Fell English', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(245,238,216,0.65);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-loc {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,238,216,0.35);
  margin-bottom: 3rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.candles {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 0 8%; pointer-events: none; z-index: 1;
}
.candle { display: flex; flex-direction: column; align-items: center; }
.candle-flame {
  width: 8px; height: 14px;
  background: radial-gradient(ellipse at bottom, #fff 0%, var(--gold) 40%, rgba(200,100,0,0.3) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: candleFlicker 2s ease-in-out infinite;
  filter: blur(0.5px);
  box-shadow: 0 0 8px 3px rgba(200,152,42,0.4), 0 0 20px 6px rgba(200,100,0,0.2);
}
@keyframes candleFlicker {
  0%, 100% { transform: scaleX(1) scaleY(1) translateX(0); opacity: 1; }
  20% { transform: scaleX(0.85) scaleY(1.1) translateX(1px); opacity: 0.95; }
  40% { transform: scaleX(1.1) scaleY(0.95) translateX(-1px); opacity: 0.9; }
  60% { transform: scaleX(0.9) scaleY(1.05) translateX(0.5px); opacity: 1; }
  80% { transform: scaleX(1.05) scaleY(0.92) translateX(-0.5px); opacity: 0.95; }
}
.candle-body {
  width: 10px; height: 60px;
  background: linear-gradient(to bottom, #e8dfc0, #c8b88a);
  border-radius: 2px; box-shadow: inset -2px 0 4px rgba(0,0,0,0.2);
}

.scroll-hint {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2; color: rgba(245,238,216,0.3);
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ——— MARQUEE ——— */
.animate-marquee-slow {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— SECTION COMMON ——— */
.section-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ornament {
  display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0;
}
.ornament-line {
  flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold));
}
.ornament-line.rev { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament-diamond {
  width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0;
}

/* ——— KONZEPT ——— */
.konzept { padding: 8rem 2rem; background: var(--cream); }
.konzept-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.konzept-header h2 { font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--green); line-height: 1.2; }
.konzept-header p { color: var(--text-mid); font-weight: 300; line-height: 1.8; margin-top: 1rem; font-size: 0.97rem; }
.konzept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.konzept-card {
  background: var(--white); border: 1px solid rgba(92,61,30,0.12);
  padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.konzept-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--brown), var(--gold));
}
.konzept-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(92,61,30,0.12); }
.konzept-icon {
  width: 64px; height: 64px; background: rgba(26,58,42,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.konzept-card h3 { font-family: 'IM Fell English', serif; font-size: 1.3rem; color: var(--green); margin-bottom: 0.8rem; }
.konzept-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

/* ——— SPEISEKARTE ——— */
.speisekarte { padding: 8rem 2rem; background: var(--charcoal); position: relative; overflow: hidden; }
.speisekarte::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(94deg, transparent, transparent 3px, rgba(92,61,30,0.05) 3px, rgba(92,61,30,0.05) 4px),
    repeating-linear-gradient(180deg, transparent, transparent 80px, rgba(0,0,0,0.06) 80px, rgba(0,0,0,0.06) 81px);
  pointer-events: none;
}
.speisekarte-inner { position: relative; z-index: 1; }
.speisekarte-header { text-align: center; margin-bottom: 4rem; }
.speisekarte-header h2 { font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(2.2rem, 5vw, 4rem); color: var(--cream); }
.speisekarte-header p { color: rgba(245,238,216,0.45); font-family: 'IM Fell English', serif; font-style: italic; font-size: 0.95rem; margin-top: 0.8rem; }
.menu-card {
  background: var(--cream); max-width: 820px; margin: 0 auto; padding: 4rem 3.5rem;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 80px rgba(200,152,42,0.04);
}
.menu-card::before, .menu-card::after { content: ''; position: absolute; width: 40px; height: 40px; border-color: var(--gold); border-style: solid; opacity: 0.4; }
.menu-card::before { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.menu-card::after  { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }
.menu-title { font-family: 'UnifrakturMaguntia', cursive; font-size: 2rem; color: var(--green); text-align: center; margin-bottom: 0.3rem; }
.menu-subtitle { text-align: center; font-family: 'IM Fell English', serif; font-size: 0.85rem; font-style: italic; color: var(--text-light); margin-bottom: 2.5rem; }
.menu-section { margin-bottom: 2.5rem; }
.menu-section-title { font-family: 'IM Fell English', serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brown); border-bottom: 1px solid rgba(92,61,30,0.2); padding-bottom: 0.5rem; margin-bottom: 1.2rem; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px dotted rgba(92,61,30,0.15); }
.menu-item-name { font-family: 'IM Fell English', serif; font-size: 1rem; color: var(--text); }
.menu-item-desc { font-size: 0.75rem; color: var(--text-light); font-weight: 300; display: block; margin-top: 1px; }
.menu-item-price { font-family: 'IM Fell English', serif; font-size: 1rem; color: var(--brown); white-space: nowrap; font-weight: 700; }
.menu-special { background: rgba(26,58,42,0.06); border: 1px solid rgba(26,58,42,0.12); border-left: 3px solid var(--green); padding: 1rem 1.5rem; margin-top: 2rem; }
.menu-special-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.menu-special-text { font-family: 'IM Fell English', serif; font-size: 0.95rem; color: var(--text); }
.menu-beer { text-align: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(92,61,30,0.15); font-family: 'IM Fell English', serif; font-style: italic; color: var(--text-mid); font-size: 0.95rem; }

/* ——— GALERIE MOVING ——— */
.galerie-moving { background: var(--charcoal); padding: 6rem 0; }

/* ——— ÖFFNUNGSZEITEN ——— */
.oeffnungszeiten { padding: 8rem 2rem; background: var(--green-dark); position: relative; }
.oz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.oz-header { margin-bottom: 3rem; }
.oz-header h2 { font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); line-height: 1.2; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(245,238,216,0.07); }
.hours-table td { padding: 0.9rem 0; font-size: 0.9rem; color: rgba(245,238,216,0.6); font-weight: 300; }
.hours-table td:first-child { font-weight: 700; color: rgba(245,238,216,0.85); width: 40%; }
.hours-table .closed { color: rgba(245,238,216,0.25); font-style: italic; }
.reservation-card { background: rgba(200,152,42,0.1); border: 1px solid rgba(200,152,42,0.25); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.reservation-card h3 { font-family: 'IM Fell English', serif; font-size: 1.4rem; color: var(--cream); }
.reservation-card p { font-size: 0.88rem; color: rgba(245,238,216,0.55); font-weight: 300; line-height: 1.8; }
.reservation-card .phone-big { font-family: 'Lato', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }

/* ——— ANFAHRT ——— */
.anfahrt { padding: 8rem 2rem; background: var(--cream-dark); }
.anfahrt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.anfahrt h2 { font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: 2rem; line-height: 1.2; }
.anfahrt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.anfahrt-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.anfahrt-icon { width: 44px; height: 44px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.anfahrt-item-text strong { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.3rem; }
.anfahrt-item-text span { font-size: 0.92rem; color: var(--text); line-height: 1.6; }
.anfahrt-item-text a { color: var(--brown); font-weight: 700; }
.map-frame { background: var(--white); border: 1.5px solid rgba(92,61,30,0.15); padding: 1.5rem; }
.map-visual { background: linear-gradient(135deg, #2d4a38 0%, #1a3a2a 100%); height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; position: relative; overflow: hidden; }
.map-pin-label { font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(245,238,216,0.6); text-transform: uppercase; z-index: 1; }
.map-address { font-family: 'IM Fell English', serif; font-size: 1.1rem; color: var(--cream); text-align: center; z-index: 1; }
.map-link-btn { display: block; text-align: center; padding: 0.8rem; background: var(--green); color: var(--cream); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.2s; }

/* ——— ÜBER UNS (ABOUT) ——— */
.about { padding: 8rem 2rem; background: var(--green); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(94deg, transparent, transparent 3px, rgba(92,61,30,0.03) 3px, rgba(92,61,30,0.03) 4px); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.about-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.about-card { background: rgba(245,238,216,0.05); border: 1px solid rgba(200,152,42,0.2); padding: 2.5rem; text-align: center; }
.about-card .since { font-family: 'UnifrakturMaguntia', cursive; font-size: 4rem; color: var(--gold); line-height: 1; display: block; }
.about-card .since-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,238,216,0.4); font-weight: 700; display: block; margin-top: 0.4rem; }
.about-quote { background: rgba(92,61,30,0.3); border-left: 3px solid var(--gold); padding: 1.5rem 2rem; font-family: 'IM Fell English', serif; font-size: 1.05rem; font-style: italic; color: rgba(245,238,216,0.75); line-height: 1.7; }
.about h2 { font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--cream); line-height: 1.2; margin-bottom: 1.5rem; }
.about p { color: rgba(245,238,216,0.6); font-weight: 300; line-height: 1.9; font-size: 0.97rem; margin-bottom: 1.2rem; }
.haesch-badge { display: inline-block; background: rgba(200,152,42,0.15); border: 1px solid rgba(200,152,42,0.3); padding: 0.5rem 1.2rem; font-family: 'IM Fell English', serif; font-size: 1rem; font-style: italic; color: var(--gold); margin-bottom: 1.5rem; }

/* ——— FOOTER ——— */
footer { background: var(--charcoal); color: rgba(245,238,216,0.4); padding: 5rem 2rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,238,216,0.07); }
.footer-brand .logo-big { font-family: 'UnifrakturMaguntia', cursive; font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 0.2rem; }
.footer-brand .logo-sub { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,238,216,0.25); display: block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; font-weight: 300; max-width: 280px; margin-bottom: 1.5rem; }
.footer-tel { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 700; color: var(--gold); font-family: 'Lato', sans-serif; letter-spacing: 0.03em; }
.footer-col h4 { font-family: 'IM Fell English', serif; font-size: 0.85rem; letter-spacing: 0.05em; color: rgba(245,238,216,0.7); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li, .footer-col a { font-size: 0.82rem; font-weight: 300; color: rgba(245,238,216,0.35); line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; flex-wrap: wrap; gap: 0.5rem; }

/* ——— MARQUEE ——— */
.gallery-small-card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.gallery-small-card img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  grayscale: 100%;
  transition: all 0.6s ease;
}
.gallery-small-card:hover img {
  grayscale: 0%;
  transform: scale(1.05);
}

.animate-marquee-forward {
  display: flex;
  width: max-content;
  animation: marquee-f 40s linear infinite;
}
.animate-marquee-reverse {
  display: flex;
  width: max-content;
  animation: marquee-r 50s linear infinite;
}
.animate-marquee-forward-slow {
  display: flex;
  width: max-content;
  animation: marquee-f 70s linear infinite;
}

@keyframes marquee-f {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-r {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 800px) {
  .konzept-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .oz-grid { grid-template-columns: 1fr; }
  .anfahrt-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
