@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&display=swap');
/* Shared nav & footer — alle Seiten */
:root {
  --mt-blue:        #0099FF;
  --mt-blue-dark:   #0066cc;
  --mt-blue-glow:   rgba(0,153,255,0.35);
  --mt-bg:          #060c18;
  --mt-bg-page:     #0a1020;
  --mt-border:      #1e2a3d;
  --mt-text-muted:  #6b7fa0;
  --mt-text-light:  #b0bdd2;
  --mt-red:         #d91600;
  --mt-font-nav:    'Oswald', Arial, sans-serif;
  --mt-font-body:   'Open Sans', Arial, sans-serif;
  --mt-font-heading:'Big Shoulders Display', 'Arial Narrow', sans-serif;
}
/* Scrollbar immer sichtbar → verhindert Breitensprung beim Seitenwechsel */
html { overflow-y: scroll; }

/* ===== NAV ===== */
#site-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: #060c18 !important;
  border-bottom: 1px solid #1e2a3d !important;
}
#site-nav .inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  height: 48px !important;
}
#site-nav .nav-links {
  display: flex !important;
  gap: 4px !important;
}
#site-nav .nav-links a {
  font-family: 'Oswald', Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 8px 14px !important;
  border-radius: 4px !important;
  background: linear-gradient(160deg, #1c3050 0%, #0d1e38 100%) !important;
  border: 1px solid rgba(0,153,255,0.25) !important;
  box-shadow: 0 2px 8px rgba(0,102,204,0.35) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
#site-nav .nav-links a:hover {
  background: linear-gradient(160deg, #0099FF 0%, #0066cc 100%) !important;
  box-shadow: 0 2px 12px rgba(0,153,255,0.5) !important;
}

/* ===== SITE HEADER ===== */
#site-header {
  background: var(--mt-dark-2);
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--mt-border);
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  min-height: 186px;
  box-sizing: border-box;
}
#site-header .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-header .logo img {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
}
#site-header h1 {
  font-family: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-size: 2.0rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(160deg, #e8edf5 0%, #c8d5ec 45%, #a0b4cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #c8d5ec;
  margin: 0;
}

/* ===== FOOTER ===== */
#site-footer {
  background: #080c14;
  padding: 48px 0 28px;
  border-top: 1px solid var(--mt-border);
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  clear: both;
}
#site-footer .container,
#site-footer .page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 36px;
  margin-bottom: 32px;
}
#site-footer .footer-col h3 {
  font-size: 0.875rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 12px 0;
}
#site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#site-footer .footer-col ul li {
  margin-bottom: 8px;
}
#site-footer .footer-col ul li a {
  color: #6b7fa0;
  font-size: 16px !important;
  text-decoration: none;
  transition: color 0.2s;
}
#site-footer .footer-col ul li a:hover { color: var(--mt-blue); }
#site-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#site-footer .footer-social a {
  background: #1e2a3d;
  color: #8a9ab5;
  font-size: 16px !important;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
#site-footer .footer-social a:hover { background: var(--mt-blue); color: #fff; }
#site-footer .contact-item { margin-bottom: 10px; }
#site-footer .contact-item .label {
  font-size: 12px !important;
  color: #3a4d66;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
#site-footer .contact-item .value {
  color: #8a9ab5;
  font-size: 16px !important;
}
/* Höhere Spezifität um per-Seite inline <style>-Blöcke zu überschreiben */
#site-footer .footer-col .contact-item .label {
  font-size: 12px !important;
}
#site-footer .footer-col .contact-item .value,
#site-footer .footer-col .contact-item .value span {
  font-size: 16px !important;
  color: #fff !important;
}
#site-footer .footer-divider {
  border: none;
  border-top: 1px solid #1a2438;
  margin-bottom: 18px;
}
#site-footer .footer-copy {
  font-size: 13px;
  color: #3a4d66;
  text-align: center;
}
#site-footer .col-contact-h3 { margin-top: 16px; }

/* ===== BODY BACKGROUND ===== */
body {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site-footer { margin-top: auto; }

/* ===== SECTION MARGIN FIX (style.css sets section { margin-bottom: 3em }) ===== */
#faq-section, #choice-section, #page-hero { margin-bottom: 0 !important; }

/* ===== PAGE HERO WEISS (Auftraggeberstatus) ===== */
#page-hero {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 28%, rgba(255,255,255,0.82) 44%, rgba(255,255,255,0.12) 68%, rgba(0,0,0,0) 100%), url('../images/hero-banner.jpg') no-repeat center center / cover !important;
  border-bottom: 1px solid #e0e8f4 !important;
}
#page-hero::after { display: none !important; }
#page-hero h2 { color: #0a1a2e !important; }
.hero-tag {
  background: rgba(0,153,255,0.10) !important;
  color: #0077cc !important;
  border-color: rgba(0,153,255,0.28) !important;
}
.price-badge {
  background: #fff !important;
  border: 1px solid #d4e0f0 !important;
  box-shadow: 0 4px 20px rgba(0,80,180,0.10) !important;
}
.price-amount { color: #0a1a2e !important; }
.price-divider { background: #d4e0f0 !important; }

/* ===== AUFTRAGGEBER CHOICE SECTION ===== */
#choice-section {
  background: #fff !important;
  border-top: 1px solid #e8ecf2;
  box-shadow: inset 0 8px 28px rgba(0,0,0,0.05);
}
#choice-section h2 {
  color: #111 !important;
  max-width: 620px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  #site-nav .inner { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
  #site-nav .nav-links { gap: 10px; }
  #site-nav .nav-links a { font-size: 16px !important; min-height: 44px; display: inline-flex; align-items: center; }
  #site-footer .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  #site-header h1 { font-size: 1.1rem; }
}
