/* ===================================================================
   Lautern Taxi – site.css
   Modernes, eigenständiges Design (keine externen Abhängigkeiten)
   =================================================================== */

:root {
    --bg: #0e1013;
    --bg-alt: #15181d;
    --surface: #1b1f26;
    --surface-2: #232833;
    --text: #eef1f5;
    --text-muted: #a7b0bd;
    --line: #2a303a;
    --accent: #ffc21c;      /* Taxi-Gelb */
    --accent-600: #f0b000;
    --accent-ink: #1a1400;  /* Text auf Gelb */
    --success-bg: #123524;
    --success-tx: #7ee2a8;
    --error-bg: #3a1620;
    --error-tx: #ff9bb0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 40px rgba(0, 0, 0, .35);
    --maxw: 1140px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--accent);
    color: var(--accent-ink); padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    padding: .7em 1.3em; border-radius: 999px; font-weight: 700; font-size: 1rem;
    border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
    text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 18px rgba(255, 194, 28, .28); }
.btn-primary:hover { background: var(--accent-600); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-call { background: var(--accent); color: var(--accent-ink); }
.btn-lg { padding: .9em 1.7em; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(14, 16, 19, .85); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 44px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--text-muted); font-weight: 600; font-size: .98rem; }
.main-nav a:hover { color: var(--text); text-decoration: none; }
.header-call { margin-left: 8px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        radial-gradient(1100px 500px at 78% -10%, rgba(255, 194, 28, .16), transparent 60%),
        linear-gradient(180deg, #12151a 0%, var(--bg) 100%);
    padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 96px);
    border-bottom: 1px solid var(--line);
}
.hero-content { max-width: 720px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 700; color: var(--accent); margin: 0 0 .8rem; }
.hero h1 .accent { color: var(--accent); }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-muted); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 24px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; color: var(--text-muted); font-size: .92rem; font-weight: 600; }
.hero-badges li { position: relative; padding-left: 16px; }
.hero-badges li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-sub { color: var(--text-muted); margin: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 20px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 22px; transition: transform .15s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(255, 194, 28, .5); }
.card-icon { font-size: 1.9rem; margin-bottom: 10px; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--text-muted); margin: 0; font-size: .97rem; }

.services-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.service-row { padding: 22px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line); }
.service-row h3 { color: var(--accent); }
.service-row p { color: var(--text-muted); margin: 0; font-size: .97rem; }

/* ---------- Split (Über uns / Kontakt) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.split-text p { color: var(--text-muted); }
.stats { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; margin: 0; }
.stats li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 14px; text-align: center; }
.stats strong { display: block; font-size: 1.8rem; color: var(--accent); font-weight: 800; }
.stats span { color: var(--text-muted); font-size: .9rem; }

/* ---------- Reviews ---------- */
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.stars { color: var(--accent); letter-spacing: 2px; margin: 0 0 12px; font-size: 1.05rem; }
.review blockquote { margin: 0 0 14px; font-size: 1.02rem; }
.review-author { margin: 0; font-weight: 700; font-size: .95rem; }
.review-author span { color: var(--text-muted); font-weight: 500; }

/* ---------- Contact list ---------- */
.contact-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; align-items: baseline; gap: 12px; }
.contact-label { color: var(--text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

/* ---------- Form ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.35rem; margin-bottom: 18px; }
.booking-form .field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
input, textarea {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
    border: 1px solid var(--line); background: var(--bg); color: var(--text);
    font-family: inherit; font-size: 1rem;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 194, 28, .18); }
textarea { resize: vertical; }
.form-hint { font-size: .82rem; color: var(--text-muted); margin: 12px 0 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .95rem; }
.alert ul { margin: 8px 0 0; padding-left: 18px; }
.alert-success { background: var(--success-bg); color: var(--success-tx); border: 1px solid rgba(126, 226, 168, .3); }
.alert-error { background: var(--error-bg); color: var(--error-tx); border: 1px solid rgba(255, 155, 176, .3); }

/* ---------- Legal pages ---------- */
.legal h1 { margin-bottom: 24px; }
.legal h2 { font-size: 1.25rem; margin-top: 32px; }
.legal p { color: var(--text-muted); }
.legal-copyright { margin-top: 40px; color: var(--text-muted); font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0c0f; border-top: 1px solid var(--line); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-logo { height: 42px; margin-bottom: 14px; }
.footer-col h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text); }
.footer-col p { color: var(--text-muted); font-size: .95rem; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; }
.footer-bottom p { color: var(--text-muted); font-size: .85rem; margin: 0; }

/* ---------- Mobile call bar ---------- */
.mobile-call-bar {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--accent); color: var(--accent-ink); text-align: center;
    padding: 14px; font-weight: 800; box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
}
.mobile-call-bar:hover { text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .services-detail { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .main-nav { display: none; }
    .header-call { margin-left: auto; }
    .cards-3 { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .mobile-call-bar { display: block; }
    body { padding-bottom: 56px; }
    .contact-list li { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 460px) {
    .cards-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
