/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #1a3a5c;
  --sky:    #2e7bb8;
  --warm:   #e8f4f0;
  --accent: #e85c2b;
  --text:   #1e1e1e;
  --muted:  #5a6370;
  --border: #d6dfe8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #f7f9fb;
}

/* ── SITE HEADER ── */
.site-header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.logo-text strong { font-weight: 800; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  color: #b8cfe0;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav a.nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-left: 8px;
  padding: 8px 20px;
  box-shadow: 0 2px 10px rgba(232,92,43,0.35);
}
.site-nav a.nav-cta:hover { background: #c94822; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── SITE FOOTER ── */
.site-footer {
  background: #0d2540;
  color: #b8cfe0;
}
.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #7a9ab8; max-width: 260px; }

.footer-links {
  display: contents;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #7a9ab8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #4a6a88;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom a { color: #4a6a88; text-decoration: none; }
.footer-bottom a:hover { color: #7a9ab8; }

/* ── RESPONSIVE HEADER/FOOTER ── */
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--blue); padding: 16px 24px 24px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; border-radius: 8px; }
  .site-nav a.nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer-inner { grid-template-columns: 1fr; }
}

/* ── PAGE HEADER (Unterseiten) ── */
.page-header {
  background: linear-gradient(160deg, var(--blue) 0%, #0d2540 100%);
  color: #fff;
  padding: 56px 24px 72px;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 48px;
  background: #f7f9fb;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p {
  color: #c8dce9;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(232,92,43,0.4);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,92,43,0.5); }

.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s;
}
.btn-light:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--muted); }

/* ══════════════════════════════════════
   INDEX
══════════════════════════════════════ */
body.page-index { background: #fff; }

.hero {
  background: linear-gradient(160deg, var(--blue) 0%, #0d2540 100%);
  color: #fff;
  padding: 80px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #90bcd8;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: #f7a96b; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #c8dce9;
  max-width: 560px;
  margin: 0 auto 40px;
}

.intro {
  max-width: 760px;
  margin: 64px auto;
  padding: 0 24px;
  text-align: center;
}
.intro p { font-size: 1.15rem; color: var(--muted); margin-bottom: 16px; }
.intro strong { color: var(--blue); }

.steps {
  background: var(--warm);
  padding: 72px 24px;
}
.steps h2 {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--blue);
  margin-bottom: 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1.05rem; color: var(--blue); margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); }

.quote-section { padding: 80px 24px; text-align: center; }
blockquote {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--blue);
  line-height: 1.5;
  border-left: 5px solid var(--accent);
  padding-left: 32px;
  text-align: left;
}
blockquote cite {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
  margin-top: 16px;
}

.accept {
  background: var(--blue);
  color: #fff;
  padding: 72px 24px;
}
.accept h2 {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 48px;
}
.accept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.accept-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px;
}
.accept-card h3 { font-size: 1rem; margin-bottom: 10px; color: #f7a96b; }
.accept-card p, .accept-card ul { font-size: 0.92rem; color: #b8cfe0; line-height: 1.7; }
.accept-card ul { padding-left: 18px; }

.faq {
  max-width: 760px;
  margin: 72px auto;
  padding: 0 24px;
}
.faq h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--blue);
  margin-bottom: 40px;
  text-align: center;
}
details { border-bottom: 1px solid var(--border); padding: 20px 0; }
summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: var(--blue);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); }
details[open] summary::after { content: '−'; }
details p { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }

.cta {
  background: linear-gradient(135deg, var(--accent) 0%, #c94822 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.cta h2 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.cta p { font-size: 1.1rem; opacity: 0.9; max-width: 520px; margin: 0 auto 36px; }

/* ══════════════════════════════════════
   ABGABESTELLEN
══════════════════════════════════════ */
.search-wrap {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.search-box {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--sky); }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}
.search-box input::placeholder { color: #aab4be; }
.search-box button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 18px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  white-space: nowrap;
}
.search-box button:hover { background: #c94822; }
.search-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.results-section {
  max-width: 860px;
  margin: 48px auto 80px;
  padding: 0 24px;
}
.results-header { margin-bottom: 24px; }
.results-header h2 { font-size: 1.3rem; color: var(--blue); }
.results-header p { font-size: 0.92rem; color: var(--muted); margin-top: 4px; }

.location-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: start;
}
.location-card .tag {
  display: inline-block;
  background: var(--warm);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.location-card h3 { font-size: 1.05rem; color: var(--blue); margin-bottom: 4px; }
.location-card .address { font-size: 0.92rem; color: var(--muted); margin-bottom: 6px; }
.location-card .hours { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.location-card .actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

.btn-map {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-map:hover { background: var(--sky); }

.btn-route {
  display: inline-block;
  background: transparent;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
  white-space: nowrap;
}
.btn-route:hover { border-color: var(--sky); }

.state-box { text-align: center; padding: 64px 24px; color: var(--muted); }
.state-box .icon { font-size: 3rem; margin-bottom: 16px; }
.state-box h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 8px; }
.state-box p { font-size: 0.95rem; max-width: 400px; margin: 0 auto; }

.send-fallback {
  background: var(--warm);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  margin-top: 32px;
  border: 1px solid #c2ddd6;
}
.send-fallback h3 { color: var(--blue); margin-bottom: 8px; }
.send-fallback p { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.send-fallback a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════
   PER POST SPENDEN
══════════════════════════════════════ */
.content {
  max-width: 820px;
  margin: 56px auto 80px;
  padding: 0 24px;
  display: grid;
  gap: 32px;
}

.address-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.address-box h2 { font-size: 1.2rem; color: var(--blue); margin-bottom: 16px; }
address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}
address strong { display: block; font-size: 1.1rem; color: var(--blue); }
.copy-btn {
  background: var(--warm);
  border: 1px solid #c2ddd6;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  white-space: nowrap;
  align-self: flex-end;
}
.copy-btn:hover { background: #d0ebe3; }
.copy-btn.copied { background: #2a9d5c; color: #fff; border-color: #2a9d5c; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.info-card.accept  { border-top: 3px solid #2a9d5c; }
.info-card.reject  { border-top: 3px solid #cc3333; }
.info-card.receipt { border-top: 3px solid var(--sky); }
.info-card.timing  { border-top: 3px solid var(--accent); }
.info-card .icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.info-card h3 { font-size: 1rem; color: var(--blue); margin-bottom: 8px; }
.info-card p, .info-card ul { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.info-card ul { padding-left: 18px; }
.info-card ul li { margin-bottom: 4px; }

.steps-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
}
.steps-card h2 { font-size: 1.2rem; color: var(--blue); margin-bottom: 28px; }
.step-row { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.step-row:last-child { margin-bottom: 0; }
.step-row .step-num {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-row h3 { font-size: 0.97rem; color: var(--blue); margin-bottom: 4px; }
.step-row p { font-size: 0.9rem; color: var(--muted); }

.note {
  background: #fff8f5;
  border: 1px solid #f5cdb8;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.92rem;
  color: #7a3a1e;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note .note-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.back-cta { text-align: center; padding: 16px 0 8px; }
.back-cta a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(232,92,43,0.35);
}
.back-cta a:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,92,43,0.45); }
.back-cta p { margin-top: 14px; font-size: 0.88rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .location-card { grid-template-columns: 1fr; }
  .location-card .actions { flex-direction: row; align-items: flex-start; }
  .address-box { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
