/* ============================================
   POMMES PAUL — Frittenbude
   Klassisch Pommes-rot + cremegelb
============================================ */

:root {
  --rot: #c8302a;
  --rot-dark: #9e2520;
  --rot-tief: #7a1d18;
  --creme: #fdf3d4;
  --creme-soft: #faead9;
  --gelb: #f4c33a;
  --gelb-warm: #e8a92b;
  --ink: #2a1a14;
  --ink-soft: #5a4036;
  --line: rgba(42, 26, 20, 0.15);
  --paper: #fffaf0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--rot);
  color: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAV ===== */
.topbar {
  background: var(--rot);
  padding: 24px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s, background 0.3s;
}
.topbar.scrolled {
  padding: 14px 32px;
  background: var(--rot-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 110;
}

/* ===== NEW NAVIGATION ===== */
.main-nav { display: flex; }

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--creme);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}

.nav-link:hover,
.nav-item.has-dropdown:hover .nav-link {
  background: rgba(253, 243, 212, 0.12);
}

.nav-arrow {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-badge {
  background: var(--gelb);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 900;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* CTA Button */
.nav-cta { margin-left: 8px; }

.nav-link-cta {
  display: inline-block;
  padding: 11px 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  background: var(--gelb);
  color: var(--ink);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--gelb);
}

.nav-link-cta:hover {
  background: var(--creme);
  border-color: var(--creme);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--creme);
  color: var(--ink);
  border-radius: 18px;
  padding: 16px;
  min-width: 480px;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.1),
    0 24px 60px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
  z-index: 105;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--creme);
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown.dropdown-small { min-width: 320px; }
.dropdown.dropdown-small .dropdown-grid { grid-template-columns: 1fr; }
.dropdown.dropdown-small { padding: 12px; }

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-link:hover {
  background: var(--rot);
  transform: translateX(3px);
}
.dropdown-link:hover .dd-text strong,
.dropdown-link:hover .dd-text em {
  color: var(--creme);
}

.dd-icon {
  font-size: 26px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rot);
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
}

.dropdown-link:hover .dd-icon {
  transform: rotate(-8deg) scale(1.1);
  background: var(--gelb);
}

.dd-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.dd-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.dd-text em {
  font-size: 11px;
  font-style: normal;
  color: var(--ink-soft);
  opacity: 0.75;
  transition: color 0.2s;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  flex-direction: column;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--creme);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand-icon {
  display: inline-block;
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover .brand-icon { transform: rotate(-15deg) scale(1.15); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--creme);
  font-size: 24px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: var(--rot);
  padding: 80px 32px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
  display: inline-block;
}

.hero h1 .frietje-im-wort {
  display: inline-block;
  position: relative;
  color: var(--gelb);
}

.hero h1 .frietje-im-wort::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -16px;
  width: 14px;
  height: 32px;
  background: var(--gelb);
  border-radius: 3px;
  transform: rotate(15deg);
  box-shadow: 4px 0 0 -2px var(--gelb-warm);
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 480px;
  margin: 28px auto 36px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  background: var(--creme);
  color: var(--rot);
  border: 2px solid var(--creme);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--gelb);
  color: var(--ink);
  border-color: var(--gelb);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.btn.ghost {
  background: transparent;
  color: var(--creme);
}
.btn.ghost:hover {
  background: var(--creme);
  color: var(--rot);
  border-color: var(--creme);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

/* Pommes doodles floating */
.fry-doodle {
  position: absolute;
  font-size: 60px;
  opacity: 0.5;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.fry-1 { top: 8%; left: 6%; transform: rotate(-25deg); animation: floaty 5s ease-in-out infinite; }
.fry-2 { top: 14%; right: 8%; transform: rotate(20deg); animation: floaty 6s ease-in-out infinite reverse; }
.fry-3 { bottom: 18%; left: 12%; transform: rotate(40deg); animation: floaty 4.5s ease-in-out infinite; }
.fry-4 { bottom: 12%; right: 10%; transform: rotate(-15deg); animation: floaty 5.5s ease-in-out infinite reverse; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--rot-tief);
  color: var(--creme);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid rgba(253, 243, 212, 0.15);
  border-bottom: 2px solid rgba(253, 243, 212, 0.15);
}
.marquee-track {
  display: flex;
  gap: 50px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 50px;
}
.marquee-track .sep { color: var(--gelb); font-size: 22px; }
.marquee:hover .marquee-track { animation-duration: 12s; }
.marquee-track { transition: animation-duration 0.3s ease; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABSCHNITTE GENERELL ===== */
section { padding: 90px 32px; position: relative; }
.container { max-width: 1100px; margin: 0 auto; }

/* ===== POLAROIDS (Über uns) ===== */
.intro {
  background: var(--rot);
  padding-bottom: 60px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.polaroid-stack {
  position: relative;
  height: 380px;
}

.polaroid {
  position: absolute;
  background: var(--paper);
  padding: 16px 16px 50px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--ink);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.polaroid::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px;
  height: 26px;
  background: rgba(244, 195, 58, 0.7);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.polaroid-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--creme-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

.polaroid-photo .placeholder-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rot);
  opacity: 0.5;
  text-align: center;
  padding: 8px;
}

.polaroid-1 {
  top: 0;
  left: 0;
  width: 260px;
  transform: rotate(-6deg);
  z-index: 1;
}
.polaroid-2 {
  top: 40px;
  right: 0;
  width: 240px;
  transform: rotate(5deg);
  z-index: 2;
}

.polaroid-stack:hover .polaroid-1 { transform: rotate(-8deg) translateY(-6px); }
.polaroid-stack:hover .polaroid-2 { transform: rotate(7deg) translateY(-6px); }

.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.intro-text h2 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gelb);
}

.intro-text p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 14px;
  max-width: 460px;
}

.intro-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  border-left: 3px solid var(--gelb);
  padding-left: 20px;
  margin-top: 24px;
  max-width: 460px;
  line-height: 1.5;
}

.intro-quote cite {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--gelb);
  margin-top: 8px;
  font-style: normal;
}

/* ===== REASONS-SECTION (3-Photo-Strip) ===== */
.reasons {
  background: var(--rot);
  text-align: center;
}

.reasons h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.15;
}
.reasons h2 .italic {
  font-style: italic;
  color: var(--gelb);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--gelb);
  text-underline-offset: 8px;
}

.reasons-sub {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  max-width: 540px;
  margin: 0 auto 60px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-tile {
  aspect-ratio: 3/4;
  background: var(--rot-tief);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-tile:hover { transform: translateY(-8px) scale(1.02); }

.photo-tile-1 { transform: rotate(-2deg); }
.photo-tile-3 { transform: rotate(2deg); }
.photo-tile-1:hover { transform: rotate(-2deg) translateY(-8px) scale(1.02); }
.photo-tile-3:hover { transform: rotate(2deg) translateY(-8px) scale(1.02); }

.photo-tile .placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.5;
  text-align: center;
  padding: 16px;
}

/* ===== MENU (Speisekarte) ===== */
.menu {
  background: var(--creme);
  color: var(--ink);
  border-radius: 24px 24px 0 0;
  margin-top: 40px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  border-bottom: 2px dashed var(--rot);
  margin-bottom: 50px;
}

.menu-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--rot);
  line-height: 1;
}

.menu-header .fry-decoration {
  font-size: 36px;
  transform: rotate(15deg);
}

/* Snack van de maand box */
.special-box {
  background: var(--rot);
  color: var(--creme);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
}

.special-box::before {
  content: 'NEU';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gelb);
  color: var(--ink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 999px;
}

.special-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.special-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.special-box p {
  font-size: 14px;
  opacity: 0.9;
  max-width: 500px;
}

.special-box .badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  background: var(--gelb);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
}

/* Menu columns */
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
}

.menu-cat-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: var(--rot);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr auto;
  gap: 4px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dotted var(--line);
  transition: padding-left 0.2s ease, color 0.2s ease;
}

.menu-list li:hover {
  padding-left: 6px;
  color: var(--rot);
}

.menu-list li .name {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 12px;
}

.menu-list li .tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1px;
  background: var(--rot);
  color: var(--creme);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.menu-list li .dots {
  border-bottom: 1px dotted var(--ink-soft);
  opacity: 0.4;
  align-self: end;
  margin-bottom: 4px;
}

.menu-list li .price {
  font-weight: 700;
  color: var(--rot);
  font-variant-numeric: tabular-nums;
}

/* ===== QUOTE-SECTION ("Onze therapie") ===== */
.quote-section {
  background: var(--rot);
  text-align: center;
  padding: 100px 32px;
}

.quote-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.1;
}

.quote-section h2 .italic {
  font-style: italic;
  color: var(--gelb);
}

.quote-side-photos {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 60px auto 0;
}

.quote-side-photos .side-photo {
  aspect-ratio: 3/4;
  background: var(--rot-tief);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.quote-side-photos .side-photo-left { transform: rotate(-3deg); }
.quote-side-photos .side-photo-right { transform: rotate(3deg); }

.quote-side-photos .side-photo .placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  padding: 16px;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--creme);
  color: var(--ink);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header .fry-decoration {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.reviews-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--rot);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.review-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.review-card:nth-child(odd) { transform: rotate(-1deg); }
.review-card:nth-child(even) { transform: rotate(1deg); }

.review-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.review-stars {
  color: var(--gelb-warm);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--rot);
}

/* ===== SNACK-DES-MONATS-DETAIL ===== */
.special-detail {
  background: var(--creme);
  color: var(--ink);
  padding: 80px 32px 100px;
}

.special-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.special-detail-text {
  text-align: left;
}

.special-detail-text .badge-small {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  background: var(--rot);
  color: var(--creme);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.special-detail-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--rot);
  margin-bottom: 8px;
}

.special-detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--rot);
  margin-bottom: 16px;
  line-height: 1.1;
}

.special-detail-text p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.special-detail-photo {
  aspect-ratio: 1/1;
  background: var(--rot);
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.special-detail-photo:hover { transform: rotate(0) scale(1.02); }

.special-detail-photo .placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creme);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  padding: 16px;
  text-align: center;
}

/* ===== TRADITIONS-BAND ===== */
.tradition {
  background: var(--rot);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tradition::before, .tradition::after {
  content: '🍟';
  position: absolute;
  font-size: 80px;
  opacity: 0.15;
  pointer-events: none;
}
.tradition::before { top: 20%; left: 8%; transform: rotate(-20deg); }
.tradition::after { bottom: 20%; right: 8%; transform: rotate(20deg); }

.tradition h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 900;
  max-width: 900px;
  margin: 0 auto 28px;
  line-height: 1.15;
}
.tradition h2 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gelb);
}

/* ===== FOOTER / KOM TER PLATSE ===== */
.footer-info {
  background: var(--creme);
  color: var(--ink);
  padding: 80px 32px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px dashed var(--rot);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--rot);
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  display: block;
}
.footer-col a:hover { color: var(--rot); }

.hours-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}
.hours-table td {
  padding: 4px 0;
  color: var(--ink-soft);
}
.hours-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.kom-ter-platse {
  text-align: center;
  padding: 60px 0 20px;
}

.kom-ter-platse h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 12vw, 180px);
  font-weight: 900;
  color: var(--rot);
  line-height: 0.95;
  letter-spacing: -2px;
}

.kom-ter-platse h2 .italic {
  font-style: italic;
  font-weight: 400;
}

.footer-copyright {
  background: var(--rot);
  color: var(--creme);
  padding: 20px 32px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.footer-copyright a { text-decoration: underline; opacity: 0.85; }

/* ===== AI Notice ===== */
.ai-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--ink);
  color: var(--creme);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.ai-notice .close {
  cursor: pointer;
  font-size: 14px;
  opacity: 0.7;
  background: none;
  border: none;
  color: inherit;
  padding: 0 0 0 4px;
}
.ai-notice .close:hover { opacity: 1; }

/* ===== AUDIO PLAYER ===== */
.audio-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  background: var(--rot);
  color: var(--creme);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: 2px solid var(--creme);
}

.audio-player:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.audio-player.playing {
  background: var(--gelb);
  color: var(--ink);
  border-color: var(--ink);
}

.audio-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--creme);
  color: var(--rot);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
}

.audio-player.playing .audio-btn {
  background: var(--ink);
  color: var(--gelb);
}

.audio-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 0 18px 0 12px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
}

.audio-player:hover .audio-label,
.audio-player.playing .audio-label {
  max-width: 200px;
  opacity: 1;
}

.audio-player.playing .audio-label::before {
  content: '♪ ';
  animation: noteBounce 0.8s ease-in-out infinite;
  display: inline-block;
}

@keyframes noteBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.audio-player.playing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--gelb);
  opacity: 0;
  animation: pulseRing 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== MASKOTTCHEN SECTION ===== */
.maskottchen-section {
  background: linear-gradient(180deg, var(--rot) 0%, var(--rot-tief) 100%);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}

.maskottchen-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244, 195, 58, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(253, 243, 212, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.maskottchen-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.maskottchen-text .overline {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gelb);
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(244, 195, 58, 0.15);
  border-radius: 999px;
}

.maskottchen-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.maskottchen-text h2 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gelb);
}

.maskottchen-text p {
  font-size: 17px;
  max-width: 380px;
  margin-bottom: 24px;
  opacity: 0.92;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--creme);
  color: var(--rot-tief);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  border-radius: 999px;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.badge-tag:hover {
  transform: translateY(-4px) rotate(-2deg) scale(1.08);
  background: var(--gelb);
}

.maskottchen-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  transform: rotate(-1deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.maskottchen-visual:hover {
  transform: rotate(0) scale(1.02);
}

.maskottchen-svg-img,
.maskottchen-img {
  width: 100%;
  display: block;
  animation: maskottchenBob 4s ease-in-out infinite;
}

@keyframes maskottchenBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-emoji {
  position: absolute;
  font-size: 32px;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.float-1 { top: 8%; left: 6%; animation: floatBig 4s ease-in-out infinite; }
.float-2 { top: 15%; right: 10%; animation: floatBig 5s ease-in-out infinite reverse; font-size: 38px; }
.float-3 { bottom: 18%; left: 10%; animation: floatBig 4.5s ease-in-out infinite; font-size: 28px; }
.float-4 { bottom: 12%; right: 8%; animation: floatBig 5.5s ease-in-out infinite reverse; font-size: 36px; }

@keyframes floatBig {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(8deg); }
  66% { transform: translateY(-6px) rotate(-5deg); }
}

/* ===== HERO STICKER (Keyvisual-Burger) ===== */
.hero-sticker {
  position: absolute;
  top: 80px;
  right: -40px;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--creme);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 3;
  transform: rotate(8deg);
  animation: stickerWobble 8s ease-in-out infinite;
  transition: transform 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
}

.hero-sticker:hover {
  transform: rotate(0deg) scale(1.08);
  animation-play-state: paused;
}

@keyframes stickerWobble {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  25% { transform: rotate(12deg) translateY(-6px); }
  50% { transform: rotate(6deg) translateY(0); }
  75% { transform: rotate(10deg) translateY(-4px); }
}

/* Hero: place stuff in front */
.hero h1, .hero .hero-sub, .hero .hero-ctas { position: relative; z-index: 4; }
.hero { position: relative; }


/* ===== MOBILE ===== */
@media (max-width: 980px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--rot-tief);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
    z-index: 105;
    overflow-y: auto;
    display: flex;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 420px;
  }

  .nav-item { width: 100%; }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 700;
    border-radius: 14px;
  }

  .nav-link:hover { background: var(--rot); }

  /* On mobile: dropdowns become accordion below the link */
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 8px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .dropdown::after, .dropdown::before { display: none; }

  .nav-item.has-dropdown.open .dropdown {
    max-height: 700px;
  }

  .nav-item.has-dropdown.open .nav-arrow {
    transform: rotate(180deg);
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .dropdown-link {
    background: rgba(253, 243, 212, 0.08);
    color: var(--creme);
  }
  .dropdown-link:hover { background: var(--rot); }
  .dd-text strong { color: var(--creme); }
  .dd-text em { color: var(--creme); opacity: 0.7; }

  .nav-cta { margin-top: 16px; margin-left: 0; }
  .nav-link-cta {
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 18px;
  }

  .intro-grid, .menu-cols, .reviews-grid,
  .special-detail-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .polaroid-stack { height: auto; padding: 40px 0; min-height: 360px; }

  .photo-strip { grid-template-columns: 1fr; gap: 24px; }
  .photo-tile { aspect-ratio: 4/3; }

  .quote-side-photos { grid-template-columns: 1fr; }
  .quote-side-photos .side-photo { aspect-ratio: 4/3; }

  .special-box { grid-template-columns: 1fr; text-align: center; }
  .menu-list li { font-size: 13px; }

  section { padding: 70px 24px; }

  /* New elements mobile */
  .maskottchen-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .maskottchen-text p { margin-left: auto; margin-right: auto; }
  .badges { justify-content: center; }
  .float-emoji { font-size: 24px !important; }

  .hero-sticker {
    width: 160px;
    height: 160px;
    top: auto;
    bottom: 20px;
    right: -20px;
    border-width: 4px;
  }

  /* Hero title: smaller, doesn't overlap with sticker */
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero { padding-bottom: 200px; }
}

@media (max-width: 480px) {
  .hero-sticker {
    width: 130px;
    height: 130px;
    right: -25px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
