@charset "UTF-8";
/* -------------------------------------
   Fahrzeugnovelle - Design System & Theme
------------------------------------- */
/* --- Font Faces (Local) --- */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialSymbolsOutlined.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Inter.var.woff2") format("woff2-variations"), url("../fonts/Inter.var.woff2") format("woff2");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Merriweather-VariableFont_opsz,wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf") format("truetype");
}
:root {
  /* --- Color Palette: "Professional & Safe" --- */
  --primary-color: #0d1b2a;
  /* Deep Navy - Trust, Authority */
  --secondary-color: #d4a373;
  /* Muted Gold/Amber - Safety, Highlight */
  --accent-color: #2e5a88;
  /* Lighter Blue - Interfaces */
  --background-color: #f8f9fa;
  /* Soft White */
  --surface-color: #ffffff;
  /* Pure White for cards/nav */
  --text-color: #212529;
  /* Soft Black */
  --text-muted: #6c757d;
  /* Semantic Colors */
  --safety-green: #2a9d8f;
  --warning-amber: #e9c46a;
  --danger-red: #e76f51;
  /* --- Typography --- */
  --font-heading: "Merriweather", "Source Serif Pro", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --base-font-size: 100%;
  /* --- Accessibility Fonts --- */
  --font-accessible: "OpenDyslexic", sans-serif;
  /* --- Ported Reference Variables Map --- */
  /* Mapping old logic to new system */
  --color-nav-bg: var(--surface-color);
  --color-nav-text: var(--primary-color);
  --color-bg-accessability-panel: var(--surface-color);
  --footer-bg: #e9ecef;
}

/* --- Dark Mode Support --- */
.dark-mode {
  --primary-color: #e0e1dd;
  --background-color: #0d1b2a;
  --surface-color: #1b263b;
  --text-color: #e0e1dd;
  --text-muted: #aeb4b9;
  --color-nav-bg: var(--surface-color);
  --color-nav-text: var(--text-color);
  --footer-bg: #162433;
  /* Slightly lighter than main bg */
}

/* --- High Contrast Support --- */
.high-contrast {
  --primary-color: #000000;
  --secondary-color: #ffff00;
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --text-color: #000000;
  /* Force high contrast borders */
}
.high-contrast * {
  border-color: #000 !important;
}

/* --- Dark Mode + High Contrast Combination --- */
.dark-mode.high-contrast {
  --primary-color: #ffffff;
  --secondary-color: #ffff00;
  /* Safety Yellow */
  --background-color: #000000;
  /* Pure Black */
  --surface-color: #000000;
  --text-color: #ffffff;
  /* Pure White */
  --text-muted: #ffffff;
  --color-nav-bg: #000000;
  --color-nav-text: #ffff00;
  /* Yellow Text for max contrast */
  --footer-bg: #000000;
  /* Force high contrast borders in yellow for dark mode */
}
.dark-mode.high-contrast * {
  border-color: #ffff00 !important;
}

/* --- Dyslexia Support --- */
.dyslexia-mode {
  --font-heading: var(--font-accessible);
  --font-body: var(--font-accessible);
  line-height: 1.8;
}

/* --- Font Faces --- */
@font-face {
  font-family: "OpenDyslexic";
  src: url("../fonts/OpenDyslexic-Regular.woff2") format("woff2"), url("../fonts/OpenDyslexic-Regular.woff") format("woff"), url("../fonts/OpenDyslexic3-Regular.ttf") format("truetype"), url("../fonts/OpenDyslexic-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------
   Base & Reset
------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

main {
  padding: 2rem;
  max-width: 1200px;
  /* Standard width */
  margin: 0 auto;
  min-height: 80vh;
}

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

a:hover {
  text-decoration: underline;
}

/* -------------------------------------
   Navigation Component (Ported)
------------------------------------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--color-nav-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  position: relative;
  border-bottom: 3px solid var(--primary-color);
  /* Identity Line */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  height: 80px;
}

/* Smaller, cleaner */
.logo.dark-mode {
  display: none;
}

.logo.light-mode {
  display: inline;
}

.dark-mode .logo.dark-mode {
  display: inline;
}

.dark-mode .logo.light-mode {
  display: none;
}

.logo-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-nav-text);
  letter-spacing: -0.5px;
  /* Optical centering */
}

/* Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  width: 35px;
  height: 24px;
  position: relative;
  z-index: 1100;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  height: 3px;
  /* Reference height */
  border-radius: 3px;
  /* Reference rounded corners */
  position: absolute;
  width: 100%;
  transition: all 0.3s ease;
}

/* Austrian Flag Hamburger: Red - White - Red */
.hamburger,
.hamburger::before,
.hamburger::after {
  border-radius: 3px;
  /* Ensure rounded look */
}

.hamburger::before {
  background-color: #ed2939;
  /* Austrian Red */
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* Subtle definition */
}

.dark-mode .hamburger {
  border: none;
}

/* Bottom Line (Red) */
.hamburger::after {
  background-color: #ed2939;
  /* Austrian Red */
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  content: "";
  top: -9px;
  /* More spacing for flag ratio */
}

.hamburger::after {
  content: "";
  top: 9px;
}

.hamburger.open {
  background-color: transparent;
  border-color: transparent;
}

.hamburger.open::before {
  transform: rotate(45deg);
  top: 0;
  border: none;
  background-color: var(--color-nav-text);
  /* Turn to X color */
  height: 3px;
}

.hamburger.open::after {
  transform: rotate(-45deg);
  top: 0;
  border: none;
  background-color: var(--color-nav-text);
  height: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Responsive Interaction */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    /* Show hamburger on mobile */
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--color-nav-bg);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    /* Smooth corners at bottom */
    overflow: hidden;
    max-height: 0;
    /* Animation start state */
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 999;
    padding: 0;
    /* Animated padding */
  }
  .nav-links.active {
    display: flex;
    max-height: 90vh;
    /* Animation end state */
    padding: 1rem 0;
    border-bottom: 3px solid var(--secondary-color);
    /* Austrian Amber highlight */
  }
  .nav-item {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .nav-item a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
  }
}
/* Nav Links Styling (Desktop) */
.nav-item a {
  text-decoration: none;
  color: var(--color-nav-text);
  font-weight: 600;
  font-family: var(--font-heading);
  /* Serif for navigation */
  font-size: 1.1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.nav-item:hover > a {
  color: var(--primary-color);
  background-color: rgba(212, 163, 115, 0.15);
  /* Soft Amber BG */
  text-decoration: none;
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: " ⌄";
  font-size: 0.8rem;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface-color);
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  border-radius: 4px;
  border: 1px solid #eee;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-nav-text);
}

.dropdown li a:hover {
  background-color: var(--background-color);
  color: var(--primary-color);
}

.has-dropdown:hover > .dropdown {
  display: block;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--surface-color);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-item a {
    padding: 1rem 2rem;
  }
  .has-dropdown > .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1.5rem;
  }
}
/* -------------------------------------
   Accessibility Widget (Ported)
------------------------------------- */
.accessibility-widget {
  position: fixed;
  bottom: 2rem;
  /* Moved to bottom-left for less obstruction */
  left: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column-reverse;
  /* Expand upwards */
  align-items: flex-start;
}

.accessibility-toggle {
  background: var(--secondary-color);
  /* Safety Amber */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.accessibility-toggle:hover {
  transform: scale(1.1);
}

.accessibility-panel {
  margin-bottom: 0.5rem;
  background: var(--surface-color);
  color: var(--text-color);
  border-radius: 8px;
  padding: 1rem;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #eee;
}

.accessibility-panel[aria-hidden=false] {
  display: flex;
}

.accessibility-panel button {
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
}

.accessibility-panel button:hover {
  background-color: var(--background-color);
  border-color: #ddd;
}

.text-size-controls {
  display: flex;
  gap: 0.5rem;
}

/* -------------------------------------
   Footer (Ported & Adapted)
------------------------------------- */
.footer {
  background-color: var(--footer-bg);
  /* Light Gray for footer base */
  color: var(--text-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid #dee2e6;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-logo {
  margin-top: 1rem;
}

.footer-logo-img {
  height: 350px;
  opacity: 0.8;
}
.footer-logo-img.dark-mode {
  display: none;
}
.footer-logo-img.light-mode {
  display: inline;
}

.dark-mode .footer-logo-img.dark-mode {
  display: inline;
}
.dark-mode .footer-logo-img.light-mode {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-right: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

/* -------------------------------------
   Hero Section (Placeholder Style)
------------------------------------- */
#hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2c42 100%);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
#hero h2 {
  color: var(--secondary-color);
  font-family: var(--font-body);
  font-weight: 300;
}
#hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* -------------------------------------
   Utilities
------------------------------------- */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}

/* -------------------------------------
   Breadcrumbs
------------------------------------- */
#breadcrumb-container {
  padding: 0 2rem;
  max-width: 1200px;
  margin: 1rem auto 0;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  text-decoration: underline;
  color: var(--accent-color);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs span[aria-current=page] {
  font-weight: 600;
  color: var(--text-color);
}

.breadcrumb-ellipsis {
  color: var(--text-muted);
}

/* -------------------------------------
   Legal Pages Styles (Impressum & Datenschutz)
------------------------------------- */
/* Contact boxes */
.contact-box {
  background: var(--surface-color);
  border: 1px solid rgba(13, 27, 42, 0.1);
  /* Navy Opacity */
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.contact-box.impressum-main {
  background: rgba(42, 157, 143, 0.05);
  /* Safety Green tint */
  border-color: rgba(42, 157, 143, 0.3);
}

/* Contact details grid */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-item .material-symbols-outlined {
  color: var(--secondary-color);
  /* Amber */
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-item a {
  color: var(--accent-color);
  text-decoration: underline;
}
.contact-item a:hover {
  color: var(--primary-color);
}

/* Legal info rows */
.legal-info {
  background: var(--surface-color);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
}
.info-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.info-row strong {
  flex: 0 0 200px;
  color: var(--primary-color);
  margin-right: 1rem;
}
.info-row span {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }
  .info-row strong {
    flex: none;
    margin-bottom: 0.5rem;
  }
  .info-row span {
    flex: none;
  }
}

/* Board information */
.board-info {
  background: var(--surface-color);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.board-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.board-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.board-member {
  padding: 1rem;
  background: rgba(212, 163, 115, 0.05);
  /* Amber tint */
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: 0.25rem;
}
.board-member strong {
  color: var(--primary-color);
}

/* Attribution and funding info */
.attribution-info,
.funding-info {
  background: var(--surface-color);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.attribution-info h3,
.funding-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.attribution-info h3:first-child,
.funding-info h3:first-child {
  margin-top: 0;
}
.attribution-info ul,
.funding-info ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.attribution-info ul li,
.funding-info ul li {
  margin-bottom: 0.5rem;
}
.attribution-info ul li a,
.funding-info ul li a {
  color: var(--accent-color);
  text-decoration: underline;
}
.attribution-info ul li a:hover,
.funding-info ul li a:hover {
  color: var(--primary-color);
}

.funding-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(42, 157, 143, 0.05);
  /* Green tint */
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 0.25rem;
}
.funding-item:last-child {
  margin-bottom: 0;
}
.funding-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

/* Bank info */
.bank-info {
  margin: 1.5rem 0;
}
.bank-info .contact-box {
  background: rgba(233, 196, 106, 0.05);
  /* Warning Amber tint */
  border-color: rgba(233, 196, 106, 0.2);
}

/* Dark mode adjustments for legal pages */
.dark-mode .contact-box,
.dark-mode .legal-info,
.dark-mode .board-info,
.dark-mode .attribution-info,
.dark-mode .funding-info {
  background: var(--surface-color);
  border-color: rgba(212, 163, 115, 0.2);
  /* Amber border */
}
.dark-mode .contact-box.impressum-main {
  background: rgba(42, 157, 143, 0.1);
}
.dark-mode .board-member,
.dark-mode .funding-item {
  background: rgba(212, 163, 115, 0.1);
  border-color: rgba(212, 163, 115, 0.3);
}
.dark-mode .bank-info .contact-box {
  background: rgba(233, 196, 106, 0.1);
  border-color: rgba(233, 196, 106, 0.3);
}/*# sourceMappingURL=styles.css.map */