/* Ländle Flitzer – Premium Dark Theme (Mobile First) */

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

:root {
    color-scheme: dark;
    --text: #eceae4;
    --text-dim: #a7a49c;
    --card: #15151a;
    --card-border: rgba(255,255,255,.08);
    --gold-soft: color-mix(in srgb, var(--accent) 55%, transparent);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font, system-ui, sans-serif);
    background: var(--bg, #0c0c0f);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: .015em;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-heading, Georgia, serif); font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: color-mix(in srgb, var(--primary) 86%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); min-width: 0; }
.brand-logo { height: 40px; width: auto; }
.brand-mark {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--accent);
    color: var(--accent); font-family: var(--font-heading); font-size: 16px;
    letter-spacing: .08em;
}
.brand-name {
    font-family: var(--font-heading); font-size: 19px; letter-spacing: .04em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.main-nav { display: none; gap: 30px; margin-left: auto; }
.main-nav a {
    color: var(--text-dim); text-decoration: none; font-size: 12.5px;
    text-transform: uppercase; letter-spacing: .22em; font-weight: 400;
    transition: color .2s;
}
.main-nav a:hover { color: var(--accent); }
.header-call { margin-left: auto; white-space: nowrap; }
@media (max-width: 759px) {
    .brand-name { font-size: 16px; }
    .brand-mark, .brand-logo { width: 34px; height: 34px; }
    .header-call { padding: 10px 14px; font-size: 11.5px; letter-spacing: .1em; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; border: 1px solid transparent; cursor: pointer;
    padding: 12px 26px;
    font-family: var(--font); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .18em;
    text-decoration: none; text-align: center;
    transition: all .25s ease;
    border-radius: 2px;
}
.btn:active { transform: scale(.98); }
.btn-accent { background: var(--accent); color: #121212; border-color: var(--accent); }
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 85%, #fff); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp { background: transparent; color: #36d178; border-color: #36d178; }
.btn-whatsapp:hover { background: rgba(54,209,120,.1); }
.btn-lg { padding: 15px 34px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: wait; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--bg) center / cover no-repeat;
    min-height: 88vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 22px 90px;
}
.hero-kicker {
    color: var(--accent); font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .34em; margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(40px, 9vw, 76px); line-height: 1.08;
    max-width: 800px; margin-bottom: 20px; font-weight: 500;
    text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero-sub {
    font-size: clamp(15px, 2.6vw, 19px); color: #d8d5cd;
    max-width: 520px; margin: 0 auto 38px; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-line {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    width: 1px; height: 46px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ---------- Sections ---------- */
.section { padding: 76px 18px; max-width: 1020px; margin: 0 auto; }
.section h2 {
    font-size: clamp(28px, 5vw, 40px); text-align: center; margin-bottom: 14px;
}
.section h2::after {
    content: ''; display: block; width: 54px; height: 1px;
    background: var(--accent); margin: 18px auto 0;
}
.section-sub {
    text-align: center; color: var(--text-dim); margin: 0 auto 40px;
    max-width: 560px; font-size: 15.5px;
}

/* ---------- Booking ---------- */
.booking-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 28px 22px; max-width: 660px; margin: 0 auto;
}
.field { margin-bottom: 18px; }
.field label {
    display: block; font-size: 11.5px; font-weight: 500; margin-bottom: 7px;
    color: var(--text-dim); text-transform: uppercase; letter-spacing: .16em;
}
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.14); border-radius: 3px;
    font-family: var(--font); font-size: 16px; font-weight: 300;
    background: rgba(255,255,255,.04); color: var(--text);
}
.field input::placeholder, .field textarea::placeholder { color: #6d6a63; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.geocoder-wrap { position: relative; }
.suggestions {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
    background: #1c1c22; border: 1px solid var(--card-border); border-top: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
    max-height: 240px; overflow-y: auto;
}
.suggestions div {
    padding: 12px 15px; cursor: pointer; font-size: 14.5px;
    border-top: 1px solid rgba(255,255,255,.05); color: #cfccc4;
}
.suggestions div:hover, .suggestions div.active { background: rgba(255,255,255,.06); color: var(--accent); }

.booking-map { height: 280px; border-radius: 4px; margin: 18px 0; overflow: hidden; border: 1px solid var(--card-border); }
.map-note {
    background: rgba(255,255,255,.03); border: 1px dashed rgba(255,255,255,.18);
    border-radius: 4px; padding: 16px; text-align: center; margin: 18px 0;
    font-size: 14px; color: var(--text-dim);
}
.map-note .btn { margin-top: 10px; }

.price-box {
    background: color-mix(in srgb, var(--accent) 7%, transparent);
    border: 1px solid var(--gold-soft);
    border-radius: 4px; padding: 18px 20px; margin: 18px 0;
}
.price-row { display: flex; justify-content: space-between; font-size: 15px; padding: 4px 0; color: var(--text-dim); }
.price-row strong { color: var(--text); font-weight: 500; }
.price-total {
    font-size: 17px; border-top: 1px solid var(--gold-soft);
    margin-top: 10px; padding-top: 12px;
}
.price-total span { color: var(--text); }
.price-total strong { color: var(--accent); font-size: 24px; font-family: var(--font-heading); }
.price-note { font-size: 12.5px; color: var(--text-dim); margin-top: 8px; }

.form-error {
    background: rgba(229,72,60,.12); color: #ff9a8d;
    border: 1px solid rgba(229,72,60,.4);
    border-radius: 4px; padding: 12px 15px; font-size: 14px; margin-bottom: 14px;
}
.form-hint { font-size: 12.5px; color: var(--text-dim); margin-top: 14px; text-align: center; }

.booking-success { text-align: center; }
.success-icon { font-size: 44px; margin-bottom: 10px; }
.booking-success h3 { font-size: 24px; margin-bottom: 12px; }
.booking-success p { margin-bottom: 12px; color: var(--text-dim); }
.booking-success strong { color: var(--accent); }

/* ---------- Preise ---------- */
.price-cards { display: grid; gap: 18px; }
.tariff-card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 28px 24px;
}
.tariff-card h3 {
    font-size: 21px; margin-bottom: 18px; color: var(--accent);
    letter-spacing: .02em;
}
.tariff-list { list-style: none; }
.tariff-list li {
    display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
    padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 15px; color: var(--text-dim);
}
.tariff-list li:last-child { border-bottom: 0; }
.tariff-list strong { color: var(--text); font-weight: 500; white-space: nowrap; }
.tariff-note { font-size: 12.5px; color: var(--text-dim); margin-top: 14px; }

/* ---------- Leistungen ---------- */
.services-grid { display: grid; gap: 14px; }
.service-card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 28px 20px; text-align: center;
    transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.service-icon { font-size: 30px; margin-bottom: 14px; filter: grayscale(.2); }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--text-dim); }

/* ---------- Fahrzeug ---------- */
.vehicle-grid { display: grid; gap: 16px; margin-bottom: 26px; }
.vehicle-photo {
    border-radius: 6px; overflow: hidden;
    border: 1px solid var(--card-border);
}
.vehicle-photo img {
    width: 100%; height: 240px; object-fit: cover;
    transition: transform .6s ease;
}
.vehicle-photo:hover img { transform: scale(1.04); }
.vehicle-features {
    list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px;
    justify-content: center; padding: 0;
}
.vehicle-features li {
    font-size: 13.5px; color: var(--text-dim);
    display: flex; align-items: center; gap: 9px;
}
.vehicle-features li::before { content: '◆'; color: var(--accent); font-size: 8px; }

/* ---------- Über uns ---------- */
.about-section .about-text {
    max-width: 660px; margin: 0 auto; text-align: center;
    color: var(--text-dim); font-size: 16px;
}

/* ---------- Legal ---------- */
.legal-section { max-width: 780px; }
.legal-content {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 34px 26px;
}
.legal-content h2 { font-size: 28px; margin-bottom: 18px; }
.legal-content h3 { font-size: 17px; margin: 24px 0 8px; color: var(--accent); }
.legal-content p { margin-bottom: 10px; font-size: 14.5px; color: #c6c3bb; }

/* ---------- Footer ---------- */
.site-footer {
    background: #08080b; border-top: 1px solid var(--card-border);
    padding: 56px 22px 26px; margin-top: 50px;
}
.footer-grid { display: grid; gap: 32px; max-width: 1020px; margin: 0 auto; }
.site-footer h3 {
    color: var(--accent); font-size: 13px; font-family: var(--font);
    text-transform: uppercase; letter-spacing: .24em; font-weight: 500;
    margin-bottom: 14px;
}
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 8px; }
.footer-copy {
    text-align: center; font-size: 12.5px; color: #5d5a54; margin-top: 40px;
    letter-spacing: .06em;
}

/* ---------- Floating Call Button ---------- */
.call-fab {
    position: fixed; right: 16px; bottom: 16px; z-index: 60;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); color: #121212;
    display: flex; align-items: center; justify-content: center;
    font-size: 23px; text-decoration: none;
    box-shadow: 0 8px 26px rgba(0,0,0,.5);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100;
    background: #1a1a20; border: 1px solid var(--card-border);
    border-radius: 8px; padding: 18px;
    box-shadow: 0 16px 50px rgba(0,0,0,.6);
    font-size: 13.5px; color: var(--text-dim);
}
.cookie-banner strong { color: var(--text); }
.cookie-banner p { margin-bottom: 12px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Desktop ---------- */
@media (min-width: 760px) {
    .main-nav { display: flex; }
    .header-call { margin-left: 0; }
    .price-cards { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
    .booking-map { height: 330px; }
    .call-fab { display: none; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .cookie-banner { left: auto; max-width: 430px; }
    .vehicle-grid { grid-template-columns: 1fr 1fr; }
    .vehicle-photo img { height: 320px; }
}
@media (max-width: 759px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}
