/* ============================================================
   SnackStation – Standorte Landingpage
   Design: dunkel & professionell, Vendolutions-Markenfarben
   Blau = Marke/Aktion · Grün = positiv/verfügbar
   Schriften: lokal eingebunden (DSGVO, kein Google-Fonts-CDN)
   ============================================================ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/inter-800.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/montserrat-700.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/montserrat-800.woff2") format("woff2");
}

:root {
  --navy-950: #070b1f;
  --navy-900: #0a0f2a;
  --navy-800: #0c1130;
  --navy-700: #141b3f;

  --blue: #1e5aa8;          /* Vendolutions Primär-Blau */
  --blue-bright: #2e6fc7;   /* Hover/Anhebung */
  --blue-soft: #8fb4e3;     /* Textakzente auf dunklem Grund */
  --green: #6cb33f;         /* Vendolutions Grün = gut/verfügbar */
  --green-dark: #4e9a2f;
  --green-soft: #9fd478;

  --white: #f5f7ff;
  --muted: #9aa3c7;
  --line: rgba(143, 180, 227, 0.16);
  --amber: #e0b45c;         /* nur für interne Platzhalter-Marker */

  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-card: 16px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 55%, var(--navy-900) 100%);
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-soft);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: min(100% - 2.5rem, 1080px);
  margin-inline: auto;
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Typografie ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* ---------- Badge „24/7 für dich da" ---------- */

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(var(--navy-800), var(--navy-800)) padding-box,
    linear-gradient(90deg, var(--blue-bright), var(--green)) border-box;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.badge-247 .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 9vw, 4.2rem);
  margin: 1.1rem 0 0.4rem;
}

.hero h1 .neon-word {
  color: var(--white);
  text-shadow: 0 0 28px rgba(46, 111, 199, 0.35);
}

.hero .claim {
  font-size: clamp(1.02rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 34rem;
  margin-inline: auto;
}

.hero .claim strong {
  color: var(--white);
}

/* Maskottchen: freigestelltes PNG mit eigenem Neon-Ring im Artwork */

.hero-mascot {
  width: clamp(240px, 55vw, 360px);
  height: auto;
  margin-top: 2.2rem;
  animation: mascot-in 0.9s ease-out both;
}

@keyframes mascot-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.8rem 1.7rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--green);
  color: #0d2306;
}

.btn-primary:hover {
  background: var(--green-soft);
}

.btn-whatsapp {
  background: var(--green);
  color: #0d2306;
}

.btn-whatsapp:hover {
  background: var(--green-soft);
}

.btn-mail {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--line);
}

.btn-mail:hover {
  border-color: var(--blue-soft);
}

/* ---------- Perks-Leiste (Sortiment & Bezahlung) ---------- */

.perks-section {
  padding: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(20, 27, 63, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.perks li .icon {
  width: 16px;
  height: 16px;
  color: var(--blue-soft);
}

.perks li.perk-pay .icon {
  color: var(--green);
}

/* ---------- Sektionen ---------- */

.section {
  padding: clamp(2.8rem, 7vw, 4.5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(1.8rem, 5vw, 2.8rem);
}

.section-head h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-top: 0.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0.6rem auto 0;
}

/* ---------- Standort-Kacheln: Foto im Vollformat, Leiste als Overlay ---------- */

.location-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}

.location-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.location-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 180, 227, 0.4);
}

.tile-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* Video-Kacheln: gleiches 3:4-Format wie die Fotos, mittig beschnitten */
.tile-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--navy-900);
}

/* Zusatz-Label unter dem 24/7-Badge (z. B. „Unser Automatenladen") */
.tile-flag {
  position: absolute;
  top: 56px;
  left: 14px;
  background: rgba(7, 11, 31, 0.85);
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-pill);
}

.tile-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green);
  color: #0d2306;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-pill);
}

/* Variante für abweichende Öffnungszeiten (kein 24/7) */
.tile-badge--hours {
  background: rgba(7, 11, 31, 0.85);
  color: var(--white);
}

.tile-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d2306;
  animation: pulse 2.4s ease-in-out infinite;
}

.tile-bar {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(7, 11, 31, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
}

.tile-info {
  min-width: 0;
}

.tile-bar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  color: #fff;
}

.tile-bar .venue {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  min-height: 44px;
  background: #ffffff;
  color: #0c1130;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.tile-btn:hover {
  background: #dbe7f7;
}

.tile-btn .icon {
  width: 16px;
  height: 16px;
}

/* ---------- Partner-CTA ---------- */

.partner-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
}

.partner-inner {
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
}

.partner-inner h2 {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
}

.partner-inner p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0.9rem auto 1.6rem;
}

.partner-inner p strong {
  color: var(--white);
}

/* ---------- Kontakt ---------- */

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.contact-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.todo-flag {
  display: inline-block;
  background: rgba(224, 180, 92, 0.12);
  border: 1px dashed var(--amber);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
}

/* ---------- Bande-Schnitt: dunkel → hell (wie auf der Werbebande) ---------- */

.bande-cut {
  position: relative;
  height: clamp(70px, 10vw, 120px);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

/* grüne Schräg-Kante */
.bande-cut::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  clip-path: polygon(0 52%, 100% 0, 100% 100%, 0 100%);
}

/* helle Fläche, parallel versetzt → grüner Streifen bleibt sichtbar */
.bande-cut::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4f7fb;
  clip-path: polygon(0 68%, 100% 16%, 100% 100%, 0 100%);
}

/* ---------- Helle Vendolutions-Welt ---------- */

.zone-light {
  background: #f4f7fb;
  color: #1b2a41;
}

.zone-light .section {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.zone-light .eyebrow {
  color: var(--blue);
}

.zone-light .display {
  color: #15407a;
}

.zone-light .partner-panel {
  background: #ffffff;
  border-color: #e3e8ef;
  box-shadow: 0 8px 24px rgba(21, 64, 122, 0.07);
}

.zone-light .partner-inner p {
  color: #5b6779;
}

.zone-light .partner-inner p strong {
  color: #1b2a41;
}

/* ---------- Footer ---------- */

.footer {
  margin-top: clamp(2rem, 6vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2.6rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
}

.footer-logo img {
  height: 34px;
  width: auto;
}

/* Footer in der hellen Zone */
.zone-light .footer {
  margin-top: 0;
  border-top: 1px solid #e3e8ef;
  color: #5b6779;
}

.zone-light .footer-eyebrow {
  color: #8a94a6;
}

.zone-light .footer-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.zone-light .footer-logo img {
  height: 44px;
}

.zone-light .vendo-claim .w1 { color: var(--blue); }
.zone-light .vendo-claim .w2 { color: var(--green-dark); }
.zone-light .vendo-claim .w3 { color: #15407a; }

.zone-light .footer-links a {
  color: #5b6779;
}

.zone-light .footer-links a:hover {
  color: #1b2a41;
}

.vendo-claim {
  margin-top: 0.9rem;
}

.vendo-claim .w1 { color: var(--blue-soft); font-weight: 700; }
.vendo-claim .w2 { color: var(--green); font-weight: 700; }
.vendo-claim .w3 { color: var(--white); font-weight: 700; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: center;
  margin-top: 1.3rem;
}

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

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */

.legal {
  padding: clamp(2.5rem, 7vw, 4rem) 0;
  max-width: 46rem;
  margin-inline: auto;
}

.legal h1 {
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  margin-bottom: 1.6rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.legal p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.legal .todo {
  color: var(--amber);
  background: rgba(224, 180, 92, 0.1);
  border: 1px dashed rgba(224, 180, 92, 0.6);
  border-radius: 6px;
  padding: 0.05rem 0.4rem;
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--blue-soft);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

/* ---------- Responsive: Tablet / Desktop ---------- */

@media (min-width: 640px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-mascot,
  .badge-247 .dot {
    animation: none;
  }

  .btn,
  .location-tile,
  .tile-badge .dot {
    transition: none;
    animation: none;
  }
}
