/* G·Uhr — style.css v20190314 */
/* Farben: Navy #1B3C53, Steel #456882, Sand #D2C1B6, Creme #F9F3EF */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    background: #F9F3EF;
}

a {
    color: #1B3C53;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1B3C53;
}

h1 { font-size: 28px; letter-spacing: -0.02em; }
h2 { font-size: 24px; margin-bottom: 18px; }
h3 { font-size: 18px; margin-bottom: 10px; }

.wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== NAV ====== */

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #1B3C53;
    border-bottom: 2px solid #456882;
}

.nav-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
}

.logo {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #F9F3EF;
    letter-spacing: 0.02em;
}

.logo:hover {
    text-decoration: none;
    color: #D2C1B6;
}

.logo-punkt {
    color: #D2C1B6;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #D2C1B6;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.aktiv {
    color: #F9F3EF;
    border-bottom-color: #D2C1B6;
    text-decoration: none;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.burger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F9F3EF;
    transition: transform 0.2s, opacity 0.2s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

.burger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ====== HERO ====== */

.hero {
    background: #1B3C53;
    padding: 80px 0 36px;
    color: #F9F3EF;
}

.hero-inner {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D2C1B6;
    margin-bottom: 10px;
}

.hero h1 {
    color: #F9F3EF;
    font-size: 30px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 15px;
    line-height: 1.5;
    color: #D2C1B6;
    max-width: 520px;
}

.hero-kontakt {
    margin-top: 16px;
}

.hero-kontakt a {
    display: inline-block;
    color: #F9F3EF;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border: 2px solid #D2C1B6;
    margin-right: 10px;
    margin-bottom: 6px;
}

.hero-kontakt a:hover {
    background: #456882;
    border-color: #456882;
    text-decoration: none;
}

/* ====== TRUST STRIP ====== */

.vertrauen {
    background: #456882;
    padding: 14px 0;
    color: #F9F3EF;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.03em;
}

.vertrauen-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vertrauen span {
    white-space: nowrap;
}

/* ====== LEISTUNGEN (Services) ====== */

.leistungen {
    padding: 48px 0 36px;
    background: #F9F3EF;
}

.leistungen h2 {
    margin-bottom: 8px;
}

.leistungen-intro {
    color: #555;
    margin-bottom: 28px;
    max-width: 600px;
}

.leistungen-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.leistung-karte {
    background: #fff;
    border: 1px solid #D2C1B6;
    padding: 22px 20px;
    flex: 1 1 220px;
    max-width: 340px;
}

.leistung-karte h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.leistung-karte p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.leistung-karte--breit {
    flex: 1 1 460px;
    max-width: 520px;
    border-left: 3px solid #1B3C53;
}

.leistung-preis {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1B3C53;
}

/* ====== RECHNER (Calculator) ====== */

.rechner {
    padding: 48px 0 40px;
    background: #fff;
    border-top: 1px solid #D2C1B6;
    border-bottom: 1px solid #D2C1B6;
}

.rechner h2 {
    margin-bottom: 6px;
}

.rechner-hinweis {
    font-size: 12px;
    color: #888;
    margin-bottom: 22px;
}

.rechner-form {
    max-width: 520px;
}

.rechner-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1B3C53;
}

.rechner-form select,
.rechner-form input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    border: 1px solid #bbb;
    background: #F9F3EF;
    margin-bottom: 16px;
    border-radius: 2px;
}

.rechner-form select:focus,
.rechner-form input:focus {
    outline: none;
    border-color: #1B3C53;
}

.btn {
    display: inline-block;
    padding: 9px 24px;
    background: #1B3C53;
    color: #F9F3EF;
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.btn:hover {
    background: #456882;
    text-decoration: none;
}

.rechner-ergebnis {
    margin-top: 20px;
    padding: 16px 20px;
    background: #F9F3EF;
    border-left: 3px solid #456882;
}

.rechner-ergebnis strong {
    font-size: 20px;
    color: #1B3C53;
}

.rechner-ergebnis p {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* ====== FAELLE (Cases) ====== */

.faelle {
    padding: 48px 0 40px;
    background: #F9F3EF;
}

.faelle h2 {
    margin-bottom: 24px;
}

.fall {
    background: #fff;
    border: 1px solid #D2C1B6;
    padding: 22px 24px;
    margin-bottom: 14px;
}

.fall-kopf {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.fall h3 {
    font-size: 16px;
    margin-bottom: 0;
}

.fall-datum {
    font-size: 12px;
    color: #888;
}

.fall p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.fall-ergebnis {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #456882;
}

/* ====== KARTE (Map) ====== */

.karte-sektion {
    padding: 40px 0 0;
    background: #fff;
    border-top: 1px solid #D2C1B6;
}

.karte-sektion h2 {
    margin-bottom: 16px;
}

#karte {
    width: 100%;
    height: 320px;
    border: 1px solid #D2C1B6;
}

/* ====== KONTAKT ====== */

.kontakt {
    padding: 44px 0 40px;
    background: #F9F3EF;
}

.kontakt-inner {
    display: flex;
    gap: 40px;
}

.kontakt-info {
    flex: 1;
}

.kontakt-info h2 {
    margin-bottom: 14px;
}

.kontakt-info p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.kontakt-info address {
    font-style: normal;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.kontakt-formular {
    flex: 1;
    max-width: 440px;
}

.kontakt-formular label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1B3C53;
}

.kontakt-formular input,
.kontakt-formular textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    border: 1px solid #bbb;
    background: #fff;
    margin-bottom: 14px;
    border-radius: 2px;
}

.kontakt-formular textarea {
    height: 100px;
    resize: vertical;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
    outline: none;
    border-color: #1B3C53;
}

.meldung {
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.meldung--erfolg {
    background: #e8f0e4;
    border: 1px solid #a3c293;
    color: #2d5016;
}

.meldung--fehler {
    background: #fce8e8;
    border: 1px solid #d4a0a0;
    color: #6b1d1d;
}

/* ====== FOOTER ====== */

.fuss {
    background: #1B3C53;
    color: #D2C1B6;
    padding: 36px 0 0;
}

.fuss-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.fuss-spalte {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.fuss-logo {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    color: #F9F3EF;
    display: block;
    margin-bottom: 8px;
}

.fuss strong {
    display: block;
    color: #F9F3EF;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.fuss address,
.fuss p {
    font-style: normal;
    font-size: 13px;
    line-height: 1.6;
}

.fuss a {
    color: #D2C1B6;
}

.fuss a:hover {
    color: #F9F3EF;
}

.zeiten-tabelle {
    font-size: 13px;
    border-collapse: collapse;
}

.zeiten-tabelle td {
    padding: 2px 14px 2px 0;
}

.fuss-links {
    list-style: none;
    font-size: 13px;
}

.fuss-links li {
    margin-bottom: 3px;
}

.fuss-unten {
    border-top: 1px solid #456882;
    margin-top: 16px;
    padding: 12px 20px;
    text-align: center;
    font-size: 11px;
    color: #7a9ab0;
}

/* ====== GARMIN PAGE ====== */

.garmin-hero {
    background: #1B3C53;
    padding: 76px 0 32px;
    color: #F9F3EF;
}

.garmin-hero h1 {
    color: #F9F3EF;
    margin-bottom: 10px;
}

.garmin-hero p {
    color: #D2C1B6;
    max-width: 560px;
}

.garmin-leistungen {
    padding: 40px 0;
    background: #F9F3EF;
}

.garmin-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
}

.garmin-karte {
    background: #fff;
    border: 1px solid #D2C1B6;
    padding: 20px;
    flex: 1 1 280px;
    max-width: 340px;
}

.garmin-karte h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #1B3C53;
}

.garmin-karte p {
    font-size: 13px;
    color: #555;
}

.garmin-karte ul {
    margin-top: 6px;
    padding-left: 18px;
    font-size: 13px;
    color: #444;
}

.garmin-karte ul li {
    margin-bottom: 3px;
}

.garmin-modelle {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #D2C1B6;
}

.modelle-liste {
    column-count: 3;
    column-gap: 24px;
    font-size: 14px;
    margin-top: 16px;
    list-style: none;
}

.modelle-liste li {
    padding: 3px 0;
    border-bottom: 1px dotted #D2C1B6;
}

.garmin-hinweis {
    padding: 32px 0;
    background: #F9F3EF;
}

.garmin-hinweis-box {
    background: #fff;
    border-left: 3px solid #456882;
    padding: 18px 22px;
    font-size: 14px;
    color: #444;
}

/* ====== BLOG ====== */

.blog-hero {
    background: #1B3C53;
    padding: 76px 0 28px;
    color: #F9F3EF;
}

.blog-hero h1 {
    color: #F9F3EF;
    margin-bottom: 6px;
}

.blog-hero p {
    color: #D2C1B6;
    font-size: 14px;
}

.blog-liste {
    padding: 40px 0;
    background: #F9F3EF;
}

.blog-eintrag {
    background: #fff;
    border: 1px solid #D2C1B6;
    padding: 24px;
    margin-bottom: 16px;
    max-width: 720px;
}

.blog-eintrag h2 {
    font-size: 19px;
    margin-bottom: 4px;
}

.blog-eintrag h2 a {
    color: #1B3C53;
}

.blog-eintrag h2 a:hover {
    color: #456882;
}

.blog-datum {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.blog-eintrag p {
    font-size: 14px;
    color: #444;
    line-height: 1.55;
}

.blog-eintrag--letzter {
    border-left: 3px solid #D2C1B6;
}

/* ====== LEGAL PAGES ====== */

.legal {
    padding: 76px 0 48px;
    background: #F9F3EF;
}

.legal h1 {
    margin-bottom: 24px;
}

.legal h2 {
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal h3 {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.legal p,
.legal ul,
.legal li {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.legal ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal p {
    margin-bottom: 10px;
}

.legal address {
    font-style: normal;
}

.legal a {
    color: #456882;
}

/* ====== COOKIE HINWEIS ====== */

.cookie-hinweis {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #1B3C53;
    border-top: 2px solid #456882;
    padding: 14px 0;
    color: #D2C1B6;
    font-size: 13px;
}

.cookie-hinweis-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-hinweis p {
    flex: 1;
    line-height: 1.5;
}

.cookie-hinweis a {
    color: #F9F3EF;
    text-decoration: underline;
}

.cookie-btn {
    white-space: nowrap;
    background: #456882;
    padding: 7px 18px;
    font-size: 12px;
}

.cookie-btn:hover {
    background: #5a82a0;
}

@media (max-width: 600px) {
    .cookie-hinweis-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ====== RESPONSIVE ====== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        background: #1B3C53;
        border-top: 1px solid #456882;
        flex-direction: column;
        padding: 12px 20px;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #456882;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 14px;
    }

    .burger {
        display: block;
    }

    h1 { font-size: 24px; }
    h2 { font-size: 20px; }

    .hero-inner {
        flex-direction: column;
    }

    .kontakt-inner {
        flex-direction: column;
    }

    .kontakt-formular {
        max-width: 100%;
    }

    .leistung-karte,
    .leistung-karte--breit {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .garmin-karte {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .modelle-liste {
        column-count: 2;
    }

    .fuss-inner {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vertrauen-inner {
        flex-direction: column;
        gap: 6px;
    }

    .modelle-liste {
        column-count: 1;
    }

    .hero h1 {
        font-size: 22px;
    }
}
