/* =============================================
   LOKALE FONTS — kein Google Fonts
   ============================================= */
@font-face {
    font-family: 'Caveat';
    src: url('fonts/caveat-v23-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Caveat';
    src: url('fonts/caveat-v23-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito-v32-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito-v32-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito-v32-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito-v32-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: optional;
}

/* =============================================
   BASIS
   ============================================= */
body {
    background: linear-gradient(150deg, #f2f0e2 0%, #e4edda 50%, #dde8d0 100%);
    background-attachment: fixed;
    font-family: 'Nunito', sans-serif;
    color: #3a3a2e;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

h1 {
    color: #4f7338;
    font-size: 64px;
    font-family: 'Caveat', cursive;
}

h2 {
    color: #3d5c2a;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

nav {
    background-color: #6e9455;
    padding: 12px 40px;
    margin: -40px -40px 40px -40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

nav a {
    color: #f5f0e8;
    text-decoration: none;
    margin-right: 15px;
    font-size: 24px;
    font-family: 'Caveat', cursive;
    border: 1.5px solid rgba(245, 240, 232, 0.7);
    border-radius: 20px;
    padding: 4px 16px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
    background: rgba(245, 240, 232, 0.2);
    border-color: #f5f0e8;
    text-decoration: none;
}

.nav-logo {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    margin-right: 20px;
    border: none !important;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #6e8060;
    font-size: 14px;
}

.karten {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.karte {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.karte:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(110, 148, 85, 0.45);
}

.karte h3 {
    color: #4f7338;
    margin-bottom: 10px;
}

.karte i {
    font-size: 36px;
    color: #4f7338;
    margin-bottom: 12px;
    display: block;
}

.karte img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
}

#uebermich {
    margin-top: 60px;
}

.uebermich-box {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
    max-width: 100%;
}

.uebermich-box img {
    width: 320px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    margin-top: 4px;
}

.uebermich-extra {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    max-width: 100%;
}

.uebermich-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
}

.uebermich-block img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    flex-shrink: 0;
}

.uebermich-abschluss {
    margin-top: 30px;
    background-color: #dcebd0;
    border-radius: 12px;
    padding: 30px;
    font-style: italic;
    font-weight: bold;
    color: #3d5c2a;
    font-size: 20px;
    text-align: center;
}

.abschluss-button {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    background-color: #6e9455;
    color: #f5f0e8;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-style: normal;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    transition: background-color 0.2s ease;
}

.abschluss-button:hover {
    background-color: #4f7338;
}

.kontakt-button-bild {
    width: 300px;
    height: auto;
    display: block;
    margin: 20px auto 0 auto;
    background: transparent;
    transition: transform 0.2s ease;
}

.kontakt-button-bild:hover {
    transform: scale(1.05);
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-inhalt {
    display: none;
    position: absolute;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    min-width: 280px;
    z-index: 999;
}

.dropdown-inhalt a {
    display: block;
    padding: 12px 20px;
    color: #4f7338;
    margin: 0;
    font-size: 18px;
    font-family: 'Caveat', cursive;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    white-space: normal;
}

.dropdown-inhalt a:hover {
    background-color: #f2f0e2 !important;
    text-decoration: none;
}

.dropdown:hover .dropdown-inhalt {
    display: block;
}

.dropdown-inhalt {
    min-width: 200px;
    max-width: calc(100vw - 40px);
}

.kontakt-formular {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.kontakt-formular input,
.kontakt-formular textarea {
    padding: 12px;
    border: 1px solid #b8d0a8;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #333;
}

.kontakt-formular textarea {
    height: 120px;
    resize: vertical;
}

.kontakt-formular button {
    background-color: #6e9455;
    color: #f5f0e8;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: background-color 0.2s ease;
}

.kontakt-formular button:hover {
    background-color: #4f7338;
}

.antwortzeit {
    font-size: 14px;
    color: #4f7338;
    margin: 0;
}

/* HERO */
#hero {
    padding: 0 0 0 0;
}

.hero-inhalt {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
    padding-left: 40px;
}

.hero-bild-container {
    flex: 1;
    max-width: 500px;
    margin-top: -20px;
}

.hero-bild {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 16px;
    margin-left: auto;
}

/* HERZSTÜCK */
#herzstuck {
    background-color: #fafdf7;
    border-radius: 12px;
    padding: 40px;
    margin-top: -50px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
}

.herzstuck-intro {
    font-size: 22px;
    font-weight: bold;
    color: #3d5c2a;
    margin-top: 0;
    margin-bottom: 10px;
}

blockquote {
    font-style: italic;
    font-size: 20px;
    color: #4f7338;
    border-left: 4px solid #6e9455;
    padding-left: 20px;
    margin: 20px 0;
}

/* WAS DAS BEDEUTET */
#bedeutet {
    background-color: #dcebd0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
}

/* ABSCHLUSS */
#abschluss-hero {
    background-color: #dcebd0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
    text-align: center;
}
/* BUTTONS */
.hero-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #6e9455;
    color: #f5f0e8;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.hero-button:hover {
    background-color: #4f7338;
}

/* ÜBER MICH BLÖCKE FARBEN */
.uebermich-block:nth-child(1) {
    background-color: #f4f8f0;
}

.uebermich-block:nth-child(2) {
    background-color: white;
}

.uebermich-block:nth-child(3) {
    background-color: #f4f8f0;
}

.markenversprechen {
    font-size: 26px;
    font-weight: bold;
    color: #3d5c2a;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

/* LEISTUNGEN ÜBERSICHT */
.leistungen-liste {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.leistung-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: white;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung-block.rosa {
    background-color: #f4f8f0;
}

.leistung-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(110, 148, 85, 0.45);
}

.leistung-block img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

.leistung-teaser {
    font-style: italic;
    color: #6e9455;
    margin-bottom: 8px;
    margin-top: 4px;
}

/* LEISTUNG DETAIL */
.leistung-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.leistung-details-block {
    background-color: white;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
}

.leistung-details-block:nth-child(even) {
    background-color: #f4f8f0;
}

.leistung-details-block .herzstuck-intro {
    margin-top: 0;
    margin-bottom: 12px;
}

.leistung-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistung-liste li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(110, 148, 85, 0.15);
}

.leistung-liste li:last-child {
    border-bottom: none;
}

.leistung-liste li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6e9455;
    font-weight: bold;
}

/* LINK KARTE */
.leistung-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.leistung-link:hover .leistung-block {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(110, 148, 85, 0.45);
}

.mehr-erfahren {
    display: inline-block;
    margin-top: 12px;
    color: #4f7338;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mehr-erfahren:hover {
    color: #3d5c2a;
    text-decoration: underline;
}

/* KONDITIONEN KARTEN — 4 nebeneinander auf Desktop */
#konditionen-karten {
    flex-wrap: nowrap;
}

#konditionen-karten .karte {
    min-width: 0;
}

/* =============================================
   KONTAKT LAYOUT
   ============================================= */
.kontakt-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.kontakt-links {
    flex: 1;
    min-width: 0;
}

.kontakt-rechts {
    flex: 1.2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}
.kontakt-rechts h2 {
    text-align: center;
    margin-bottom: 8px;
}

.kalender-intro {
    text-align: center;
    color: #6e8f5a;
    margin-bottom: 20px;
}

.kalender-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(110, 148, 85, 0.15);
    flex: 1;
}
.kalender-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    display: block;
    min-height: 400px;
}
.kontakt-links .uebermich-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px;
}

.kontakt-links .uebermich-box img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
}

.kontakt-links .uebermich-box p {
    margin: 4px 0;
}

/* =============================================
   RESPONSIVE DESIGN — HANDY & TABLET
   ============================================= */
@media (max-width: 768px) {

    body {
        padding: 20px;
    }

    nav {
        margin: -20px -20px 20px -20px;
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    nav a {
        font-size: 20px;
        margin-right: 8px;
    }

    .nav-logo {
        font-size: 24px;
    }

    h1 {
        font-size: 42px;
    }

    #hero {
        padding: 10px 0;
    }

    .hero-inhalt {
        flex-direction: column;
        gap: 0px;
    }

    .hero-text {
        padding-left: 0;
    }

    .hero-bild-container {
        max-width: 100%;
        margin-top: -30px;
    }

    .uebermich-box {
        flex-direction: column;
        align-items: center;
    }

    .uebermich-box img {
        width: 180px;
        height: 180px;
    }

    .uebermich-block {
        flex-direction: column;
        align-items: center;
    }

    .uebermich-block img {
        width: 180px;
        height: 180px;
    }

    .leistung-block {
        flex-direction: column;
        align-items: center;
    }

    .leistung-block img {
        width: 120px;
        height: 120px;
    }

    .herzstuck-intro {
        font-size: 18px;
    }

    .markenversprechen {
        font-size: 20px;
    }

    .kontakt-button-bild {
        width: 220px;
    }

    /* KONDITIONEN KARTEN — 2x2 auf Mobile */
    #konditionen-karten {
        flex-wrap: wrap;
    }

    #konditionen-karten .karte {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }

    /* TABELLEN AUF MOBILE */
    table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    table th,
    table td {
        padding: 6px 8px;
    }

    /* EINZELPREIS AUF MOBILE AUSBLENDEN */
    .col-einzelpreis {
        display: none;
    }

    /* KONTAKT LAYOUT AUF MOBILE */
    .kontakt-layout {
        flex-direction: column;
    }

}
/* FAQ Akkordeon */
#faq {
    background-color: #fafdf7;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(110, 148, 85, 0.25);
    max-width: 100%;
}

#faq h2 {
    margin-bottom: 32px;
}

.faq-liste {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item:nth-child(odd) {
    background-color: #dcebd0;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.faq-item:nth-child(even) {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}
.faq-frage {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #3d5c2a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.faq-frage:hover {
    filter: brightness(0.96);
}

.faq-frage[aria-expanded="true"] {
    border-bottom: 1px solid #c5ddb8;
}

.faq-icon {
    color: #6e9455;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-frage[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-antwort {
    display: none;
    padding: 16px 20px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.faq-antwort p {
    margin: 0 0 10px;
}

.faq-antwort p:last-child {
    margin-bottom: 0;
}

.faq-antwort a {
    color: #6e9455;
    text-decoration: underline;
}

.faq-antwort.offen {
    display: block;
}

.faq-abschluss {
    margin-top: 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: #555;
    font-style: italic;
    text-align: center;
    line-height: 1.7;
}