/* CityTransfer24 – Basis + 100 Template-Varianten */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --bg: #fff;
    --bg-alt: #f8f9fa;
    --text: #212529;
    --text-muted: #6c757d;
    --radius: 8px;
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: system-ui, -apple-system, sans-serif;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --hero-overlay: rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.kopf {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
}
.kopf-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.kopf-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--text); }
.kopf-logo span { color: var(--primary); }
.kopf-tagline { display: none; margin-left: 1rem; padding-left: 1rem; border-left: 1px solid rgba(0,0,0,0.1); font-size: 0.85rem; color: var(--text-muted); }
@media (min-width: 992px) { .kopf-tagline { display: block; } }

/* Header-Variante: Dunkel */
.kopf-dark {
    background: #1a1a1a;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.kopf-dark .kopf-inner { max-width: 1200px; }
.kopf-dark .kopf-logo { color: #fff; }
.kopf-dark .kopf-logo span { color: #7dd3fc; }
.kopf-dark .kopf-nav { display: none; align-items: center; gap: 0.5rem; }
.kopf-dark .kopf-nav a {
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}
.kopf-dark .kopf-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.kopf-dark .kopf-nav a.aktiv { color: #fff; font-weight: 600; }
.kopf-dark .kopf-nav a.aktion {
    background: #0ea5e9;
    color: #fff !important;
}
.kopf-dark .kopf-nav a.aktion:hover { background: #38bdf8; color: #fff !important; }
.kopf-dark .kopf-burger { background: rgba(255,255,255,0.1); }
.kopf-dark .kopf-burger span { background: #fff; }
.kopf-dark .kopf-drop { background: #1a1a1a; border-bottom: 1px solid rgba(255,255,255,0.1); }
.kopf-dark .kopf-drop a { color: rgba(255,255,255,0.9); }
.kopf-dark .kopf-drop a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.kopf-dark .kopf-drop a.aktion { background: #0ea5e9; color: #fff !important; }
@media (min-width: 768px) { .kopf-dark .kopf-burger { display: none; } .kopf-dark .kopf-nav { display: flex; } .kopf-dark .kopf-drop { display: none; } }

.kopf-nav { display: none; align-items: center; gap: 0.25rem; }
.kopf-nav a { padding: 0.5rem 0.9rem; font-size: 0.95rem; font-weight: 500; color: var(--text-muted); border-radius: var(--radius); }
.kopf-nav a:hover { color: var(--text); background: var(--bg-alt); }
.kopf-nav a.aktiv { color: var(--text); font-weight: 600; }
.kopf-nav a.aktion { background: var(--primary); color: #fff !important; }
.kopf-nav a.aktion:hover { background: var(--primary-dark); color: #fff !important; }
.kopf-burger {
    width: 44px; height: 44px; padding: 0; border: none; background: var(--bg-alt); border-radius: var(--radius);
    cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.kopf-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 1px; transition: transform .2s, opacity .2s; }
.kopf-burger.offen span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.kopf-burger.offen span:nth-child(2) { opacity: 0; }
.kopf-burger.offen span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.kopf-drop {
    position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid rgba(0,0,0,0.08);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.kopf-drop.offen { max-height: 280px; }
.kopf-drop-in { max-width: 1140px; margin: 0 auto; padding: 1.25rem; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.kopf-drop a { padding: 0.5rem 0.9rem; font-size: 0.95rem; color: var(--text-muted); border-radius: var(--radius); }
.kopf-drop a:hover { color: var(--text); background: var(--bg-alt); }
.kopf-drop a.aktion { background: var(--primary); color: #fff !important; }
@media (min-width: 768px) { .kopf-burger { display: none; } .kopf-nav { display: flex; } .kopf-drop { display: none; } }

/* Template-Picker */
.template-picker { position: fixed; top: 80px; right: 0; z-index: 99; }
.template-picker-toggle {
    padding: 0.5rem 0.75rem; background: var(--primary); color: #fff; border: none; border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.85rem; font-weight: 600; cursor: pointer; box-shadow: -2px 2px 8px rgba(0,0,0,0.15);
}
.template-picker-panel {
    position: absolute; top: 100%; right: 0; width: 320px; max-height: 70vh; overflow-y: auto;
    background: var(--bg); border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius) 0 0 var(--radius);
    padding: 1rem; box-shadow: -4px 4px 20px rgba(0,0,0,0.12); display: none;
}
.template-picker-panel.open { display: block; }
.template-picker-panel h2 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.template-picker-panel p { margin: 0 0 0.75rem; font-size: 0.85rem; color: var(--text-muted); }
.template-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; }
.template-btn {
    min-width: 28px; height: 28px; padding: 0; border: 1px solid rgba(0,0,0,0.15); border-radius: 4px;
    background: var(--bg-alt); color: var(--text); font-size: 0.75rem; font-weight: 600; cursor: pointer;
}
.template-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Main */
.inhalt { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem 2.5rem; }

/* Hero */
.hero {
    margin: 0 0 2.5rem; min-height: 380px; background: #1a1a1a; border-radius: 0 0 16px 16px;
    display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden;
}
.hero-bild { position: absolute; inset: 0; }
.hero-bild img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-dunkel { position: absolute; inset: 0; background: linear-gradient(180deg, var(--hero-overlay) 0%, rgba(0,0,0,0.7) 100%); }
.hero-text { position: relative; z-index: 1; padding: 2.5rem; max-width: 640px; }
.hero-text h1 { margin: 0 0 0.75rem; font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.2; }
.hero-text p { margin: 0 0 1.5rem; font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.hero-text .btn { display: inline-block; padding: 0.75rem 1.5rem; background: var(--primary); color: #fff !important; font-weight: 600; font-size: 1rem; border-radius: var(--radius); }
.hero-text .btn:hover { background: var(--primary-dark); color: #fff !important; }

/* Über uns */
.ueber { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; margin-bottom: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
@media (min-width: 768px) { .ueber { grid-template-columns: 1fr 1fr; } }
.ueber-b { border-radius: 12px; overflow: hidden; background: var(--bg-alt); }
.ueber-b img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.ueber-t h2 { margin: 0 0 0.75rem; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.ueber-t p { margin: 0 0 0.5rem; color: var(--text-muted); }
.ueber-t .kasten { margin-top: 1rem; padding: 1rem; background: var(--bg-alt); border-radius: var(--radius); font-size: 0.95rem; border-left: 4px solid var(--primary); }

/* Flotte */
.flotte-titel { text-align: center; margin-bottom: 2.5rem; }
.flotte-titel h2 { margin: 0 0 0.5rem; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--text); }
.flotte-titel p { margin: 0; color: var(--text-muted); font-size: 1.05rem; }
.flotte-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 600px) { .flotte-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .flotte-grid { grid-template-columns: repeat(3, 1fr); } }
.flotte-karte {
    background: var(--bg); border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}
.flotte-karte:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.flotte-karte-bild { aspect-ratio: 16/10; background: var(--bg-alt); overflow: hidden; }
.flotte-karte-bild img { width: 100%; height: 100%; object-fit: cover; }
.flotte-karte-in { padding: 1.25rem; }
.flotte-karte-in h3 { margin: 0 0 0.35rem; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text); }
.flotte-karte-in p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Vorteile */
.vorteile { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2rem; padding: 2.5rem; margin: 2.5rem 0; background: var(--bg-alt); border-radius: 12px; font-size: 0.95rem; color: var(--text-muted); }
.vorteile b { color: var(--text); }

/* CTA */
.cta-box { text-align: center; padding: 2.5rem; margin-top: 2.5rem; background: var(--bg-alt); border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; }
.cta-box h2 { margin: 0 0 0.5rem; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--text); }
.cta-box p { margin: 0 0 1rem; color: var(--text-muted); }
.cta-box .btn { display: inline-block; padding: 0.75rem 1.5rem; background: var(--primary); color: #fff !important; font-weight: 600; border-radius: var(--radius); }
.cta-box .btn:hover { background: var(--primary-dark); color: #fff !important; }

/* ========== Home Business (moderne Index-Seite) ========== */
.home-business { --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif; }
.home-hero { min-height: 420px; }
.home-hero-text { max-width: 720px; }
.home-hero .hero-badge {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
}
.home-hero .hero-lead { font-size: 1.15rem; margin-bottom: 1.5rem; opacity: 0.95; }
.home-hero .btn-hero { padding: 0.9rem 1.75rem; font-size: 1.05rem; border-radius: 10px; }

.home-leistungen { padding: 3rem 0; }
.home-h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
.home-intro {
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 560px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.home-leistungen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .home-leistungen-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.home-karte {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    transition: box-shadow .25s, border-color .25s;
}
.home-karte:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.home-karte-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.home-karte h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}
.home-karte p { margin: 0 0 1rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.home-karte-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}
.home-karte-link:hover { color: var(--primary-dark); text-decoration: underline; }

.home-zielgruppen { padding: 3rem 0; background: var(--bg-alt); margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem; border-radius: 16px; }
.home-ziel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
    .home-ziel-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.home-ziel-karte {
    padding: 2rem;
    background: var(--bg);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.home-ziel-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.home-ziel-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 10px;
}
.home-ziel-karte h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}
.home-ziel-karte p { margin: 0 0 1.25rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff !important; }

.home-trust { padding: 2.5rem; margin: 2.5rem 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 16px; color: #fff; }
.home-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    font-size: 1.05rem;
}
.home-trust-list strong { font-weight: 700; opacity: 1; }
.home-trust-list li { opacity: 0.95; }
.home-cta { margin-top: 2rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Unterseiten: Seitenkopf, Prosa, Kontakt-Karte */
.seitenkopf { margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.seitenkopf h1 { margin: 0 0 0.5rem; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--text); }
.seitenkopf p { margin: 0; font-size: 1.05rem; color: var(--text-muted); }
.prosa { font-size: 1rem; line-height: 1.7; }
.prosa p { margin: 0 0 1rem; color: var(--text-muted); }
.prosa h2 { margin: 1.5rem 0 0.5rem; font-size: 1.25rem; font-weight: 600; color: var(--text); }
.kontakt-karte { max-width: 400px; margin: 0 auto 2rem; padding: 2rem; background: var(--bg-alt); border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; text-align: center; }
.kontakt-karte-label { margin: 0 0 0.25rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.kontakt-karte-t { margin: 0 0 1rem; font-size: 1rem; }
.kontakt-karte .btn { display: inline-block; padding: 0.75rem 1.5rem; background: var(--primary); color: #fff !important; font-weight: 600; border-radius: var(--radius); }
.kontakt-karte .btn:hover { background: var(--primary-dark); color: #fff !important; }

/* Footer */
.fuss { margin-top: 2.5rem; padding: 2.5rem 1.25rem; border-top: 1px solid rgba(0,0,0,0.08); text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.fuss-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; }
.fuss-links a { color: var(--text-muted); }
.fuss-links a:hover { color: var(--primary); }

/* ========== 100 VERSCHIEDENE LAYOUTS (wie 100 verschiedene Websites) ========== */

/* 1: Classic – Standard-Zentriert, 3-Spalten-Karten */
body.theme-1 { --primary: #0d6efd; --primary-dark: #0a58ca; }

/* 2: Schmal – Schmale Spalte, alles zentriert */
body.theme-2 .inhalt { max-width: 680px; margin-left: auto; margin-right: auto; }
body.theme-2 .hero { min-height: 320px; }
body.theme-2 .hero-text h1 { font-size: 1.75rem; }
body.theme-2 .flotte-grid { grid-template-columns: 1fr; }
body.theme-2 .flotte-titel { text-align: center; }

/* 3: Hero links – Text links, Bild rechts */
body.theme-3 .hero { flex-direction: row; text-align: left; justify-content: flex-start; min-height: 400px; }
body.theme-3 .hero-text { margin-left: 3rem; max-width: 480px; align-items: flex-start; }
body.theme-3 .hero-text * { text-align: left; }
body.theme-3 .hero-dunkel { background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 60%); }
body.theme-3 .ueber { grid-template-columns: 1fr 1.2fr; }
body.theme-3 .ueber-b { order: 2; }
body.theme-3 .ueber-t { order: 1; }

/* 4: Minimal – Wenig Hero, viel Weißraum */
body.theme-4 .hero { min-height: 260px; border-radius: 0; }
body.theme-4 .hero-text h1 { font-size: 1.6rem; }
body.theme-4 .inhalt { padding-top: 3rem; }
body.theme-4 .ueber { padding: 3rem 0; }
body.theme-4 .flotte-karte { border: none; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* 5: Bento-Grid – Flotte als 2+1 Raster */
body.theme-5 .flotte-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; }
body.theme-5 .flotte-grid .flotte-karte:first-child { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
body.theme-5 .flotte-grid .flotte-karte:first-child .flotte-karte-bild { aspect-ratio: auto; min-height: 200px; }
body.theme-5 .flotte-grid .flotte-karte:first-child .flotte-karte-in { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 600px) {
    body.theme-5 .flotte-grid { grid-template-columns: 1fr; }
    body.theme-5 .flotte-grid .flotte-karte:first-child { grid-column: span 1; grid-template-columns: 1fr; }
}

/* 6: Karten horizontal – Bild links, Text rechts */
body.theme-6 .flotte-karte { display: grid; grid-template-columns: 200px 1fr; }
body.theme-6 .flotte-karte-bild { aspect-ratio: 1; }
body.theme-6 .flotte-grid { grid-template-columns: 1fr; gap: 1rem; }
body.theme-6 .flotte-karte-in { padding: 1rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }

/* 7: Full Bleed – Volle Breite, nur Innenabstand */
body.theme-7 .inhalt { max-width: 100%; padding-left: 2rem; padding-right: 2rem; }
body.theme-7 .hero { border-radius: 0; margin-left: 0; margin-right: 0; }
body.theme-7 .flotte-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
body.theme-7 .ueber { gap: 3rem; }

/* 8: Listen-Stil – Flotte als vertikale Liste */
body.theme-8 .flotte-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; gap: 0; }
body.theme-8 .flotte-karte { display: grid; grid-template-columns: 120px 1fr; border-radius: 0; border-left: 4px solid var(--primary); }
body.theme-8 .flotte-karte-bild { aspect-ratio: 1; min-height: 120px; }
body.theme-8 .flotte-karte-in { justify-content: center; padding: 1rem 1.5rem; }
body.theme-8 .flotte-titel { text-align: left; }

/* 9: Editorial – Große Typografie, schmale Spalte */
body.theme-9 .inhalt { max-width: 720px; }
body.theme-9 .ueber-t h2 { font-size: 2rem; line-height: 1.2; }
body.theme-9 .flotte-titel h2 { font-size: 2rem; }
body.theme-9 .flotte-grid { grid-template-columns: 1fr; }
body.theme-9 .flotte-karte { display: grid; grid-template-columns: 1fr 1fr; }
body.theme-9 .flotte-karte-bild { order: 2; aspect-ratio: 4/3; }
body.theme-9 .flotte-karte-in { order: 1; padding: 2rem; }

/* 10: 4-Spalten – Mehr Karten nebeneinander */
body.theme-10 .flotte-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { body.theme-10 .flotte-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { body.theme-10 .flotte-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
body.theme-10 .flotte-karte-bild { aspect-ratio: 1; }
body.theme-10 .flotte-karte-in h3 { font-size: 1rem; }

/* 11: Header zentriert – Logo und Nav zentriert */
body.theme-11 .kopf-inner { flex-direction: column; height: auto; padding: 1rem; gap: 0.75rem; }
body.theme-11 .kopf-nav { display: flex; }
body.theme-11 .hero { min-height: 350px; }
body.theme-11 .vorteile { flex-direction: column; align-items: center; gap: 0.5rem; }

/* 12: Kompakt – Weniger Abstände */
body.theme-12 .inhalt { padding: 0 1.25rem 1.5rem; }
body.theme-12 .hero { min-height: 280px; margin-bottom: 1.5rem; }
body.theme-12 .ueber { margin-bottom: 1.5rem; padding: 1.5rem 0; gap: 1.5rem; }
body.theme-12 .flotte-grid { gap: 1rem; margin-bottom: 1rem; }
body.theme-12 .flotte-karte-in { padding: 0.75rem 1rem; }
body.theme-12 .cta-box { padding: 1.5rem; margin-top: 1.5rem; }
body.theme-12 .vorteile { padding: 1rem; margin: 1rem 0; }

/* 13: Großzügig – Viel Weißraum */
body.theme-13 .inhalt { max-width: 960px; padding: 0 2rem 4rem; }
body.theme-13 .hero { min-height: 480px; margin-bottom: 4rem; }
body.theme-13 .ueber { padding: 4rem 0; gap: 4rem; margin-bottom: 4rem; }
body.theme-13 .flotte-titel { margin-bottom: 3rem; }
body.theme-13 .flotte-grid { gap: 3rem; }
body.theme-13 .flotte-karte-in { padding: 2rem; }
body.theme-13 .cta-box { padding: 4rem; margin-top: 4rem; }

/* 14: Ohne Hero-Bild – Nur Farbverlauf */
body.theme-14 .hero-bild { display: none; }
body.theme-14 .hero-dunkel { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
body.theme-14 .hero { min-height: 320px; }
body.theme-14 .hero-text h1 { font-size: 2rem; }

/* 15: Scharfe Ecken – Kein Radius */
body.theme-15 .hero { border-radius: 0; }
body.theme-15 .flotte-karte { border-radius: 0; }
body.theme-15 .cta-box { border-radius: 0; }
body.theme-15 .ueber-b { border-radius: 0; }
body.theme-15 .kopf { border-radius: 0; }

/* 16: Pill-Buttons – Maximale Rundung */
body.theme-16 { --radius: 999px; }
body.theme-16 .flotte-karte { border-radius: 999px; overflow: hidden; }
body.theme-16 .ueber-b { border-radius: 999px; }

/* 17: Über uns zuerst – Reihenfolge: Flotte vor Über uns (per Order) */
body.theme-17 .inhalt { display: flex; flex-direction: column; }
body.theme-17 .ueber { order: 3; }
body.theme-17 .flotte-titel { order: 1; }
body.theme-17 .flotte-grid { order: 2; }
body.theme-17 .vorteile { order: 4; }
body.theme-17 .cta-box { order: 5; }

/* 18: Vorteile oben – Vorteile direkt unter Hero */
body.theme-18 .inhalt { display: flex; flex-direction: column; }
body.theme-18 .vorteile { order: -1; margin-top: 0; margin-bottom: 2rem; border-radius: 0; }
body.theme-18 .ueber { order: 0; }
body.theme-18 .flotte-titel { order: 1; }
body.theme-18 .flotte-grid { order: 2; }
body.theme-18 .cta-box { order: 3; }

/* 19: CTA oben rechts im Hero */
body.theme-19 .hero { justify-content: flex-end; align-items: flex-end; padding: 2rem; }
body.theme-19 .hero-text { text-align: right; margin-left: auto; }
body.theme-19 .hero-text * { text-align: right; }
body.theme-19 .hero-dunkel { background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,0.8) 100%); }

/* 20: Zwei Spalten Über uns – Bild oben, Text zweispaltig */
body.theme-20 .ueber { grid-template-columns: 1fr; }
body.theme-20 .ueber-t { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
body.theme-20 .ueber-t h2 { grid-column: span 2; }
body.theme-20 .ueber-t .kasten { grid-column: span 2; }

/* 21: Footer zweispaltig */
body.theme-21 .fuss { text-align: left; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
body.theme-21 .fuss-links { justify-content: flex-end; margin-bottom: 0; }
body.theme-21 .fuss p { margin: 0; }

/* 22: Karten mit Schatten statt Rahmen */
body.theme-22 .flotte-karte { border: none; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
body.theme-22 .flotte-karte:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
body.theme-22 .cta-box { border: none; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* 23: Flotte als Tiles – Quadratische Karten */
body.theme-23 .flotte-grid { grid-template-columns: repeat(3, 1fr); }
body.theme-23 .flotte-karte-bild { aspect-ratio: 1; }
body.theme-23 .flotte-karte-in { text-align: center; padding: 1rem; }
body.theme-23 .flotte-karte-in h3 { font-size: 1rem; }

/* 24: Sidebar-Border – Inhalt mit linkem Akzent */
body.theme-24 .inhalt { border-left: 4px solid var(--primary); padding-left: 2rem; margin-left: 1rem; }
body.theme-24 .flotte-titel { text-align: left; padding-left: 0; }
body.theme-24 .ueber-t h2 { padding-left: 0; }

/* 25: Dunkler Modus */
body.theme-25 { --bg: #1a1a1a; --bg-alt: #2d2d2d; --text: #f0f0f0; --text-muted: #a0a0a0; --primary: #60a5fa; --primary-dark: #3b82f6; }
body.theme-25 .kopf { background: #111; border-color: #333; }
body.theme-25 .hero-dunkel { background: rgba(0,0,0,0.5); }
body.theme-25 .flotte-karte { background: #2d2d2d; border-color: #444; }
body.theme-25 .ueber-t .kasten { background: #333; }
body.theme-25 .vorteile { background: #252525; }
body.theme-25 .cta-box { background: #252525; border-color: #444; }
body.theme-25 .fuss { border-color: #333; color: #a0a0a0; }
body.theme-25 .fuss-links a { color: #a0a0a0; }

/* 26: Nur Überschriften zentriert */
body.theme-26 .flotte-titel { text-align: center; }
body.theme-26 .ueber-t h2 { text-align: center; }
body.theme-26 .cta-box h2 { text-align: center; }
body.theme-26 .flotte-grid { justify-items: center; }
body.theme-26 .flotte-karte { max-width: 360px; }

/* 27: Breite Karten – Eine Karte pro Zeile, Bild links */
body.theme-27 .flotte-grid { grid-template-columns: 1fr; }
body.theme-27 .flotte-karte { grid-template-columns: 300px 1fr; display: grid; }
body.theme-27 .flotte-karte-bild { aspect-ratio: 16/10; min-height: 180px; }
body.theme-27 .flotte-karte-in { padding: 2rem; justify-content: center; }

/* 28: Minimaler Header */
body.theme-28 .kopf { border: none; box-shadow: none; }
body.theme-28 .kopf-inner { height: 56px; }
body.theme-28 .hero { margin-top: 0; }

/* 29: CTA als Vollbreite-Banner */
body.theme-29 .cta-box { margin-left: -1.25rem; margin-right: -1.25rem; padding: 3rem 2rem; border-radius: 0; background: var(--primary); color: #fff; border: none; }
body.theme-29 .cta-box h2, body.theme-29 .cta-box p { color: #fff; }
body.theme-29 .cta-box .btn { background: #fff; color: var(--primary) !important; }
body.theme-29 .cta-box .btn:hover { background: #f0f0f0; color: var(--primary-dark) !important; }

/* 30: Vorteile als Grid 3 Spalten */
body.theme-30 .vorteile { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
@media (max-width: 600px) { body.theme-30 .vorteile { grid-template-columns: 1fr; } }

/* 31–40: Weitere Layout-Varianten */
body.theme-31 .hero-text h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
body.theme-31 .flotte-titel h2 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; }

body.theme-32 .ueber { grid-template-columns: 1.2fr 1fr; }
body.theme-32 .ueber-b { order: 2; }
body.theme-32 .ueber-t { order: 1; }

body.theme-33 .flotte-grid { grid-template-columns: 1fr; }
body.theme-33 .flotte-karte { border-left: 4px solid var(--primary); padding-left: 0; }

body.theme-34 .inhalt { max-width: 1400px; }
body.theme-34 .flotte-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

body.theme-35 .hero { border-radius: 24px; margin: 1rem 1rem 2rem; }
body.theme-35 .flotte-karte { border-radius: 24px; }
body.theme-35 .cta-box { border-radius: 24px; }

body.theme-36 .kopf-inner { max-width: 100%; padding: 0 2rem; }
body.theme-36 .inhalt { max-width: 100%; padding: 0 2rem; }

body.theme-37 .vorteile { flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding: 2rem 3rem; }
body.theme-37 .vorteile span { flex: 1 1 30%; min-width: 140px; }

body.theme-38 .flotte-titel { border-bottom: 2px solid var(--primary); padding-bottom: 0.75rem; margin-bottom: 1.5rem; }
body.theme-38 .flotte-titel h2 { display: inline; }

body.theme-39 .ueber-b { border-radius: 50%; width: 280px; height: 280px; margin: 0 auto; overflow: hidden; }
body.theme-39 .ueber { grid-template-columns: 1fr; text-align: center; }
body.theme-39 .ueber-t h2 { text-align: center; }

body.theme-40 .flotte-karte-in { border-top: 3px solid var(--primary); }
body.theme-40 .flotte-karte-bild { opacity: 0.9; }

/* 41–50 */
body.theme-41 .hero-text { max-width: 100%; padding: 2rem 4rem; }
body.theme-41 .hero-text h1 { font-size: clamp(2rem, 5vw, 3rem); }

body.theme-42 .flotte-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
body.theme-42 .flotte-karte { flex: 1 1 280px; max-width: 360px; }

body.theme-43 .cta-box { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; text-align: left; }
body.theme-43 .cta-box .btn { align-self: center; }

body.theme-44 .fuss { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
body.theme-44 .fuss-links { margin-bottom: 0; }
body.theme-44 .fuss p { margin: 0; }

body.theme-45 .ueber-t .kasten { border-left: none; border-top: 4px solid var(--primary); }

body.theme-46 .flotte-karte:hover { transform: translateY(-4px); }
body.theme-46 .flotte-karte { transition: transform .2s, box-shadow .2s; }

body.theme-47 .vorteile { border-radius: 0; border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }

body.theme-48 .hero-dunkel { background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%); }

body.theme-49 .flotte-titel p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
body.theme-49 .flotte-titel { text-align: center; }

body.theme-50 .kopf { position: relative; }
body.theme-50 .hero { margin-top: 0; }

/* 51–60 */
body.theme-51 .inhalt { padding: 0 1.25rem 2rem; }
body.theme-51 .ueber, body.theme-51 .flotte-grid, body.theme-51 .cta-box { padding-left: 0; padding-right: 0; }
body.theme-51 .ueber { border-bottom: none; }

body.theme-52 .flotte-karte { background: var(--bg-alt); }
body.theme-52 .flotte-karte:nth-child(even) { background: var(--bg); }

body.theme-53 .hero-text .btn { font-size: 1.1rem; padding: 1rem 2rem; }

body.theme-54 .ueber-b img { object-fit: contain; }
body.theme-54 .ueber-b { background: var(--bg); }

body.theme-55 .flotte-karte-in h3 { font-size: 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 0.5rem; }

body.theme-56 .vorteile span { padding: 0.5rem 1rem; background: var(--bg); border-radius: var(--radius); }

body.theme-57 .cta-box { border: 2px solid var(--primary); background: transparent; }
body.theme-57 .cta-box .btn { background: var(--primary); }

body.theme-58 .flotte-grid { grid-template-columns: repeat(2, 1fr); }
body.theme-58 .flotte-grid .flotte-karte:last-child { grid-column: span 2; max-width: 500px; margin: 0 auto; }

body.theme-59 .ueber { background: var(--bg-alt); margin-left: -1.25rem; margin-right: -1.25rem; padding: 2.5rem 1.25rem; }

body.theme-60 .fuss { padding: 2rem; border: none; background: var(--bg-alt); }

/* 61–70 */
body.theme-61 { --font-heading: 'Plus Jakarta Sans', sans-serif; }
body.theme-61 .hero-text h1 { font-weight: 800; }

body.theme-62 { --font-heading: 'DM Sans', sans-serif; }
body.theme-62 .flotte-karte-in h3 { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem; }

body.theme-63 .flotte-titel h2 { font-size: 2.25rem; font-weight: 800; }
body.theme-63 .flotte-titel p { font-size: 1.1rem; }

body.theme-64 .ueber-t h2 { font-size: 1.75rem; margin-bottom: 1rem; }

body.theme-65 .hero { min-height: 500px; }
body.theme-65 .hero-text h1 { font-size: 3rem; }

body.theme-66 .flotte-karte-in p { font-size: 0.85rem; line-height: 1.5; }

body.theme-67 .vorteile { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
body.theme-67 .vorteile span { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
body.theme-67 .vorteile span:last-child { border-bottom: none; }

body.theme-68 .cta-box h2 { font-size: 1.5rem; }
body.theme-68 .cta-box p { font-size: 1.05rem; }

body.theme-69 .kopf-inner { justify-content: center; gap: 3rem; }
body.theme-69 .kopf-logo { margin-right: auto; }

body.theme-70 .flotte-karte { padding: 0; }
body.theme-70 .flotte-karte-in { padding: 1.5rem 2rem; }

/* 71–80 */
body.theme-71 .hero-text { padding: 3rem; }
body.theme-71 .hero-text p { font-size: 1.2rem; }

body.theme-72 .ueber { gap: 3rem; }
body.theme-72 .ueber-t p { font-size: 1.05rem; }

body.theme-73 .flotte-grid { gap: 2rem; }
body.theme-73 .flotte-karte { border: 2px solid transparent; }
body.theme-73 .flotte-karte:hover { border-color: var(--primary); }

body.theme-74 .vorteile { border-radius: 50px; padding: 1.5rem 2.5rem; }
body.theme-74 .vorteile span { display: inline-flex; align-items: center; gap: 0.5rem; }

body.theme-75 .cta-box { border-radius: 20px; padding: 3rem; }
body.theme-75 .cta-box .btn { border-radius: 12px; padding: 1rem 2rem; }

body.theme-76 .fuss { flex-direction: column; }
body.theme-76 .fuss-links { order: 2; }
body.theme-76 .fuss p { order: 1; }

body.theme-77 .flotte-karte-bild { aspect-ratio: 3/2; }
body.theme-77 .flotte-karte-in { padding: 1.25rem; }

body.theme-78 .ueber-b { min-height: 320px; }
body.theme-78 .ueber-t .kasten { padding: 1.25rem; }

body.theme-79 .inhalt { max-width: 800px; }
body.theme-79 .flotte-grid { grid-template-columns: 1fr; }

body.theme-80 .hero-dunkel { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%); }

/* 81–90 */
body.theme-81 .flotte-titel { margin-bottom: 1.5rem; }
body.theme-81 .flotte-titel h2 { margin-bottom: 0.25rem; }
body.theme-81 .flotte-titel p { font-size: 0.95rem; }

body.theme-82 .flotte-karte { overflow: visible; }
body.theme-82 .flotte-karte-bild { border-radius: 12px 12px 0 0; }
body.theme-82 .flotte-karte-in { border-radius: 0 0 12px 12px; }

body.theme-83 .ueber-t h2 { color: var(--primary); }
body.theme-83 .flotte-titel h2 { color: var(--primary); }

body.theme-84 .vorteile b { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
body.theme-84 .vorteile span { text-align: center; padding: 1rem; }

body.theme-85 .cta-box { max-width: 600px; margin-left: auto; margin-right: auto; }

body.theme-86 .hero-text h1 { line-height: 1.1; }
body.theme-86 .hero-text p { opacity: 0.95; }

body.theme-87 .kopf { padding: 0 0 0.5rem; }
body.theme-87 .kopf-inner { border-bottom: 1px solid rgba(0,0,0,0.08); }

body.theme-88 .flotte-grid { grid-template-columns: repeat(3, 1fr); }
body.theme-88 .flotte-karte:nth-child(2) { grid-row: span 2; }
body.theme-88 .flotte-karte:nth-child(2) .flotte-karte-bild { aspect-ratio: auto; min-height: 100%; }
body.theme-88 .flotte-karte:nth-child(2) .flotte-karte-in { justify-content: center; }

body.theme-89 .ueber { padding: 2rem 0; }
body.theme-89 .ueber-t .kasten { margin-top: 1.5rem; }

body.theme-90 .fuss { padding: 2rem 1.25rem; font-size: 0.85rem; }
body.theme-90 .fuss-links { gap: 1.5rem; }

/* 91–100 */
body.theme-91 .hero { align-items: flex-start; justify-content: center; padding-top: 4rem; }
body.theme-91 .hero-text { margin: 0 auto; }

body.theme-92 .flotte-karte-in h3 { font-size: 1.2rem; }
body.theme-92 .flotte-karte-in p { margin-top: 0.35rem; }

body.theme-93 .ueber { grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { body.theme-93 .ueber { grid-template-columns: 1fr; } }
body.theme-93 .ueber-b { order: 1; }
body.theme-93 .ueber-t { order: 2; }

body.theme-94 .vorteile { justify-content: space-around; }
body.theme-94 .vorteile span { flex: 0 0 auto; }

body.theme-95 .cta-box .btn { width: 100%; max-width: 300px; text-align: center; }

body.theme-96 .flotte-grid { grid-template-columns: 1fr 1fr; }
body.theme-96 .flotte-karte:last-child { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
body.theme-96 .flotte-karte:last-child .flotte-karte-bild { order: 2; aspect-ratio: 2/1; }
body.theme-96 .flotte-karte:last-child .flotte-karte-in { order: 1; padding: 2rem; }

body.theme-97 .inhalt { max-width: 1100px; }
body.theme-97 .flotte-grid { grid-template-columns: repeat(3, 1fr); }

body.theme-98 .hero-text { background: rgba(0,0,0,0.3); padding: 2rem; border-radius: 12px; backdrop-filter: blur(8px); }
body.theme-98 .hero-text h1 { text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

body.theme-99 .ueber-t h2 { border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; display: inline-block; }
body.theme-99 .flotte-titel h2 { border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; display: inline-block; }

body.theme-100 .flotte-karte { display: block; }
body.theme-100 .flotte-karte-bild { aspect-ratio: 16/9; }
body.theme-100 .flotte-karte-in { padding: 1.5rem; border-top: 3px solid var(--bg-alt); }
