@font-face {
font-family: 'Inter';
src: url('fonts/Inter-Light.woff2') format('woff2');
font-weight: 300;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Inter';
src: url('fonts/Inter-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Inter';
src: url('fonts/Inter-Medium.woff2') format('woff2');
font-weight: 500;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Inter';
src: url('fonts/Inter-SemiBold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Inter';
src: url('fonts/Inter-Bold.woff2') format('woff2');
font-weight: 700;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'FontAwesome';
src: url('fonts/fontawesome-webfont.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}

.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.fa-chevron-right:before { content: "\f054"; }
.fa-car:before { content: "\f1b9"; }
.fa-car-side:before { content: "\f5e4"; }
.fa-bars:before { content: "\f0c9"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-euro-sign:before { content: "\f153"; }
.fa-user-tie:before { content: "\f508"; }
.fa-plus-circle:before { content: "\f055"; }
.fa-minus-circle:before { content: "\f056"; }
.fa-arrow-up:before { content: "\f062"; }
.fa-quote-right:before { content: "\f10e"; }

:root {
--primary: #E30613;
--accent: #1F0601;
--bg: #F8F8F8;
--white: #F8F8F8;
--text: #1F0601;
--footer: #505E5B;
--light-gray: #e9e9e9;
--dark-gray: #333;
--box-shadow: 0 4px 15px rgba(0,0,0,0.1);
--transition: all 0.3s ease;
}

*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Header */
header {
background: var(--primary);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo-text {
color: var(--white);
font-size: 1.5rem;
font-weight: 700;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
}

.logo-text i {
font-size: 1.8rem;
}

nav ul {
list-style: none;
display: flex;
align-items: center;
gap: 25px;
}

nav a {
color: var(--white);
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: var(--transition);
position: relative;
}

nav a:not(.btn-outline):after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: var(--white);
transition: var(--transition);
}

nav a:not(.btn-outline):hover:after {
width: 100%;
}

nav .btn-outline {
padding: 8px 16px;
font-size: 0.95rem;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
border-radius: 30px;
transition: var(--transition);
}

nav .btn-outline:hover {
background: var(--white);
color: var(--primary);
}

.mobile-menu-btn {
display: none;
color: var(--white);
font-size: 1.5rem;
cursor: pointer;
}

/* Hero Primary */
.hero-primary {
position: relative; 
height: 600px;
display: flex;
align-items: center;
text-align: center;
color: var(--white);
margin-bottom: 40px;
overflow: hidden; 
background-color: #333; 
}

.hero-primary .hero-image { 
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center bottom;
z-index: 0; 
}

.hero-primary::before { 
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
z-index: 1;
}

.hero-primary .container {
position: relative;
z-index: 2; 
max-width: 800px;
}

.hero-primary h1 {
font-size: 3rem;
margin-bottom: 20px;
line-height: 1.2;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-primary p {
font-size: 1.3rem;
margin-bottom: 30px;
text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Intro */
#intro {
padding: 80px 0;
background: var(--white);
border-radius: 10px;
box-shadow: var(--box-shadow);
margin-bottom: 60px;
}

#intro h2 {
font-size: 2.2rem;
color: var(--primary);
margin-bottom: 25px;
text-align: center;
}

#intro p {
margin-bottom: 20px;
font-size: 1.1rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.intro-features {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-top: 40px;
}

.feature-item {
flex: 1;
min-width: 250px;
max-width: 300px;
text-align: center;
padding: 25px;
background: var(--light-gray);
border-radius: 8px;
transition: var(--transition);
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: var(--box-shadow);
}

.feature-item i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 15px;
}

.feature-item h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

/* Hero Secondary */
.hero-secondary {
position: relative;
height: 400px;
background: url('images/DFSK-Fengon-Shadow.webp') center/cover no-repeat;
display: flex;
align-items: center;
text-align: center;
color: var(--white);
margin: 60px 0;
border-radius: 10px;
overflow: hidden;
}

.hero-secondary::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-secondary .container {
position: relative;
z-index: 1;
max-width: 700px;
}

.hero-secondary h2 {
font-size: 2.2rem;
margin-bottom: 15px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-secondary p {
font-size: 1.2rem;
margin-bottom: 30px;
text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
display: inline-block;
padding: 14px 28px;
border-radius: 30px;
font-weight: 600;
text-decoration: none;
transition: var(--transition);
text-align: center;
}

.btn-primary {
background: var(--primary);
color: var(--white);
box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.btn-primary:hover {
background: #c00510;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: var(--white);
}

/* Models */
#models {
padding: 80px 0;
}

#models h2 {
font-size: 2.2rem;
text-align: center;
margin-bottom: 50px;
color: var(--primary);
}

.models-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.card {
background: var(--white);
border-radius: 12px;
box-shadow: var(--box-shadow);
overflow: hidden;
transition: var(--transition);
height: 100%;
}

.card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
transition: var(--transition);
}

.card:hover img {
transform: scale(1.05);
}

.card-content {
padding: 25px;
}

.card-content h3 {
margin-bottom: 15px;
font-size: 1.4rem;
color: var(--accent);
}

.card-content p {
font-size: 1.1rem;
color: var(--primary);
font-weight: 600;
}

.card-content .details {
margin-top: 15px;
font-size: 0.95rem;
color: var(--text);
}

.card-content .btn {
margin-top: 20px;
padding: 10px 20px;
font-size: 0.9rem;
}

.note {
text-align: center;
font-size: 0.9rem;
color: var(--dark-gray);
margin-top: 20px;
}

/* FAQ */
.faq {
padding: 80px 0;
background: var(--white);
border-radius: 10px;
box-shadow: var(--box-shadow);
}

.faq h2 {
font-size: 2.2rem;
color: var(--primary);
margin-bottom: 40px;
text-align: center;
}

.faq-container {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
margin-bottom: 20px;
border-bottom: 1px solid var(--light-gray);
padding-bottom: 20px;
}

.faq-item:last-child {
border-bottom: none;
}

.faq-question {
font-weight: 600;
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--accent);
display: flex;
align-items: center;
cursor: pointer;
}

.faq-question i {
margin-right: 10px;
color: var(--primary);
}

.faq-answer {
padding-left: 30px;
font-size: 1.05rem;
display: none;
}


.faq-cta {
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}

/* Testimonials - Schema.org Optimierung: Inline-Markup entfernt */
.testimonials {
padding: 80px 0;
margin-bottom: 40px;
}

.testimonials h2 {
font-size: 2.2rem;
text-align: center;
margin-bottom: 50px;
color: var(--primary);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--white);
border-radius: 12px;
padding: 30px;
box-shadow: var(--box-shadow);
position: relative;
}

.testimonial-card i {
color: var(--primary);
font-size: 2rem;
position: absolute;
top: 20px;
right: 20px;
opacity: 0.2;
}

.testimonial-text {
font-style: italic;
margin-bottom: 20px;
font-size: 1.05rem;
}

.testimonial-author {
display: flex;
align-items: center;
}

.testimonial-author img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
object-fit: cover;
}

.author-info h4 { 
margin-bottom: 5px;
}

.author-info p {
font-size: 0.9rem;
color: var(--dark-gray);
}


/* Footer */
.site-footer {
background: var(--footer);
color: var(--white);
padding: 60px 0 30px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-col h3 {
font-size: 1.3rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.footer-col h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background: var(--primary);
}

.footer-col p {
margin-bottom: 15px;
font-size: 0.95rem;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: var(--white);
text-decoration: none;
transition: var(--transition);
display: flex;
align-items: center;
gap: 8px;
}

.footer-links a:hover {
color: var(--primary);
padding-left: 5px;
}

.footer-social {
display: flex;
gap: 15px;
margin-top: 20px;
}

.footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
color: var(--white);
font-size: 1.2rem;
transition: var(--transition);
}

.footer-social a:hover {
background: var(--primary);
transform: translateY(-3px);
}

.social-icon {
width: 18px;
height: 18px;
filter: brightness(0) invert(1);
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 0.9rem;
}

.footer-bottom a {
color: var(--white);
text-decoration: none;
margin: 0 10px;
transition: var(--transition);
}

.footer-bottom a:hover {
color: var(--primary);
}

.disclaimer {
font-size: 0.8rem;
color: rgba(255,255,255,0.7);
margin-top: 20px;
line-height: 1.5;
}

/* Back to top button */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 999;
}

.back-to-top.visible {
opacity: 1;
visibility: visible;
}

.back-to-top:hover {
background: #c00510;
transform: translateY(-3px);
}

/* Impressum Page Styles */
.impressum-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 40px auto 60px auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.impressum-section h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

.impressum-section h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--accent);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 8px;
}

.impressum-section h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--accent);
}

.impressum-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.impressum-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style: disc;
}

.impressum-section li {
  margin-bottom: 8px;
}

.impressum-section a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.impressum-section a:hover {
  text-decoration: underline;
}

.address-block {
  margin-bottom: 20px;
  font-weight: 500;
}

/* Responsive Anpassungen für Impressum */
@media (max-width: 768px) {
  .impressum-section {
    padding: 40px 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .impressum-section h1 {
    font-size: 1.8rem;
  }
  .impressum-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .impressum-section {
    padding: 30px 15px;
  }
  .impressum-section h1 {
    font-size: 1.6rem;
  }
  .impressum-section h2 {
    font-size: 1.2rem;
  }
}

/* 404 Page Styles */
.not-found-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 700px;
  margin-top: 40px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.not-found-section h1 {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.not-found-section h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 700;
}

.not-found-section p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.7;
}

.not-found-section .btn {
  font-size: 1.1rem; 
}

/* Responsive Anpassungen für 404 */
@media (max-width: 768px) {
  .not-found-section {
    padding: 60px 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .not-found-section h1 {
    font-size: 4rem;
  }
  .not-found-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .not-found-section {
    padding: 40px 15px;
  }
  .not-found-section h1 {
    font-size: 3rem;
  }
  .not-found-section h2 {
    font-size: 1.4rem;
  }
  .not-found-section p {
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
.hero-primary h1 { font-size: 2.5rem; }
.hero-secondary h2 { font-size: 2rem; }
#intro h2, #models h2, .faq h2, .testimonials h2 { font-size: 2rem; }
.hero-primary { height: 500px; }
}

@media (max-width: 768px) {
.container { padding: 0 20px; }
.mobile-menu-btn { display: block; }
nav ul {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--primary);
flex-direction: column;
align-items: center;
justify-content: center;
gap: 30px;
transition: var(--transition);
z-index: 999;
}
nav ul.active { left: 0; }
.hero-primary { height: 450px; }
.hero-primary h1 { font-size: 2rem; }
.hero-primary p { font-size: 1.1rem; }
.hero-secondary { height: 350px; }
.hero-secondary h2 { font-size: 1.8rem; }
.hero-secondary p { font-size: 1.1rem; }
.btn { padding: 12px 24px; }
.models-grid, .testimonial-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 576px) {
.hero-primary { height: 400px; }
.hero-primary h1 { font-size: 1.8rem; }
.hero-primary p { font-size: 1rem; }
.hero-secondary h2 { font-size: 1.6rem; }
.hero-secondary p { font-size: 1rem; }
#intro h2, #models h2, .faq h2, .testimonials h2 { font-size: 1.8rem; }
.feature-item { min-width: 100%; }
.back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
.testimonials { margin-bottom: 32px; }
.faq-cta { margin-bottom: 32px; }
}

.card-content .details p {
color: #1F0601 !important;
font-weight: 500;
}

