body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #000;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 78px;
    width: auto;
    display: block;
}

nav {
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #e50914;
}


.hero {
    background-image:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
        url("re-hero.png?v=200");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding-bottom: 70px;
    box-sizing: border-box;

    animation: audiVorfahren 1.4s ease-out both;
}

@keyframes audiVorfahren {
    from {
        background-position: -280px center;
        opacity: 0.35;
        filter: blur(2px);
    }
    to {
        background-position: center center;
        opacity: 1;
        filter: blur(0);
    }
}

.hero-content {
    animation: textEinblenden 1.2s ease-out 0.7s both;
}

@keyframes textEinblenden {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(34px, 5vw, 64px);
    color: #fff;
    margin: 0 0 12px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.65);
}

.hero p {
    font-size: 20px;
    margin: 0 auto 15px;
    max-width: 780px;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.65);
}


.btn {
    margin-top: 20px;
    padding: 14px 30px;
    background: #e50914;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn:hover {
    background: #c40812;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.hero-btn img{
    width:55px;
    height:60px;
}

.section {
    padding: 55px 60px;
    text-align: center;
}

.section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: stretch;
}

.card {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(229,9,20,0.4);
}

.section .card {
    margin-left: auto;
    margin-right: auto;
}

.kontakt-formular {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontakt-formular input,
.kontakt-formular textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.kontakt-formular button {
    background: #e50914;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.kontakt-formular button:hover {
    background: #c50914;
}

.kontakt-info {
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

.kontakt-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

.kontakt-info a:hover {
    color: #c50914;
}

.kontakt-info p {
    margin: 10px 0;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
}

@media (max-width: 900px) {
    header {
        
    }

    .logo img {
        height: 60px;
    }
.nav {
    width: 100%;
    padding: 18px 25px;
    display: flex;
    align-items: center;
}

.nav nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}

.nav a {
  margin-left: 0;
}

    .hero {
        min-height: 75vh;
        background-position: center center;
        padding-bottom: 40px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

form{
    max-width:600px;
    margin:0 auto;
    }

}
.vehicle-card a{
    color:#ff0000 !important;
    text-decoration:none;
    font-weight:700;
}

.vehicle-card a:hover{
    color:#ffffff !important;
}
a[href="/audi-a7.html"]{
    display:inline-block;
    margin-top:10px;
    padding:8px 15px;
    background:#b90000;
    color:#fff !important;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    transition:0.3s;
}

a[href="/audi-a7.html"]:hover{
    background:#ff0000;
}
form{
    max-width:600px;
    margin:0 auto;
}

form input:not([type="checkbox"]),
form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    box-sizing:border-box;
}
.datenschutz-check{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:15px 0;
    white-space:nowrap;
}

.datenschutz-check input[type="checkbox"]{
    width:auto;
    margin:0;
}

.datenschutz-check label{
    display:inline-block;
    margin:0;
}

.datenschutz-check input[type="checkbox"]{
    vertical-align:middle;
    margin-right:8px;
}

.datenschutz-check label{
    display:inline;
}

form button{
    width:100%;
    background:#b90000;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
}

form button:hover{
    background:#ff0000;
}
.datenschutz-check label{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:0;
}

.datenschutz-check input[type="checkbox"]{
    width:auto !important;
    height:auto !important;
    margin:0 !important;
}

/* Datenschutz Fix */
.datenschutz-check{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:15px 0;
}

.datenschutz-check label{
    margin:0;
    display:inline;
}

.datenschutz-check input[type="checkbox"]{
    width:auto !important;
    height:auto !important;
    margin:0 !important;
    vertical-align:middle;
}
.footer-btn{
    display:inline-block;
    background:#e50914;
    color:white !important;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    margin:5px;
    font-weight:bold;
}

.footer-btn:hover{
    background:#c40812;
}
.hero-btn{
    background:#25D366 !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.hero-btn img{
    width:24px;
    height:24px;
}
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float img{
    width:70px;
    height:70px;
    display:block;
}
header .nav {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
}

header .nav nav {
    margin-left: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
