body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === BOOTSTRAP OVERRIDES / CUSTOM STYLES === */

/* Navigation Anpassungen */
.navbar {
    padding: 20px 40px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: black !important;
}

/* Buttons: Wir nutzen Bootstrap Struktur, aber unsere Farben */
.btn-rot {
    background-color: #b30000; /* Unser Dunkelrot */
    color: white;
    border: none;
    font-weight: bold;
    /* Bootstrap Button Styles imitieren/ergänzen */
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out;
}

.btn-rot:hover {
    background-color: #8f0000;
    color: white;
}

/* Kleiner Abstand zwischen Buttons in der Navi */
.nav-item .btn {
    margin-left: 10px;
}


/* === INDEX: HERO BEREICH === */
.hero-bild {
    width: 100%;
    min-height: 600px; /* Min-Height statt fester Height */
    /* Motorrad Fahrer Bild */
    background-image: url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;          /* Flexbox zum Zentrieren */
    align-items: center;    /* Vertikal mittig */
    justify-content: center; /* Horizontal mittig */
}

.hero-text {
    text-align: center;
    color: white;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.hero-text h1 {
    font-size: 55px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: bold;
}

.btn-hero-weiss {
    background-color: white;
    color: black;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.link-hero {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* === ABSCHNITTE (Layout mit Floats) === */
.abschnitt {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    overflow: hidden; /* Clearfix */
}

.text-teil {
    width: 40%;
    margin-top: 40px;
}

.bild-teil {
    width: 50%;
}

.bild-teil img {
    width: 100%;
    display: block;
}

/* Hilfsklassen für links/rechts */
.links { float: left; }
.rechts { float: right; }

/* === LOGIN SEITE === */
.login-wrapper {
    padding-top: 80px;
    padding-bottom: 50px;
}

.login-box {
    /* Dieses verwaschene Rot/Lachsfarben */
    background-color: #cd5c5c; 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white; /* Text im Login Box weiß machen, sieht besser aus */
}

.login-box h2 {
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: normal;
    color: black; /* Überschrift wieder schwarz */
    text-align: center;
}

.eingabe-feld {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 30px; 
    border: none;
    font-size: 14px;
    color: #333;
}

.login-btn-weiss {
    background-color: white;
    color: black;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
}

/* Footer Links Login */
.footer-links {
    width: 80%;
    margin: 50px auto 0 auto;
    font-size: 12px;
    color: #333;
    overflow: hidden;
}

/* === FOOTER === */
.footer {
    margin-top: auto;
    padding: 60px 0;
    background-color: white;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

/* Produkt Bild Anpassung für Bootstrap Cards */
.card-img-top {
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* === KUNDENBEREICH (Dashboard) === */
.dashboard-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.dashboard-box {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px; /* Leicht abgerundet */
}

.dashboard-box h3 {
    margin-top: 0;
    color: #b30000; /* Akzentfarbe */
}
