@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bricolage+Grotesque:wght@700;800&family=Bungee&family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;1,400&display=swap');

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

:root {
  --rot:   #E6362B;
  --gruen: #138A5A;
  --gelb:  #FFC23C;
  --blau:  #3DAEDC;
  --text:  #16241F;
  --bg:    #FAFAF5;
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

html {
  scroll-behavior: smooth;
}

/* ─── Anker-Versatz: Section-Farbkante bündig unter der fixen Nav ───
   Markise 10px + Nav ~59px = ~69px; +1px Sub-Pixel-Puffer = 70px */
#ueber,
#automat,
#sortiment,
#rezensionen,
#oeffnungszeiten,
#anfahrt {
  scroll-margin-top: 70px;
}

/* ─── Header / Markise ─── */

.kiosk-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.markise {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--rot)  0px,
    var(--rot)  12px,
    #ffffff     12px,
    #ffffff     24px
  );
}

nav {
  background: #fff;
  border-bottom: 1px solid #e4e4e0;
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--rot);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.9rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 0.9rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.18s;
}

nav ul a:hover {
  color: var(--rot);
}

/* ─── Sektionen Grundlage ─── */

section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.h2-linie {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}

/* ─── Hero ─── */

#start {
  background: #ffffff;
  padding: 5rem 1.5rem 6rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-seit {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rot);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.hero-text h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 0.92;
  margin-bottom: 1.8rem;
}

.hero-beschreibung {
  font-size: 1.05rem;
  color: #445040;
  line-height: 1.72;
  max-width: 390px;
}

/* Foto + Störer */

.hero-foto-wrap {
  position: relative;
}

.hero-foto {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f0ebe5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 7px 8px 0 var(--text);
}

.hero-foto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Störer – Aufkleber */
.stoerer {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  box-shadow: 3px 4px 14px rgba(0,0,0,0.22);
}

.stoerer-kaffee {
  background: var(--rot);
  color: #fff;
  bottom: -22px;
  left: -24px;
  transform: rotate(-9deg);
}

.stoerer-kaffee .preis {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  margin-top: 0.15rem;
}

.stoerer-automat {
  background: var(--gruen);
  color: #fff;
  top: -22px;
  right: -20px;
  transform: rotate(7deg);
  font-size: 0.73rem;
}

/* ─── Über uns ─── */

#ueber {
  background: #EDFAF3;
}

#ueber h2           { color: var(--text); }
#ueber .h2-linie    { background: var(--gruen); }

.ueber-intro {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 2rem;
  color: #334437;
  line-height: 1.7;
}

.ueber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.ueber-card {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--gruen);
  padding: 1.3rem 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ueber-card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: block;
}

.ueber-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.ueber-card p {
  font-size: 0.88rem;
  color: #55665a;
  line-height: 1.55;
}

/* ─── 24/7-Automat ─── */

#automat {
  background: #E8F5FF;
  padding: 3rem 1.5rem 2.5rem;
}

#automat h2        { color: var(--text); }
#automat .h2-linie { background: var(--blau); }

.automat-layout {
  display: grid;
  grid-template-columns: minmax(180px, 310px) 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}

.automat-text {
  align-self: center;
}

.automat-foto {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 5px 6px 0 var(--text);
  display: block;
}

.automat-text p {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text);
  max-width: 44ch;
}

.badge-247 {
  display: inline-block;
  margin-top: 1.6rem;
  background: var(--blau);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
}

/* ── Neon-Schriftzüge (waagerechte Reihe unter dem Layout) ── */

.neon-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem 2rem;
  margin-bottom: 1.2rem;
}

.neon-snacks,
.neon-drinks,
.neon-vapes {
  font-family: 'Bungee', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.neon-snacks {
  color: #00cc44;
  text-shadow:
    0 0 3px rgba(0,0,0,0.55),
    0 1px 5px rgba(0,0,0,0.3),
    0 0 6px #00cc44,
    0 0 15px #00cc44,
    0 0 30px #009933,
    0 0 60px #009933,
    0 0 100px rgba(0,153,51,0.35);
  animation: neonFlicker 5s ease-in-out infinite;
}

.neon-drinks {
  color: #00aaee;
  text-shadow:
    0 0 3px rgba(0,0,0,0.55),
    0 1px 5px rgba(0,0,0,0.3),
    0 0 6px #00aaee,
    0 0 15px #00aaee,
    0 0 30px #0077bb,
    0 0 60px #0077bb,
    0 0 100px rgba(0,119,187,0.35);
  animation: neonFlicker 5s ease-in-out 1.6s infinite;
}

.neon-vapes {
  color: #cc44ff;
  text-shadow:
    0 0 3px rgba(0,0,0,0.55),
    0 1px 5px rgba(0,0,0,0.3),
    0 0 6px #cc44ff,
    0 0 15px #cc44ff,
    0 0 30px #aa22dd,
    0 0 60px #aa22dd,
    0 0 100px rgba(170,34,221,0.35);
  animation: neonFlicker 5s ease-in-out 3.1s infinite;
}

@keyframes neonFlicker {
  0%, 85%, 90%, 95%, 100% { opacity: 1; }
  87%  { opacity: 0.82; }
  88%  { opacity: 0.96; }
  92%  { opacity: 0.88; }
  93%  { opacity: 1; }
}

/* ─── Sortiment ─── */

#sortiment {
  background: #FCEBEA;
}

#sortiment h2        { color: var(--text); }
#sortiment .h2-linie { background: var(--rot); }

.sortiment-intro {
  font-size: 1rem;
  color: #445040;
  margin-bottom: 2rem;
}

.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
}

.sortiment-item {
  background: #fff;
  border-radius: 10px;
  padding: 1.3rem 0.8rem 1.1rem;
  text-align: center;
  border-top: 5px solid var(--c, #ccc);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.22s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.22s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sortiment-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

.sortiment-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.sortiment-item .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.c-rot   { --c: var(--rot);   }
.c-gruen { --c: var(--gruen); }
.c-gelb  { --c: var(--gelb);  }
.c-blau  { --c: var(--blau);  }

/* Kaffee Sonder-Kachel */
.kaffee-kachel {
  background: var(--rot);
  border-top-color: rgba(0,0,0,0.15);
}

.kaffee-kachel .name {
  color: #fff;
}

.kaffee-preis {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: var(--rot);
  display: block;
  line-height: 1;
  margin-top: 0.3rem;
}

/* ─── Öffnungszeiten ─── */

#oeffnungszeiten {
  background: #ffffff;
}

#oeffnungszeiten h2        { color: var(--text); }
#oeffnungszeiten .h2-linie { background: var(--rot); }

.oz-tafel {
  background: var(--text);
  color: #fff;
  border-radius: 14px;
  padding: 2.5rem 2.8rem;
  max-width: 740px;
}

.oz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
}

.oz-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gelb);
  margin-bottom: 1rem;
}

.oz-zeile {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.93rem;
  gap: 1rem;
}

.oz-zeile:last-of-type {
  border-bottom: none;
}

.oz-zeile .tag {
  color: rgba(255,255,255,0.6);
}

.oz-zeile .zeit {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.oz-placeholder {
  color: rgba(255,255,255,0.3);
  font-style: italic;
  font-size: 0.8rem;
  margin-top: 0.8rem;
}

.oz-sommer-hinweis {
  margin-top: 1.6rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 194, 60, 0.12);
  border: 1px solid rgba(255, 194, 60, 0.45);
  border-radius: 8px;
  color: var(--gelb);
  font-size: 0.9rem;
  font-weight: 500;
}

.automat-tafel-zeile {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
}

.automat-badge {
  background: var(--gruen);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* ─── Anfahrt ─── */

#anfahrt {
  background: #EEF7FF;
}

#anfahrt h2        { color: var(--text); }
#anfahrt .h2-linie { background: var(--blau); }

.anfahrt-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.adresse-box {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.adresse-box .kiosk-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.9rem;
  display: block;
}

.adresse-box p {
  color: #445040;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.2rem;
}

.maps-btn {
  display: inline-block;
  margin-top: 1.3rem;
  background: var(--blau);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.maps-btn:hover {
  opacity: 0.85;
}

.karte-placeholder {
  background: #dce9f5;
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6a90a8;
  font-size: 0.9rem;
  border: 2px dashed #adc8dc;
  text-align: center;
  padding: 1.5rem;
  gap: 0.4rem;
}

/* ─── Aktiver Nav-Link ─── */

nav ul a.nav-aktiv {
  color: var(--rot);
  font-weight: 600;
}

/* ─── Rezensionen ─── */

#rezensionen {
  background: #FFF9E6;
}

#rezensionen h2        { color: var(--text); }
#rezensionen .h2-linie { background: var(--gelb); }

.rez-intro {
  font-size: 1rem;
  color: #778;
  margin-bottom: 2rem;
}

.rez-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.rez-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  border-top: 5px solid var(--gelb);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.rez-sterne {
  color: var(--gelb);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  display: block;
}

.rez-zitat {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 0 0 1.2rem;
  flex: 1;
}

.rez-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #666;
}

.rez-google-hinweis {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.rez-google-hinweis p {
  font-size: 0.93rem;
  color: #556;
  margin-bottom: 1.1rem;
}

.rez-google-btn {
  display: inline-block;
  background: #fff;
  color: var(--text);
  border: 2px solid var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.rez-google-btn:hover {
  background: var(--text);
  color: #fff;
}

/* ─── Kontakt ─── */

.kontakt-streifen {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 1.5rem 1.5rem;
  font-size: 1rem;
}

.tel-link {
  color: var(--gelb);
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.tel-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ─── Footer ─── */

footer {
  background: var(--gruen);
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 1.8rem 1.5rem;
  font-size: 0.85rem;
}

/* ─── Mobile ─── */

@media (max-width: 700px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-text h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .hero-foto-wrap {
    margin: 0 1.5rem;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .oz-tafel {
    padding: 1.8rem 1.4rem;
  }

  .sortiment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  nav ul a {
    padding: 0.75rem 0.5rem;
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════
   ANIMATIONEN
   ═══════════════════════════════════ */

/* ── Scroll-Fortschrittsleiste ──
   Farbe: var(--rot). Für andere Farbe hier ändern.
   Höhe: 3px. */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--rot);
  z-index: 500;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Hero-Eingang ──
   Delays: hero-seit 0.1 s → h1 0.28 s → beschreibung 0.5 s → störer 0.72/0.98 s
   Um alle Elemente zu verlangsamen: duration-Werte erhöhen. */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-seit          { animation: heroFadeUp 0.6s ease 0.10s both; }
.hero-text h1       { animation: heroFadeUp 0.75s cubic-bezier(0.2, 0.6, 0.3, 1) 0.28s both; }
.hero-beschreibung  { animation: heroFadeUp 0.6s ease 0.50s both; }

/* ── Störer-Eingang ── */
@keyframes stoererEnterKaffee {
  from { opacity: 0; transform: rotate(-9deg) translateY(18px); }
  to   { opacity: 1; transform: rotate(-9deg) translateY(0);    }
}
@keyframes stoererEnterAutomat {
  from { opacity: 0; transform: rotate(7deg) translateY(18px); }
  to   { opacity: 1; transform: rotate(7deg) translateY(0);    }
}

/* Sticker starten unsichtbar; .stoerer-sichtbar wird per JS beim ersten Scroll gesetzt */
.stoerer-kaffee {
  opacity: 0;
  transform: rotate(-9deg) translateY(18px);
}
.stoerer-automat {
  opacity: 0;
  transform: rotate(7deg) translateY(18px);
}

.stoerer-kaffee.stoerer-sichtbar {
  opacity: 1; /* dauerhaft sichtbar – bleibt erhalten wenn .floating die Animation ablöst */
  animation: stoererEnterKaffee 0.65s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.stoerer-automat.stoerer-sichtbar {
  opacity: 1;
  animation: stoererEnterAutomat 0.65s cubic-bezier(0.2, 0.8, 0.3, 1) 0.22s both;
}

/* ── Störer-Dauerschweben (Klasse per JS nach Eingang gesetzt) ──
   Amplitude: translateY-Wert anpassen (aktuell -7 px / -6 px = dezent).
   Geschwindigkeit: 2.8 s / 3.4 s. Mehr Sekunden = langsamer. */
@keyframes floatKaffee {
  from { transform: rotate(-9deg) translateY(0px);  }
  to   { transform: rotate(-9deg) translateY(-7px); }
}
@keyframes floatAutomat {
  from { transform: rotate(7deg) translateY(0px);  }
  to   { transform: rotate(7deg) translateY(-6px); }
}

.stoerer-kaffee.floating  { animation: floatKaffee  2.8s ease-in-out infinite alternate; }
.stoerer-automat.floating { animation: floatAutomat 3.4s ease-in-out infinite alternate; }

/* ── Scroll-Reveal ──
   Verschiebung: translateY(22px) – senken für weniger Bewegung.
   Dauer: 0.65 s / 0.55 s – für schnelleres Einblenden reduzieren. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gestaffelte Grid-Kinder ──
   Staffelabstand: alle 0.06 s. Für engere Staffelung auf 0.04 s senken. */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal-group.is-visible > *              { opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-group.is-visible > *:nth-child(7) { transition-delay: 0.40s; }
.reveal-group.is-visible > *:nth-child(8) { transition-delay: 0.46s; }
.reveal-group.is-visible > *:nth-child(9) { transition-delay: 0.52s; }

/* Maps-Button: leicht anheben beim Hover */
.maps-btn {
  transition: opacity 0.2s, transform 0.18s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.maps-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ── prefers-reduced-motion ──
   Wer im System Animationen reduziert hat, sieht alles sofort – keine Bewegung. */
@media (prefers-reduced-motion: reduce) {
  #scroll-progress { transition: none; }

  .hero-seit,
  .hero-text h1,
  .hero-beschreibung {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .stoerer-kaffee {
    animation: none !important;
    opacity: 1 !important;
    transform: rotate(-9deg) !important;
  }
  .stoerer-automat {
    animation: none !important;
    opacity: 1 !important;
    transform: rotate(7deg) !important;
  }
  .stoerer-kaffee.floating,
  .stoerer-automat.floating { animation: none !important; }

  .reveal,
  .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sortiment-item { transition: none !important; }
  .maps-btn       { transition: none !important; }

  .neon-snacks,
  .neon-drinks,
  .neon-vapes { animation: none !important; }
}

/* ─── Hero-Foto Platzhalter (gestaltete Box, kein SVG) ─── */

.hero-foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.platzhalter-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #8a7060;
}

.platzhalter-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: #a89080;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Sortiment: Bild-Platzhalter ───
   Einbinden echter Fotos: <img src="bilder/dateiname.jpg" alt="..." class="sort-foto"> statt <div class="sort-foto"> */

.sort-foto {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  object-fit: cover;
}

/* Platzhalter-Farbe je nach Kachel-Akzent */
.c-rot  .sort-foto  { background: #fde8e7; color: #b52820; }
.c-gruen .sort-foto { background: #dff3e9; color: #0d6943; }
.c-gelb .sort-foto  { background: #fff5d6; color: #7a5900; }
.c-blau .sort-foto  { background: #e2f3fa; color: #1a84ab; }
.kaffee-kachel .sort-foto { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }

.sort-desc {
  display: block;
  font-size: 0.72rem;
  color: #778;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Echtes Foto – sobald du <img> verwendest, passt es sich automatisch an */
img.sort-foto {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 0.65rem;
  display: block;
}

/* Vollbild-Darstellung: ganzes Motiv sichtbar, kein Abschneiden */
img.sort-foto.contain {
  object-fit: contain;
  background-color: #ffffff;
  padding: 0.5rem;
}

/* ─── Google Maps iframe ─── */

.anfahrt-inner {
  grid-template-columns: 3fr 2fr;
}

.karte-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  height: 360px;
  min-height: 260px;
}

.karte-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 700px) {
  .anfahrt-inner {
    grid-template-columns: 1fr;
  }
  .karte-wrap {
    height: 260px;
  }

  .automat-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .automat-text p {
    max-width: none;
  }

  .neon-snacks,
  .neon-drinks,
  .neon-vapes {
    font-size: 1.3rem;
  }
  .neon-words {
    gap: 0.4rem 1.4rem;
    margin-bottom: 1rem;
  }
}
