/* ===================================================
   KFZ Aufbereitung Enrico Vogel
   Kleines Unternehmen — klar, ehrlich, freundlich
   Einziger Schrift: Open Sans (lokal, kein Google)
=================================================== */

@font-face {
  font-family: 'Open Sans';
  src: url('open-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('open-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('open-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('open-sans-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue:        #1c3a5e;
  --blue-dark:   #122840;
  --blue-light:  #e8f0f8;
  --yellow:      #e8a800;
  --yellow-pale: #fdf6e3;
  --white:       #ffffff;
  --gray-bg:     #f5f6f7;
  --gray-border: #dde1e7;
  --text:        #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #8a96a6;
  --radius:      6px;
  --font:        'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LABELS & HEADINGS ===== */
.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.label-tag.light { color: var(--yellow); }

h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 1.2rem;
}
h2.light { color: var(--white); }

.body-text {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover {
  background: #d09700;
  border-color: #d09700;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: var(--blue-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow 0.2s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-name {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.logo-name strong {
  font-weight: 800;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.83rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-nav:hover { background: #d09700; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}

/* Photo area */
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #0e2035;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 2px dashed rgba(232,168,0,0.3);
}
.hero-photo-icon { width: 52px; height: 52px; opacity: 0.5; }
.hero-photo-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.hero-photo-hint {
  font-size: 0.68rem;
  color: rgba(232,168,0,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,32,53,0.95) 0%,
    rgba(14,32,53,0.80) 50%,
    rgba(14,32,53,0.40) 100%
  );
}

/* Hero content */
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.hero-specialbadge {
  display: inline-flex;
  align-items: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,168,0,0.15);
  border: 1px solid rgba(232,168,0,0.5);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.hero-company-name {
  font-family: var(--font);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-company-name span {
  color: var(--yellow);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 1.5rem;
  background: var(--gray-bg);
  border-top: 3px solid var(--yellow);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--blue), #2a4f7a);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-svg { width: 80%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }
.about-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}


/* ===== SERVICES ===== */
.services {
  padding: 5rem 1.5rem;
  background: var(--blue-dark);
  background-color: #0e2035;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,168,0,0.25);
}
.service-card.featured {
  border-color: rgba(232,168,0,0.35);
  background: rgba(232,168,0,0.06);
}
.service-badge-top {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-icon { margin-bottom: 0.9rem; color: rgba(255,255,255,0.7); display: flex; }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card.featured h3 { color: var(--yellow); }
.service-card.featured .service-icon { color: var(--yellow); }
.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why {
  padding: 5rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-item {
  padding: 1.25rem;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
}
.why-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.6;
  margin-bottom: 0.35rem;
}
.why-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}
.why-item p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.why-text .btn-primary { margin-top: 0.5rem; }

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 1.5rem;
  background: var(--blue);
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact-body {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-icon { margin-bottom: 0.4rem; color: var(--yellow); display: flex; }
.ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ci-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
a.ci-value:hover { color: var(--yellow); }

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-logo {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .stat-divider { display: none; }
  .hero-cta { flex-direction: column; }
}
