/* Hintergrund */
body {
    background-color: #ffffff !important;
}


/* Hero-Header mit Fahrrad-Image als Hintergrund */
.hero-header {
  min-height: 140px;
  color: #fff;
}


.header-topbar {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.header-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/header_bike.jpg"); /* Pfad anpassen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;            /* Durchsichtigkeit des Bildes */
    pointer-events: none;     /* nicht klickbar */
    z-index: 0;
}

.header-topbar > .container {
    position: relative;
    z-index: 1;               /* Text / Logo über dem Bild */
}



/* mögliches Hintergrundbild für Kontaktformular */

.contact-hero {
    position: relative;
    min-height: 10vh;
    background-image: url("../images/laden_innen.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.contact-hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: linear-gradient(
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.35)
    );
}

.contact-hero .card {
    background-color: rgba(255, 255, 255, 0.8);
}

.service-image {
    max-width: 70%;   /* z.B. 70–80 % der Spaltenbreite */
    display: block;
    margin-left: auto;
    margin-right: auto;  /* zentriert in der Spalte */
}