/*
 * 
 * 
 * 
 */
 
.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;       /* erlaubt Umbruch bei wenig Platz */
    gap: 10px;             /* kleiner Abstand wenn es umbricht */
    padding: 10px 0;
}

/* Textgrößen optional anpassen */
/* .header-info h1 {
    margin: 0;
    font-size: 1.8rem;
} */

.header-info p {
    margin: 0;
    font-size: 1.1rem;
}

.navbar-nav > li > a {
    font-size: 1rem;
	
}

.dropdown-menu > li > a, 
.dropdown-menu > li > a:hover, 
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* --- Responsive Breakpoint --- */
@media (max-width: 768px) {
    .header-info {
        flex-direction: column;     /* untereinander */
        text-align: center;         /* mittig auf Mobil */
    }

    .header-info p {
        order: -1;                  /* Telefonnummer nach oben setzen */
    }
}
.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-nav .nav-link {
    white-space: nowrap;               /* Silbentrennung verhinder */
}


.footer a {
  text-decoration: none;  
}

footer {
  padding-bottom: 1em;
}
.cta-btn {
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* =========================================
   Slider: Hebebühnen in verschiedenen Städten
   ========================================= */

.stadt-slider {
    max-width: 1400px;
    margin: 70px auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.stadt-slider-kopf {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.stadt-slider-kicker {
    display: block;
    margin-bottom: 8px;
    color: #b32323;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stadt-slider-kopf h2 {
    margin: 0 0 12px;
    color: #222;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.stadt-slider-kopf p {
    margin: 0;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.stadt-slider-container {
    position: relative;
}

.stadt-slider-viewport {
    overflow: hidden;
}

.stadt-slider-spur {
    display: flex;
    gap: 22px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.stadt-karte {
    position: relative;
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
    height: 360px;
    overflow: hidden;
    border-radius: 12px;
    background: #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* .stadt-karte img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
} */

.stadt-karte img{
    width:100%;
    height:360px;
    object-fit:cover;
}

.stadt-karte:hover img {
    transform: scale(1.05);
}

.stadt-karte::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 52%,
        transparent 75%
    );
    pointer-events: none;
}

.stadt-karte-text {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 22px;
    color: #fff;
}

.stadt-karte-text span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stadt-karte-text h3 {
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.2;
}

.stadt-slider-pfeil {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 1.5rem;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.stadt-slider-pfeil:hover {
    background: #b32323;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.stadt-slider-pfeil:focus-visible {
    outline: 3px solid rgba(179, 35, 35, 0.35);
    outline-offset: 3px;
}

.stadt-slider-zurueck {
    left: -23px;
}

.stadt-slider-weiter {
    right: -23px;
}

.stadt-slider-punkte {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.stadt-slider-punkt {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        background-color 0.25s ease;
}

.stadt-slider-punkt.aktiv {
    width: 28px;
    border-radius: 8px;
    background: #b32323;
}

/* Tablet: zwei Bilder */

@media (max-width: 950px) {

    .stadt-slider {
        padding: 0 45px;
    }

    .stadt-karte {
        flex-basis: calc((100% - 22px) / 2);
        height: 330px;
    }
}

/* Smartphone: ein Bild */

@media (max-width: 650px) {

    .stadt-slider {
        margin: 45px auto;
        padding: 0 28px;
    }

    .stadt-slider-kopf {
        margin-bottom: 24px;
    }

    .stadt-karte {
        flex-basis: 100%;
        height: 320px;
    }

    .stadt-slider-pfeil {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        line-height: 40px;
    }

    .stadt-slider-zurueck {
        left: -20px;
    }

    .stadt-slider-weiter {
        right: -20px;
    }

    .stadt-karte-text {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .stadt-karte-text h3 {
        font-size: 1.55rem;
    }
} 
