/* Globale Stile und Typografie */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #2b3137; /* Dunkler Hintergrund für Hero/Footer */
    color: #f8f9fa; /* Standard Textfarbe bleibt hell für Hero/Footer */
}

/* Anpassung der Bootstrap-Variablen */
:root {
    /* Klassisches Dunkelblau für den hellen Mittelteil */
    --bs-primary: #0056b3; 
    /* NEU: Verkehrs-Orange/Gelb für Akzente */
    --bs-accent: #ff7700; 
}

.text-primary {
    color: var(--bs-primary) !important;
}
/* NEU: Klasse für die leuchtende Akzentfarbe */
.text-accent {
    color: var(--bs-accent) !important;
}

/* Hero Section (100vh) */
.hero-section {
    position: relative;
    height: 100vh; 
    min-height: 400px;
    background-image: url('driving-background.jpg'); /* Dein BMW Bild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: space-between; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); 
    overflow: hidden; 
}

/*... Scroll-Down Indicator Styling etc. (Unverändert) ...*/
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    letter-spacing: 1.5px;
    font-weight: 700;
}

.scroll-down-indicator {
    position: relative;
    z-index: 3;
    text-align: center;
    cursor: pointer;
}

.scroll-down-indicator a {
    color: rgba(255, 255, 255, 0.6) !important;
    display: block; 
    line-height: 1; 
    transition: color 0.3s;
}

.scroll-down-indicator a:hover {
    color: rgba(255, 255, 255, 1) !important; 
}

.scroll-icon {
    font-size: 3rem; 
    animation: gentleBounce 3s infinite; 
    display: block; 
}

@keyframes gentleBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px); 
    }
    60% {
        transform: translateY(-4px); 
    }
}

/* Hauptinhalt (Main) Hintergrund - HELL */
main {
    /* WICHTIG: Heller Hintergrund für den Kontrast */
    background-color: #ffffff !important; 
    color: #343a40 !important; /* Textfarbe auf dunkel */
}

/* Styling für die modernen Infoblöcke */
.modern-card {
    /* Boxen sind leicht abgesetzt vom weißen Main-Hintergrund */
    background-color: #f8f9fa; 
    border-radius: 10px;
    /* Dunkler Rand für scharfen Look */
    border: 1px solid #dee2e6; 
    color: #343a40; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.modern-card:hover {
    transform: translateY(-5px); 
    /* Leichter Schatten auf hellem Hintergrund */
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15) !important; 
}

/* Footer-Styling */
footer {
    background-color: #212529 !important;
}

footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff !important;
}

/* Responsive Anpassungen */
@media (max-width: 767.98px) {
    .hero-section {
        height: 100vh;
        min-height: 300px;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .display-5 {
        font-size: 1.8rem;
    }
    .scroll-icon {
        font-size: 2rem;
    }
    /* Rahmen zwischen Standort-Details auf mobilen Geräten entfernen */
    .modern-card .border-end {
        border-right: none !important;
    }
}