/* ================================================= */
/* ANGEBOT DETAILSEITE                               */
/* ================================================= */

/* ----------------------------- */
/* HERO                          */
/* ----------------------------- */

.angebot-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #000;
}

.angebot-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.angebot-hero h1 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #ffffff;
    font-size: 36px;
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}


/* ----------------------------- */
/* INTRO                         */
/* ----------------------------- */

.angebot-intro {
    padding: 80px 0 60px;
    text-align: center;
    background: #ffffff;
}

.angebot-intro p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}


/* ----------------------------- */
/* CONTENT (EDITOR)              */
/* ----------------------------- */

.angebot-content {
    padding: 60px 0;
    background: #ffffff;
}

.angebot-content .container {
    max-width: 900px;
}

.angebot-content * {
    box-sizing: border-box;
    max-width: 100%;
}

.angebot-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}


/* ----------------------------- */
/* CONTENT BLOCK (Bild + Text)   */
/* ----------------------------- */

.content-block {
    padding: 80px 0;
    background: #ffffff;
}

.block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.block-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.block-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.block-text ul {
    margin-bottom: 20px;
}

.block-text li {
    margin-bottom: 10px;
}


/* ----------------------------- */
/* PREIS BOX                     */
/* ----------------------------- */

.angebot-preis {
    padding: 80px 0;
    background: #f1f3f1;
    display: flex;
    justify-content: center;
}

.preis-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.preis-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.preis-box .preis {
    font-size: 34px;
    font-weight: bold;
    margin: 15px 0;
}

/* 🔹 NEU: Text IN der Preisbox */
.preis-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 20px 0;
}

.preis-text * {
    max-width: 100%;
}

.preis-box .btn-primary {
    display: inline-block;
    padding: 14px 28px;
    margin-top: 10px;
}


/* ----------------------------- */
/* TEXT UNTER PREISBOX           */
/* ----------------------------- */

.preis-after {
    padding: 70px 0;
    background: #ffffff;
}

.preis-after-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.preis-after-text * {
    max-width: 100%;
}


/* ----------------------------- */
/* RESPONSIVE                    */
/* ----------------------------- */

@media (max-width: 900px) {

    .angebot-hero {
        height: 300px;
    }

    .angebot-hero h1 {
        font-size: 26px;
        bottom: 25px;
    }

    .block-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preis-box img {
        height: 200px;
    }
}
