/* ===============================
   RESET
================================ */
html, body {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #2f3b2f;
    line-height: 1.6;
}


/* ===============================
   HERO
================================ */

.hero {
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    align-items: flex-start;
    gap: 120px;
}

.hero-image img {
    width: 560px;
    max-width: 100%;
    border-radius: 20px;
}

.hero-content {
    max-width: 600px;
    width: 100%;
}

.label {
    display: block;
    font-size: 28px;
    letter-spacing: 8px;
    font-weight: 700;
    color: #b79a5a;
    margin-bottom: 70px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 60px;
}

.subline {
    display: block;
    margin-top: 15px;
    font-size: 40px;
}
/* ===============================
   Angebot-Titel
================================ */
.headline-main {
    font-size: 3.2rem;
    margin-bottom: 25px;   /* mehr Abstand */
}

.headline-product {
    font-size: 2.3rem;
    color: #b79a5a;        /* Gold */
    margin-bottom: 14px;
    font-weight: 600;
}

.headline-sub {
    font-size: 1.2rem;     /* deutlich kleiner */
    color: #555;
    font-weight: 400;
    margin-bottom: 40px;
}
.location-info {
    font-size: 0.95rem;
    color: #777;
    margin-top: 18px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}


/* ===============================
   PREISBLOCK
================================ */

.price-wrapper {
    margin-bottom: 40px;
}

.intro-price {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.price {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin: 10px 0;
}

.vat {
    font-size: 16px;
    color: #888;
    margin-top: 8px;
}

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 60px;
    background: #b79a5a;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.button:hover {
    background: #a1864c;
}

.trust-line {
    text-align: center;
    margin: 60px auto 100px auto;
    font-size: 16px;
    color: #777;
}

/* ===============================
   CONTENT – BEIGE BOX OBEN
================================ */

.content {
    max-width: 1400px;
    margin: 70px auto 40px auto;
    padding: 70px 6%;
    background-color: #f8f1f2;
    border-radius: 20px;
    position: relative;
}

/* Goldlinie oben */
.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(183,154,90,0.25) 35%,
        rgba(183,154,90,0.25) 65%,
        transparent 100%
    );
}

/* Goldlinie unten */
.content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(183,154,90,0.25) 35%,
        rgba(183,154,90,0.25) 65%,
        transparent 100%
    );
}

.content-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 6%;
}

.content h2 {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    color: #b79a5a;
    margin-bottom: 50px;
    text-align: center;
}

.lead {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    }
.lead-last {
    display: block;
    text-align: center;
}
.lead-first {
    display: block;
    text-align: center;
}
/* ===============================
   ZWEI SPALTEN – WEISSER BEREICH
================================ */

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 180px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 6% 120px 6%;
    position: relative;
    text-align: justify;
     hyphens: auto;

    /* verhindert zu frühe Trennungen */
    hyphenate-limit-chars: 8 3 3;
}

.two-columns::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ddd8cf;
}

.column h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #b79a5a;
    margin-bottom: 30px;
}

.column-intro {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    line-height: 1.7;
}

.column ul {
    list-style-position: outside;
    padding-left: 24px;
}

.column li {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    
}

.column li::marker {
    color: #b79a5a;
}

 


/* ===============================
   DU ERHÄLTST
================================ */

.package-section {
    background: #ffffff;
    padding: 40px 0 140px 0;
    text-align: center;
}

.package-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6%;
}

.package-label {
    font-size: 28px;
    letter-spacing: 8px;
    font-weight: 700;
    color: #b79a5a;
    margin-bottom: 35px;
}

.package-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    margin-bottom: 90px;
}


/* ===============================
   DU ERHÄLTST – 3 BOXEN NEBENEINANDER
================================ */

.package-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 80px;
}

/* DAS WAR DAS PROBLEM – DIESE BASIS HAT GEFEHLT */

.package-card {
    flex: 1;
    background: #f8f1f2; 
    padding: 70px 55px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
   border: 1.5px solid rgba(183,154,90,0.5);
}


.package-card h3 {
    font-size: 28px;
    color: #b79a5a;
    margin-bottom: 35px;
    text-align: center;
}

.package-card p {
    margin-bottom: 25px;
}

.package-card ul {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
}

.package-card li {
    text-align: left;
    margin-bottom: 14px;
}

.package-card li::marker {
    color: #b79a5a;
}

.bonus-word {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.bonus-center {
    text-align: center;
    margin: 25px 0;
}

.bonus-small {
    display: block;
    font-size: 15px;
    margin-top: 4px;
}

.no-break {
    white-space: nowrap;
}
/* =============================== */
/* REVIEWS */
/* =============================== */

.reviews {
    padding: 5rem 2rem 6rem;
    background: #ffffff;   /* bewusst weiß */
}

.reviews-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.reviews h2 {
    margin-bottom: 4rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;   /* deutlich mehr Abstand */
}

.review {
    padding: 0 1rem;
}

.review p {
    font-style: italic;
    font-weight: 300;   /* weicher */
    line-height: 1.9;
    font-size: 17px;
    color: #3a3a3a;     /* etwas softer als reines Dunkel */
    margin-bottom: 1.4rem;
}

.review span {
    display: block;
    color: #b79a5a;
    font-weight: 500;
    font-size: 15px;
}

/* ===============================
   Bestellung.php
================================ */
.course-image {
    max-width: 320px;
    margin: 0 auto 40px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


.section-bar {
    width: 100%;
    padding: 18px 30px;
    margin: 100px 0 70px 0;
    background: #f8f1f2;
    border-left: 4px solid #b79a5a;
    font-size: 24px;
    letter-spacing: 6px;
    font-weight: 700;
    color: #b79a5a;
    text-transform: uppercase;
}
.layout-dualseele {
    background-color: #f8f1f2; /* zartes Rosé */
}

.layout-praxis {
    background-color: #eef3ec; /* salbei */
}
/* ======================================
   MOBILE – FINALE STABILE VERSION
====================================== */

@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    /* ---------- GLOBAL ---------- */

    body {
        font-size: 14px !important;
        padding-left: 18px;
        padding-right: 18px;
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }
    p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: justify;
        hyphens: auto;
    }

    h1 { font-size: 26px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 18px !important; }

    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

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

    .hero {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .hero-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        max-width: 100% !important;
    }

    .hero img {
        width: 220px !important;
        max-width: 100% !important;
    }

    .hero-content {
        text-align: center !important;
        width: 100% !important;
    }
    .hero .price {
        font-size: 35px !important;
        font-weight: 600 !important;
        line-height: 1.2;
    
}
    .label {
        font-size: 20px !important;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .headline-main {
        font-size: 24px !important;
        text-align: center;
    }

    .headline-sub {
        font-size: 16px !important;
        text-align: center;
    }

    /* ---------- ANGEBOTS FLEX FIX ---------- */

    section div[style*="display:flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
    }

    section div[style*="text-align:right"] {
        text-align: left !important;
        width: 100%;
    }

    /* INLINE FONT-SIZE FIX */

    section div[style*="font-size:56px"] {
        font-size: 28px !important;
    }

    section div[style*="font-size:32px"] {
        font-size: 20px !important;
    }

    section div[style*="font-size:20px"] {
        font-size: 15px !important;
    }

    section div[style*="font-size:18px"] {
        font-size: 14px !important;
    }

    /* ---------- BUTTONS ---------- */

    .button {
        width: 100%;
        padding: 14px 18px;
        font-size: 13px;
        text-align: center;
    }

    /* ---------- TWO COLUMNS ---------- */

    .two-columns {
        display: block !important;
    }

    .two-columns > div {
        width: 100% !important;
        margin-bottom: 35px;
    }

    .two-columns::before {
        display: none !important;
    }
.column,
    .column p,
    .column-intro,
    .column ul,
    .column li {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .column ul {
        padding-left: 18px !important;
    }
    /* ---------- PACKAGE GRID ---------- */

    .package-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .package-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 30px 20px !important;
        font-size: 14px !important;
    }

    .package-card h3 {
        font-size: 18px !important;
    }
  .review-grid {
        display: block !important;
    }

    .review {
        width: 100% !important;
        margin-bottom: 40px;
        padding: 0 !important;
    }
    /* ---------- FOOTER ---------- */

    footer {
        padding: 15px 12px !important;
        font-size: 12px !important;
        line-height: 1.5;
    }

    footer div {
        margin-bottom: 6px;
    }


}