/*
Theme Name: MainTaxi Schweinfurt
Theme URI: https://maintaxischweinfurt.de
Author: MainTaxi Schweinfurt
Author URI: https://maintaxischweinfurt.de
Description: Individuelles WordPress-Theme für MainTaxi Schweinfurt – Taxiunternehmen und Rollstuhlfahrdienst. Warmes, vertrauensvolles Design mit klarer Lesbarkeit, vollständiger Gutenberg-/Block-Editor-Unterstützung und editierbaren Theme-Optionen.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maintaxi
Tags: light, local-business, one-page, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, block-styles, wide-blocks, editor-style, translation-ready, responsive-layout

MainTaxi Schweinfurt WordPress Theme
Copyright (c) 2026
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  /* Farben */
  --color-bg: #FAF6EE;          /* warmes, cremiges Off-White */
  --color-bg-alt: #F1E9D8;      /* dunklerer Sand-Ton für Sektionen */
  --color-ink: #161E29;         /* tiefes Anthrazit-Blau, edler/dunkler */
  --color-ink-soft: #4B5563;    /* gedämpfter Text-Ton */
  --color-taxi: #C9A24B;        /* Metallic-Gold, Signalfarbe (ersetzt Taxi-Gelb) */
  --color-taxi-dark: #A5811E;   /* dunkleres Gold für Hover/Kontrast */
  --color-taxi-light: #E4CD8E;  /* helles Gold für Glanzlichter/Verläufe */
  --color-available: #3A7259;   /* gedämpftes Grün: "verfügbar / barrierefrei" */
  --color-white: #FFFFFF;
  --color-border: rgba(22, 30, 41, 0.1);

  /* Typografie (reine System-Fonts, keine externen Verbindungen) */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius & Schatten */
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 32px -16px rgba(22, 30, 41, 0.25);
  --shadow-card: 0 1px 2px rgba(22,30,41,0.04), 0 12px 28px -12px rgba(22,30,41,0.16);
  --shadow-card-hover: 0 1px 2px rgba(22,30,41,0.06), 0 24px 48px -16px rgba(22,30,41,0.24);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --content-width: 1180px;
  --section-pad: clamp(64px, 9vw, 120px);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   SCROLL REVEAL (dezent, respektiert reduced-motion)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--color-taxi-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background 0.35s var(--ease-premium);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-taxi-light), var(--color-taxi));
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-taxi), var(--color-taxi-dark));
  box-shadow: var(--shadow-card-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn-outline:hover { background: var(--color-ink); color: var(--color-white); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }

/* ==========================================================================
   STATUS-AMPEL (Signatur-Element)
   ========================================================================== */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(63, 125, 88, 0.12);
  color: var(--color-available);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.status-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-available);
  box-shadow: 0 0 0 0 rgba(63, 125, 88, 0.6);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(63, 125, 88, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(63, 125, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 125, 88, 0); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding img { height: 42px; width: auto; border-radius: 8px; }
.site-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.site-title .accent { color: var(--color-taxi-dark); }

.main-navigation { display: flex; align-items: center; gap: 28px; }
.main-navigation ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-ink-soft);
  transition: color 0.15s ease;
}
.main-navigation a:hover { color: var(--color-ink); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-ink);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-ink);
  margin: 5px 0;
}

@media (max-width: 860px) {
  .main-navigation { position: fixed; top: 73px; left: 0; right: 0; background: var(--color-bg); flex-direction: column; align-items: stretch; padding: 16px 24px 24px; border-bottom: 1px solid var(--color-border); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.2s ease; }
  .main-navigation.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-navigation ul { flex-direction: column; gap: 16px; }
  .header-phone span.label { display: none; }
  .menu-toggle { display: block; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #161E29 0%, #1C2533 100%);
  color: var(--color-white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 162, 75, 0.16), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(58, 114, 89, 0.16), transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: hero-sheen 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-sheen {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(280%); }
  100% { transform: translateX(280%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; display: none; }
}
.hero .container {
  position: relative;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.hero h1 { color: var(--color-white); margin-bottom: 0.4em; }
.hero h1 .accent { color: var(--color-taxi); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 1.6em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-visual img { border-radius: var(--radius-md); width: 100%; }
.hero-illustration svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   PAGE-HERO (schlanker Hero für Unterseiten, einspaltig)
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, #161E29 0%, #1C2533 100%);
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 75, 0.18), transparent 55%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.4em; margin-top: 18px; }
.page-hero h1 .accent { color: var(--color-taxi); }
.page-hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 1.6em;
}
.page-hero .hero-actions { justify-content: center; }

/* ==========================================================================
   INFO-SPLIT (Icon + Text, für erklärende Abschnitte auf Unterseiten)
   ========================================================================== */
.info-split {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 820px;
}
.info-split-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(201, 162, 75, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.info-split h3 { margin-bottom: 0.5em; }
.info-split p { color: var(--color-ink-soft); margin: 0; }

@media (max-width: 640px) {
  .info-split { flex-direction: column; gap: 16px; }
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 28px;
  background: var(--color-taxi);
  color: var(--color-ink);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ==========================================================================
   SECTIONS — generic
   ========================================================================== */
section { padding: var(--section-pad) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-ink); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-taxi-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-taxi-dark), var(--color-taxi-light));
  transition: width 0.9s var(--ease-premium);
}
.is-visible .eyebrow::before,
.eyebrow.is-visible::before { width: 36px; }
.section-head p { color: var(--color-ink-soft); font-size: 1.08rem; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201, 162, 75, 0.35);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 162, 75, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}
.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(201, 162, 75, 0.08);
}
.service-card.is-medical .service-icon { background: rgba(58, 114, 89, 0.13); }
.service-card.is-medical:hover .service-icon { box-shadow: 0 0 0 6px rgba(58, 114, 89, 0.09); }
.service-card p { color: var(--color-ink-soft); margin-bottom: 0; font-size: 0.98rem; }

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

.services-subheading {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  font-weight: 600;
  font-family: var(--font-body);
}
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .services-grid-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   ABOUT / STATS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-list { list-style: none; padding: 0; margin: 24px 0 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.about-list li:last-child { border-bottom: none; }
.about-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-available);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.stats-card {
  background: linear-gradient(160deg, #161E29 0%, #20293A 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: var(--shadow-card);
}
.stat-item {
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-taxi-light), var(--color-taxi-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FLEET STRIP
   ========================================================================== */
.fleet-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.fleet-strip .fleet-text { font-weight: 600; font-size: 1.05rem; }
.fleet-strip .fleet-text span { color: var(--color-taxi-dark); }
.section-dark .fleet-strip .fleet-text span { color: var(--color-taxi-light); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--color-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--color-ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--color-bg);
  color: var(--color-ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-taxi-dark);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-item .ci-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 180, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item h4 { margin-bottom: 2px; font-size: 1rem; }
.contact-info-item a, .contact-info-item p { color: var(--color-ink-soft); margin: 0; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.maps-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  min-height: 260px;
}
.maps-placeholder.is-loaded { background: none; border: 1px solid var(--color-border); }
.maps-placeholder iframe { width: 100%; height: 260px; border: 0; display: block; }
.maps-placeholder-inner {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 28px;
}
.maps-placeholder-inner p {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  max-width: 380px;
  margin: 0;
}
.maps-placeholder-inner .btn { padding: 10px 22px; font-size: 0.92rem; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-title { color: var(--color-white); }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--color-taxi); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--color-taxi); color: var(--color-ink); }

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: var(--color-taxi); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LEGAL PAGES (Impressum / Datenschutz / AGB)
   ========================================================================== */
.legal-content { max-width: 760px; margin: 0 auto; padding: var(--section-pad) 24px; }
.legal-content h1 { margin-bottom: 0.6em; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2em; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.4em; }
.legal-content p, .legal-content li { color: var(--color-ink-soft); }
.legal-content a { color: var(--color-taxi-dark); text-decoration: underline; }
.legal-content .placeholder {
  background: rgba(245, 180, 0, 0.14);
  border-left: 3px solid var(--color-taxi-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--color-ink);
}

/* ==========================================================================
   GUTENBERG BLOCK-EDITOR DEFAULTS
   ========================================================================== */
.wp-block-group, .wp-block-columns { max-width: var(--content-width); margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1320px; }
.alignfull { max-width: none; }
