* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* --- HERO --- */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- ABSCHNITTE ALLGEMEIN --- */
section {
    padding: 4rem 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- UNSER ANGEBOT --- */
.angebot {
    background-color: #fff;
}

.angebot h2 {
    color: #7a0b0b;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.8rem;
}

.angebot-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.angebot-card {
    flex: 1 1 280px;
    background: #f2f2f2;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    max-width: 300px;
}

.angebot-card .bild {
    height: 180px;
    background: #ccc;
}

.angebot-card h3 {
    background: #7a0b0b;
    color: white;
    padding: 0.9rem;
    font-size: 1rem;
    margin: 0;
}

/* --- ANREISE --- */
.anreise {
    background-color: #7a0b0b;
    color: white;
    padding: 4rem 8vw;
}

.anreise h2 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.anreise-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1900px;
}

.anreise-text {
    flex: 1 1 45%;
    font-size: 2.3rem;
    line-height: 1.7;
}

.anreise-text strong {
    display: block;
    font-size: 2.4rem;
}

.anreise-map {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.anreise-map img {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    object-fit: cover;
}

.anreise-map .map-iframe {
    width: 80%;
    max-width: 400px;
    aspect-ratio: 16 / 9; /* Höhe automatisch passend zur Breite */
    border: 0;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    overflow: hidden;
    transform: translateY(-50px);
}

/* --- ANGEBOT BOXEN --- */
.angebot-boxen {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

.angebot-item {
    position: relative;
    width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angebot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.angebot-item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.angebot-titel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #8b0e12;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0.8rem 1.2rem;
}

/* --- WILLKOMMEN --- */
.willkommen {
    background-color: #fff;
    color: #333;
    padding: 4rem 8vw;
}

.willkommen-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 1900px;
}

.willkommen-text {
    flex: 1 1 60%;
    font-size: 1.9rem;
    line-height: 1.7;
}

.willkommen-text h2 {
    color: #a32220;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.willkommen-text p {
    margin-bottom: 1rem;
}

.willkommen-text .achtung {
    font-weight: 900;
    margin-top: 1.5rem;
}

/* --- WILLKOMMEN BILDER & YOUTUBE RESPONSIV --- */
.willkommen-bilder {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;

    max-width: 500px;   /* kleiner als vorher, Container selbst begrenzen */
    margin: 0 auto;     /* zentrieren im Layout */
}

.willkommen-bilder img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    object-fit: cover;
}

.willkommen-bilder .youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
}

.willkommen-bilder .youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* --- ÜBER UNS BILDER --- */
.ueberUns-bilder {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ueberUns-bilder img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    object-fit: cover;
    align-self: flex-end;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .anreise-content,
    .willkommen-content {
        flex-direction: column;
        text-align: center;
    }

    .anreise-text,
    .anreise-map,
    .willkommen-text,
    .willkommen-bilder {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .willkommen-bilder img,
    .willkommen-bilder .youtube-container {
        max-width: 75%;
        margin: 0 auto;
    }

    section {
        padding: 3rem 6vw;
    }

    .karte {
        width: 100%;
        height: 250px;
    }

    .payment-note {
        margin-top: 5px;
        font-size: 0.95rem;
    }

    .ueber-uns-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: flex-start;
    }

    .ueber-uns-text {
        flex: 2 1 400px;
    }

    .ueber-uns-image {
        flex: 1 1 300px;
        max-width: 500px;
    }

    .ueber-uns-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }
}

@media (min-width: 1000px) {
    .ueberUns-bilder {
        margin-top: 15rem;
    }
}
