:root {
    --red: #c8001a;
    --red-dark: #990014;
    --black: #0a0a0a;
    --bg-dark: #050509;
    --gray-light: #f4f4f5;
    --text: #1f2933;
    --radius-lg: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Gilda Display", arial;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
}

/* LAYOUT BASIS */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER / NAVIGATION */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(6px);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 200px;
    width: auto;
    display: block;
}

/* Navigation */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.main-nav a {
    color: #f4f4f5;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--red);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--red-light);
}

/* Mobile Navigation */

#nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: #f9fafb;
}

/* HERO */

.hero {
    background:
        radial-gradient(circle at top left, rgba(200, 0, 26, 0.7), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.95), #000000);
    color: #f9fafb;
    padding: 4rem 0 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fca5a5;
    margin-bottom: 0.6rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 3vw + 1.3rem, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero h1 span {
    font-weight: 400;
    display: block;
    font-size: 0.9em;
}

.hero-lead {
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 1.4rem;
    color: #e5e7eb;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.meta-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
}

.meta-value {
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #ffffff;
    color: var(--black);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #f9fafb;
    color: #f9fafb;
}

.btn-outline:hover {
    background: rgba(249, 250, 251, 0.06);
}

/* Hero Card rechts */

.hero-card {
    display: flex;
    justify-content: flex-end;
}

.hero-card-inner {
    width: 100%;
    max-width: 360px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), #020617);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.02rem;
}

.hero-card-inner ul {
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-card-inner li + li {
    margin-top: 0.25rem;
}

.hero-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.hero-card-badges span {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(200, 0, 26, 0.85);
}

/* SEKTIONEN ALLGEMEIN */

.section {
    padding: 3.5rem 0;
}

.section-dark {
    background: #050509;
    color: #e5e7eb;
}

.section-light {
    background: #f4f4f5;
}

.section-header {
    margin-bottom: 2rem;
}

.section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.section-header h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.section-sub {
    max-width: 520px;
    font-size: 0.95rem;
    color: #4b5563;
}

.section-dark .section-sub {
    color: #9ca3af;
}

/* GRID */

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2rem;
}

/* Chips & Owner Card */

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.chip {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: var(--gray-light);
    font-size: 0.8rem;
}

.owner-card {
    border-radius: var(--radius-lg);
    background: #0b0b11;
    color: #f9fafb;
    padding: 1.4rem 1.5rem;
}

.owner-name {
    font-weight: 700;
}

.owner-role {
    font-size: 0.84rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
}

.owner-quote {
    font-size: 0.9rem;
}

/* LEISTUNGEN – Karten */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
}

.card {
    border-radius: var(--radius-lg);
    background: #111827;
    border: 1px solid #1f2937;
    padding: 1.3rem 1.3rem 1.4rem;
    font-size: 0.93rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.section-dark .card {
    background: #111827;
    color: #e5e7eb;
}

.card .tagline {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: #fca5a5;
}

/* FUHRPARK */

.feature-list {
    list-style: none;
    font-size: 0.93rem;
}

.feature-list li + li {
    margin-top: 0.9rem;
}

.feature-list h3 {
    font-size: 1rem;
}

.feature-list p {
    font-size: 0.9rem;
    color: #4b5563;
}

.ideas-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #111827, #020617);
    color: #e5e7eb;
    padding: 1.5rem 1.5rem 1.6rem;
    font-size: 0.93rem;
}

.ideas-card ul {
    padding-left: 1rem;
}

.ideas-card li + li {
    margin-top: 0.35rem;
}

.ideas-note {
    font-size: 0.82rem;
    margin-top: 0.7rem;
    opacity: 0.9;
}

/* KONTAKT */

.info-box {
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.info-box ol {
    margin-left: 1.2rem;
    margin-top: 0.4rem;
}

/* Formular */

.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.form-group {
    margin-bottom: 0.9rem;
}

label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #4b5563;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-family: inherit;
    font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 1px rgba(200, 0, 26, 0.18);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.78rem;
    color: #6b7280;
}

/* FOOTER */

.site-footer {
    background: #020617;
    color: #9ca3af;
    font-size: 0.8rem;
    padding: 1.2rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 1rem;
}

.footer-links a:hover {
    color: #fca5a5;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-inner,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 4.2rem;
    }

    .hero-card {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        position: absolute;
        top: 64px;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(5, 5, 7, 0.98);
        padding: 1rem 1.2rem;
        gap: 0.9rem;
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    #nav-toggle:checked ~ .main-nav ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .logo-img {
        height: 60px;
    }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
  font-family: Arial, sans-serif;
}

.cookie-content {
  max-width: 600px;
  margin: auto;
}

.cookie-options label {
  display: block;
  margin: 10px 0;
}

.cookie-buttons button {
  padding: 10px 15px;
  margin: 10px 10px 0 0;
  cursor: pointer;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 4px;
}

.cookie-buttons button:hover {
  background: #0056b3;
}

.cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px 15px;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

