﻿body {
    font-family: 'Poppins',sans-serif;
    background: #f9fbfd;
}



/* ---------- SEARCH BAR ---------- */
.search-bar {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    border-radius: 16px;
    margin-top: -3rem;
    padding: 1.5rem;
    position: relative;
    z-index: 20;
}

    .search-bar input, .search-bar select {
        border-radius: 8px !important;
    }

    .search-bar .btn-primary {
        background: #1E56A0;
        border: none;
        border-radius: 8px;
        padding: .8rem 2rem;
        transition: .2s;
    }

        .search-bar .btn-primary:hover {
            background: #164177;
        }

/* ---------- INTRO ---------- */
.intro {
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 2rem;
    color: #444;
}

    .intro h2 {
        font-weight: 600;
        color: #1E56A0;
    }

/* ---------- DESTINATION ---------- */
.destination-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
    background-size: cover;
    background-position: center;
    height: 320px;
}

    .destination-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 18px rgba(0,0,0,.12);
    }

    .destination-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(0,0,0,.1)10%,rgba(0,0,0,.65)100%);
    }

    .destination-card h3 {
        position: absolute;
        bottom: 1rem;
        left: 0;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 1.8rem;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 2;
        text-shadow: 0 2px 8px rgba(0,0,0,.5);
    }

/* ---------- USP ---------- */
.usp {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: .3s;
}

    .usp:hover {
        transform: translateY(-5px);
    }

    .usp i {
        font-size: 2rem;
        color: #1E56A0;
        margin-bottom: 1rem;
    }

    .usp h4 {
        font-weight: 600;
        margin-bottom: .5rem;
    }

@media (max-width: 576px) {
    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

        .hero-content h1 {
            font-size: 1.6rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 0.95rem;
        }
}

/* ================================
   HERO – Mobile Optimierung
   ================================ */
@media (max-width: 576px) {

    .hero {
        min-height: 60vh;
    }

    .myHeroSwiper {
        height: 60vh;
    }

        .myHeroSwiper .swiper-slide {
            height: 60vh;
        }

    .hero-img {
        height: 100%;
        object-fit: cover;
    }
}

/* === FIX: Swiper darf NICHT umbrechen! === */
.swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
}

/* Slides müssen 100% Breite haben */
.swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
}
