/* Kanal-Drohne Kuchler - Basis (alle Geraete) */
:root {
    --c-bg: #0e1418;
    --c-bg-light: #162026;
    --c-panel: #1c2a33;
    --c-text: #e8edf0;
    --c-text-dim: #a8b6bd;
    --c-brand: #c00000;       /* Kuchler-Rot */
    --c-brand-light: #e02020;
    --c-cta: #2e9e5b;         /* Signal-Gruen */
    --c-cta-hover: #37b96b;
    --c-line: #2a3a44;
    --wrap: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; margin-top: 2.5rem; }
h3 { font-size: 1.3rem; }
a { color: #7fc4e8; }
a:hover { color: #a8d8f0; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
    background: rgba(14, 20, 24, .95);
    border-bottom: 2px solid var(--c-brand);
    position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 10px 20px; }
.logo img { display: block; }
.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav > ul { display: flex; gap: 4px; }
.main-nav a { color: var(--c-text); text-decoration: none; padding: 10px 14px; display: block; border-radius: 4px; }
.main-nav a:hover, .main-nav li.active > a { background: var(--c-panel); color: #fff; }
.main-nav li { position: relative; }
.main-nav .sub { display: none; position: absolute; left: 0; top: 100%; background: var(--c-bg-light); min-width: 240px; border: 1px solid var(--c-line); border-radius: 0 0 6px 6px; }
.main-nav li:hover > .sub, .main-nav li:focus-within > .sub { display: block; }
.nav-toggle { display: none; background: none; border: 1px solid var(--c-line); color: var(--c-text); font-size: 1.4rem; padding: 4px 12px; border-radius: 4px; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 26px; border-radius: 6px;
    text-decoration: none; font-weight: 700; letter-spacing: .02em;
}
.btn-cta { background: var(--c-cta); color: #fff !important; }
.btn-cta:hover { background: var(--c-cta-hover); }

/* Hero */
.hero { position: relative; overflow: hidden; background: #000; }
.hero-img { width: 100%; display: block; object-fit: cover; min-height: 320px; max-height: 640px; }
.hero-overlay
{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(14,20,24,.35));
}
.hero-text {
    background: rgba(14, 20, 24, .62);
    padding: 28px 32px; border-radius: 8px; max-width: 640px;
    margin: 0 auto; text-align: center;
    border-left: 4px solid var(--c-brand);
}
.hero-pos-2 .hero-text { margin: 0 0 0 5%; text-align: left; }
.hero-pos-1 .hero-text { margin: 0 5% 0 auto; text-align: left; }
.hero-kicker { text-transform: uppercase; letter-spacing: .18em; color: var(--c-brand-light); font-weight: 700; margin: 0 0 8px; font-size: .85rem; }
.hero-text h1 { margin: 0 0 12px; }
.hero-body { color: var(--c-text-dim); }

/* Breadcrumb */
.breadcrumb { padding: 14px 20px 0; font-size: .88rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--c-text-dim); }
.breadcrumb a { color: var(--c-text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-text); }
.breadcrumb span[aria-current] { color: var(--c-text); }

/* Inhalt */
.site-main { padding: 24px 20px 56px; }
.site-main .ce-textpic { margin: 2.2rem 0; }
.frame { margin-bottom: 2rem; }
.frame-type-textmedia .ce-gallery img { border-radius: 8px; }
.ce-intext.ce-right .ce-gallery { float: right; margin-left: 28px; margin-bottom: 12px; }
.ce-intext.ce-left .ce-gallery { float: left; margin-right: 28px; margin-bottom: 12px; }
.frame::after { content: ""; display: table; clear: both; }
.frame-type-table table { border-collapse: collapse; width: 100%; }
.frame-type-table td, .frame-type-table th { border: 1px solid var(--c-line); padding: 8px 12px; }

/* CTA-Band */
.cta-band { background: linear-gradient(135deg, var(--c-brand) 0%, #7a0d0d 100%); text-align: center; padding: 48px 20px; }
.cta-band h2 { margin: 0 0 8px; color: #fff; }
.cta-band p { color: #f3d9d9; margin: 0 0 20px; }

/* Footer */
.site-footer { background: #0a0f12; border-top: 1px solid var(--c-line); padding: 40px 0 16px; font-size: .92rem; }
.footer-inner { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a { color: var(--c-text-dim); text-decoration: none; line-height: 2; }
.footer-col a:hover { color: var(--c-text); }
.copyright { color: var(--c-text-dim); border-top: 1px solid var(--c-line); margin-top: 24px; padding-top: 14px; }

/* Powermail */
.powermail_fieldwrap { margin-bottom: 16px; }
.powermail_field input[type=text], .powermail_field input[type=email], .powermail_field input[type=tel], .powermail_field textarea {
    width: 100%; padding: 12px; border-radius: 6px; border: 1px solid var(--c-line);
    background: var(--c-bg-light); color: var(--c-text); font-size: 1rem;
}
.powermail_field textarea { min-height: 160px; }
.powermail_label { display: block; margin-bottom: 6px; font-weight: 600; }
.powermail_submit { background: var(--c-cta); color: #fff; border: 0; padding: 14px 32px; border-radius: 6px; font-size: 1.05rem; font-weight: 700; cursor: pointer; }
.powermail_submit:hover { background: var(--c-cta-hover); }
.powermail_message_error, .parsley-errors-list { color: #ff8080; list-style: none; padding: 0; }

/* Powermail Submit (Standard-Template nutzt btn btn-primary) */
.powermail_form input[type=submit], .powermail_form button[type=submit], .powermail_form .btn-primary {
    background: var(--c-cta); color: #fff; border: 0; padding: 14px 32px;
    border-radius: 6px; font-size: 1.05rem; font-weight: 700; cursor: pointer;
}
.powermail_form input[type=submit]:hover { background: var(--c-cta-hover); }
.powermail_form legend { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.powermail_form fieldset { border: 0; padding: 0; margin: 0; }
.video-caption { color: var(--c-text-dim); font-size: .85rem; }

/* Mobile Sticky-CTA-Leiste (nur mobil sichtbar, siehe mobile.css) */
.mobile-cta-bar { display: none; }
