/* ==================================================
   GRUNDEINSTELLUNGEN
================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #2b1f18;
}


/* ==================================================
   HEADER
================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    padding: 5px 40px;

    background: white;
    border-bottom: 1px solid #eee;
}


/* ==================================================
   NAVIGATION
================================================== */

nav {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}


/* Logo-Link */

.logo-link {
    display: block;

    padding: 0;

    background: none;
}

.logo-link:hover {
    background: none;
    transform: none;
}


/* Logo */

nav img {
    display: block;

    width: 100px;

    transition: transform 0.3s ease;
}

nav img:hover {
    transform: scale(1.05);
}


/* ==================================================
   MITTLERES MENÜ
================================================== */

nav ul {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 20px;

    list-style: none;

    margin: 0;
    padding: 0;
}

nav ul a {
    display: block;

    padding: 12px 25px;

    color: white;
    text-decoration: none;

    background: rgba(43, 31, 24, 0.85);

    border-radius: 6px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

nav ul a:hover {
    background: #b8860b;

    transform: translateY(-3px);
}


/* ==================================================
   TISCH KONFIGURIEREN BUTTON
================================================== */

.nav-cta {
    display: inline-block;

    margin-left: right;

    padding: 13px 24px;

    background: #b8860b;

    color: white;

    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    border-radius: 6px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.nav-cta:hover {
    background: #9d7208;

    transform: translateY(-3px);
}


/* ==================================================
   STARTSEITE - HERO
================================================== */

.hero {
    height: 90vh;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35)
        ),
        url("Bilder/stol.jpeg");

    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: white;
}

.hero-text h1 {
    margin: 0;

    font-size: 72px;
    font-weight: bold;
}

.hero-text p {
    margin-top: 15px;

    font-size: 24px;
}


/* ==================================================
   STARTSEITE - INTRO
================================================== */

.intro {
    max-width: 900px;

    margin: 50px auto;
    padding: 0 20px;

    text-align: center;

    line-height: 1.8;
    font-size: 20px;

    color: #555;
}

.intro h2 {
    margin-bottom: 25px;

    font-size: 30px;

    color: #2b1f18;
}


/* ==================================================
   STARTSEITE - ANGEBOTE
================================================== */

.angebote {
    display: flex;
    justify-content: center;
    gap: 30px;

    max-width: 1200px;

    margin: 60px auto;
    padding: 0 20px;
}

.karte {
    width: 350px;

    overflow: hidden;

    text-align: center;

    background: #f5f2ef;

    border-radius: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.karte:hover {
    transform: translateY(-6px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.karte img {
    display: block;

    width: 100%;
    height: 220px;

    object-fit: cover;
}

.karte h3 {
    margin: 25px 20px 10px;

    color: #2b1f18;
}

.karte p {
    margin: 0 25px 30px;

    color: #555;

    line-height: 1.6;
}


/* ==================================================
   STARTSEITE - ABLAUF
================================================== */

.ablauf {
    max-width: 1200px;

    margin: 80px auto;
    padding: 0 20px;

    text-align: center;
}

.ablauf h2 {
    margin-bottom: 50px;

    font-size: 36px;

    color: #2b1f18;
}

.schritte {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.schritt {
    position: relative;

    width: 280px;
}

.schritt:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 22px;
    left: 75%;

    width: 70%;
    height: 2px;

    background: #b8860b;
}

.schritt span {
    font-size: 40px;
    font-weight: bold;

    color: #b8860b;
}

.schritt h3 {
    font-size: 22px;

    color: #2b1f18;
}

.schritt p {
    color: #555;

    line-height: 1.6;
}


/* ==================================================
   KONTAKT CTA
================================================== */

.kontakt-cta {
    margin-top: 100px;
    padding: 70px 20px;

    text-align: center;

    background: #2b1f18;
    color: white;
}

.kontakt-cta h2 {
    margin-top: 0;

    font-size: 36px;
}

.kontakt-cta p {
    max-width: 650px;

    margin: 20px auto 35px;

    font-size: 18px;
    line-height: 1.7;
}

.kontakt-cta a {
    display: inline-block;

    padding: 14px 30px;

    background: #b8860b;

    color: white;
    text-decoration: none;

    border-radius: 6px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.kontakt-cta a:hover {
    background: #9d7208;
    transform: translateY(-3px);
}


/* ==================================================
   FOOTER
================================================== */

footer {
    padding: 25px;

    text-align: center;

    background: #1d1511;

    color: #aaa;

    font-size: 14px;
}


/* ==================================================
   GEMEINSAMER SEITENTITEL
================================================== */

.seiten-titel {
    text-align: center;

    padding: 50px 20px 30px;
}

.seiten-titel h1 {
    margin: 0 0 15px;

    font-size: 48px;

    color: #2b1f18;
}

.seiten-titel p {
    margin: 0;

    font-size: 20px;

    color: #555;
}


/* ==================================================
   ÜBER UNS - SEITE
================================================== */

.ueber-uns-seite {
    padding-top: 110px;
}


/* ==================================================
   ÜBER UNS - VORSTELLUNG
================================================== */

.ueber-uns-bereich {
    max-width: 1200px;

    margin: 60px auto 90px;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 80px;
}

.ueber-uns-text {
    flex: 1;
}

.ueber-uns-text h2 {
    margin: 0 0 30px;

    font-size: 36px;

    color: #2b1f18;
}

.ueber-uns-text p {
    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.8;

    color: #555;
}

.ueber-uns-bild {
    flex: 1;
}

.ueber-uns-bild img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;

    border-radius: 8px;
}


/* ==================================================
   ÜBER UNS - HOLZARTEN
================================================== */

.holzarten {
    padding: 70px 30px;

    text-align: center;

    background: #f5f2ef;
}

.holzarten h2 {
    margin-top: 0;

    font-size: 36px;

    color: #2b1f18;
}

.holzarten > p {
    font-size: 18px;

    color: #555;
}

.holzarten-liste {
    max-width: 1200px;

    margin: 40px auto 0;

    display: flex;
    justify-content: center;
    gap: 25px;
}

.holzart {
    width: 260px;

    overflow: hidden;

    background: white;

    border-radius: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.holzart:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.holzart img {
    display: block;

    width: 100%;
    height: 160px;

    object-fit: cover;
}

.holzart h3 {
    margin: 22px 20px 10px;

    font-size: 21px;

    color: #2b1f18;
}

.holzart p {
    margin: 0 20px 25px;

    color: #555;

    line-height: 1.6;
}


/* ==================================================
   ÜBER UNS - FERTIGUNG
================================================== */

.fertigung {
    max-width: 1200px;

    margin: 80px auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 80px;
}

.fertigung-bild {
    flex: 1;
}

.fertigung-bild img {
    display: block;

    width: 100%;
    height: 400px;

    object-fit: cover;

    border-radius: 8px;
}

.fertigung-text {
    flex: 1;
}

.fertigung-text h2 {
    margin: 0 0 25px;

    font-size: 36px;

    color: #2b1f18;
}

.fertigung-text p {
    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.8;

    color: #555;
}

.fertigung-punkte {
    list-style: none;

    padding: 0;
    margin: 25px 0 0;
}

.fertigung-punkte li {
    position: relative;

    padding-left: 28px;
    margin-bottom: 12px;

    font-size: 17px;

    color: #555;
}

.fertigung-punkte li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #b8860b;

    font-weight: bold;
}


/* ==================================================
   LEISTUNGEN - SEITE
================================================== */

.leistungen-seite {
    padding-top: 110px;
}


/* ==================================================
   LEISTUNGSBEREICHE
================================================== */

.leistung-bereich {
    max-width: 1200px;

    margin: 70px auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 80px;
}

.leistung-text {
    flex: 1;
}

.leistung-text h2 {
    margin: 0 0 25px;

    font-size: 36px;

    color: #2b1f18;
}

.leistung-text p {
    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.8;

    color: #555;
}

.leistung-liste {
    list-style: none;

    margin: 25px 0 0;
    padding: 0;
}

.leistung-liste li {
    position: relative;

    margin-bottom: 12px;
    padding-left: 28px;

    font-size: 17px;

    color: #555;
}

.leistung-liste li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #b8860b;

    font-weight: bold;
}


/* ==================================================
   LEISTUNGEN - BILDER
================================================== */

.leistung-bild {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.leistung-bild img {
    display: block;

    width: 100%;
    max-width: 550px;
    height: auto;

    object-fit: contain;

    border-radius: 8px;
}


/* ==================================================
   LEISTUNGEN - HOLZAUSWAHL
================================================== */

.holz-auswahl {
    padding: 70px 30px;

    text-align: center;

    background: #f5f2ef;
}

.holz-auswahl h2 {
    margin: 0 0 15px;

    font-size: 36px;

    color: #2b1f18;
}

.holz-auswahl > p {
    margin-bottom: 40px;

    font-size: 18px;

    color: #555;
}

.holz-auswahl-karten {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    gap: 25px;
}

.holz-auswahl-karte {
    width: 250px;

    overflow: hidden;

    background: white;

    border-radius: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.holz-auswahl-karte:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.holz-auswahl-karte img {
    display: block;

    width: 100%;
    height: 160px;

    object-fit: cover;
}

.holz-auswahl-karte h3 {
    margin: 20px 10px;

    font-size: 21px;

    color: #2b1f18;
}


/* ==================================================
   TISCH KONFIGURATOR
================================================== */

.konfigurator {
    padding: 90px 20px;

    background: #f5f2ef;
}

.konfigurator-kopf {
    margin-bottom: 45px;

    text-align: center;
}

.konfigurator-kopf h2 {
    margin: 0 0 15px;

    font-size: 38px;

    color: #2b1f18;
}

.konfigurator-kopf p {
    margin: 0;

    font-size: 18px;

    color: #555;
}


/* ==================================================
   KONFIGURATOR - FORMULAR
================================================== */

.tisch-formular {
    max-width: 700px;

    margin: 0 auto;
    padding: 45px;

    background: white;

    border-radius: 10px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.formular-gruppe {
    margin-bottom: 28px;
}

.formular-gruppe > label {
    display: block;

    margin-bottom: 10px;

    font-size: 17px;
    font-weight: bold;

    color: #2b1f18;
}

.formular-gruppe select,
.formular-gruppe input,
.formular-gruppe textarea {
    width: 100%;

    padding: 14px 15px;

    font-family: Arial, sans-serif;
    font-size: 16px;

    color: #333;

    background: white;

    border: 1px solid #ccc;
    border-radius: 6px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.formular-gruppe select:focus,
.formular-gruppe input:focus,
.formular-gruppe textarea:focus {
    border-color: #b8860b;

    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}


/* ==================================================
   KONFIGURATOR - MASSE
================================================== */

.masse-auswahl {
    display: flex;

    gap: 25px;
}

.masse-auswahl .formular-gruppe {
    flex: 1;
}

.eingabe-mit-einheit {
    position: relative;
}

.eingabe-mit-einheit input {
    padding-right: 55px;
}

.eingabe-mit-einheit span {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #777;

    pointer-events: none;
}


/* ==================================================
   KONFIGURATOR - AUSFÜHRUNG
================================================== */

.ausfuehrung {
    display: flex;

    gap: 15px;
}

.radio-option {
    flex: 1;

    display: flex;
    align-items: center;

    padding: 16px;

    border: 1px solid #ddd;
    border-radius: 6px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.radio-option:hover {
    border-color: #b8860b;

    background: #faf8f5;
}

.radio-option input {
    width: auto;

    margin-right: 10px;

    accent-color: #b8860b;
}


/* ==================================================
   KONFIGURATOR - TEXTAREA
================================================== */

.formular-gruppe textarea {
    min-height: 120px;

    resize: vertical;
}


/* ==================================================
   KONFIGURATOR - FERTIGUNGSZEIT
================================================== */

.konfigurator-lieferzeit {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 35px 0;

    padding: 18px 20px;

    background: #f5f2ef;

    border-radius: 6px;

    color: #555;
}

.konfigurator-lieferzeit strong {
    font-size: 20px;

    color: #b8860b;
}


/* ==================================================
   KONFIGURATOR - BUTTON
================================================== */

.anfrage-button {
    width: 100%;

    padding: 16px 25px;

    border: none;
    border-radius: 6px;

    background: #b8860b;

    color: white;

    font-size: 17px;
    font-weight: bold;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.anfrage-button:hover {
    background: #9d7208;

    transform: translateY(-2px);
}


/* ==================================================
   LEISTUNGEN - GROSSE FERTIGUNGSZEIT
================================================== */

.lieferzeit {
    padding: 70px 20px;

    text-align: center;

    background: #2b1f18;

    color: white;
}

.lieferzeit h2 {
    margin: 0;

    font-size: 36px;
}

.lieferzeit-zahl {
    margin: 20px 0;

    font-size: 52px;
    font-weight: bold;

    color: #b8860b;
}

.lieferzeit p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.7;

    color: white;
}


/* ==================================================
   BESTELLABLAUF
================================================== */

.bestellablauf {
    max-width: 1200px;

    margin: 90px auto;
    padding: 0 30px;

    text-align: center;
}

.bestellablauf h2 {
    margin-bottom: 50px;

    font-size: 36px;

    color: #2b1f18;
}

.bestell-schritte {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.bestell-schritt {
    width: 240px;
}

.bestell-schritt span {
    font-size: 38px;
    font-weight: bold;

    color: #b8860b;
}

.bestell-schritt h3 {
    margin: 15px 0 10px;

    font-size: 22px;

    color: #2b1f18;
}

.bestell-schritt p {
    margin: 0;

    color: #555;

    line-height: 1.6;
}


/* ==================================================
   RESPONSIVE - TABLET
================================================== */

@media (max-width: 900px) {

    header {
        padding: 10px 20px;
    }

    nav {
        flex-direction: column;
    }

    .nav-cta {
    margin: 10px 0 0;

    padding: 10px 16px;

    font-size: 14px;
}

    nav img {
        width: 85px;
    }

    nav ul {
        position: static;

        transform: none;

        margin-top: 10px;

        gap: 8px;
    }

    nav a {
        padding: 9px 12px;

        font-size: 14px;
    }


    /* Startseite */

    .hero {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .angebote {
        flex-direction: column;
        align-items: center;
    }

    .karte {
        width: 100%;
        max-width: 450px;
    }

    .schritte {
        flex-direction: column;
        align-items: center;
    }

    .schritt:not(:last-child)::after {
        display: none;
    }


    /* Über uns */

    .ueber-uns-seite {
        padding-top: 150px;
    }

    .ueber-uns-bereich {
        flex-direction: column;

        gap: 40px;
    }

    .ueber-uns-text,
    .ueber-uns-bild {
        width: 100%;
    }

    .holzarten-liste {
        flex-wrap: wrap;
    }

    .fertigung {
        flex-direction: column;

        gap: 40px;
    }

    .fertigung-bild,
    .fertigung-text {
        width: 100%;
    }


    /* Leistungen */

    .leistungen-seite {
        padding-top: 150px;
    }

    .leistung-bereich {
        flex-direction: column;

        gap: 40px;
    }

    .leistung-bild,
    .leistung-text {
        width: 100%;
    }

    .holz-auswahl-karten {
        flex-wrap: wrap;
    }

    .bestell-schritte {
        flex-direction: column;
        align-items: center;
    }

    .bestell-schritt {
        width: 100%;
        max-width: 350px;
    }
}


/* ==================================================
   RESPONSIVE - HANDY
================================================== */

@media (max-width: 600px) {

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .seiten-titel h1 {
        font-size: 38px;
    }

    .ueber-uns-text h2,
    .holzarten h2,
    .fertigung-text h2,
    .leistung-text h2,
    .holz-auswahl h2,
    .lieferzeit h2,
    .bestellablauf h2,
    .kontakt-cta h2 {
        font-size: 30px;
    }

    .ueber-uns-bild img,
    .fertigung-bild img {
        height: 300px;
    }

    .holzart,
    .holz-auswahl-karte {
        width: 100%;
        max-width: 400px;
    }


    /* Konfigurator */

    .konfigurator {
        padding: 60px 15px;
    }

    .konfigurator-kopf h2 {
        font-size: 30px;
    }

    .tisch-formular {
        padding: 25px 20px;
    }

    .masse-auswahl {
        flex-direction: column;

        gap: 0;
    }

    .ausfuehrung {
        flex-direction: column;
    }

    .konfigurator-lieferzeit {
        flex-direction: column;

        gap: 8px;

        text-align: center;
    }


    /* Leistungen */

    .leistung-bild img {
        max-width: 100%;
        height: auto;
    }

    .lieferzeit-zahl {
        font-size: 42px;
    }
}

/* ==================================================
   HANDY - POSITIONEN NACH UNTEN
================================================== */

@media (max-width: 600px) {

    /* STARTSEITE:
       Holztisch im Hero weiter nach unten verschieben */
    .hero {
        background-position: center 85%;
    }


    /* KONTAKT:
       "Kontakt & Anfrage" weiter nach unten */
    .kontakt-seite {
        padding-top: 190px;
    }


    /* ÜBER UNS:
       Seitentitel und Text weiter nach unten */
    .ueber-uns-seite {
        padding-top: 190px;
    }

}

/* ==================================================
   KONTAKT - SEITE
================================================== */

.kontakt-seite {
    padding-top: 110px;
}


/* ==================================================
   KONTAKT - HAUPTBEREICH
================================================== */

.kontakt-bereich {
    max-width: 1200px;

    margin: 60px auto 100px;
    padding: 0 30px;

    display: flex;
    align-items: flex-start;
    gap: 80px;
}


/* ==================================================
   KONTAKT - LINKE SEITE
================================================== */

.kontakt-info {
    flex: 1;
}

.kontakt-info h2 {
    margin: 0 0 25px;

    font-size: 36px;

    color: #2b1f18;
}

.kontakt-info > p {
    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.8;

    color: #555;
}


/* ==================================================
   ABLAUF-HINWEIS
================================================== */

.kontakt-hinweis {
    margin-top: 40px;
    padding: 30px;

    background: #f5f2ef;

    border-radius: 8px;
}

.kontakt-hinweis h3 {
    margin: 0 0 20px;

    font-size: 24px;

    color: #2b1f18;
}

.kontakt-hinweis ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.kontakt-hinweis li {
    position: relative;

    margin-bottom: 14px;
    padding-left: 28px;

    color: #555;

    line-height: 1.5;
}

.kontakt-hinweis li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #b8860b;

    font-weight: bold;
}


/* ==================================================
   ANZAHLUNG
================================================== */

.anzahlung-info {
    margin-top: 30px;
    padding: 30px;

    background: #2b1f18;

    color: white;

    border-radius: 8px;
}

.anzahlung-info span {
    display: block;

    margin-bottom: 10px;

    font-size: 17px;
}

.anzahlung-info strong {
    display: block;

    margin-bottom: 15px;

    font-size: 38px;

    color: #b8860b;
}

.anzahlung-info p {
    margin: 0;

    line-height: 1.7;

    color: #ddd;
}


/* ==================================================
   KONTAKTFORMULAR
================================================== */

.kontakt-formular-box {
    flex: 1;

    padding: 40px;

    background: white;

    border-radius: 10px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.kontakt-formular-box h2 {
    margin: 0 0 30px;

    font-size: 30px;

    color: #2b1f18;
}


/* ==================================================
   ZWEI FELDER NEBENEINANDER
================================================== */

.kontakt-zeile {
    display: flex;

    gap: 20px;
}

.kontakt-zeile .formular-gruppe {
    flex: 1;
}


/* ==================================================
   TRENNER IM FORMULAR
================================================== */

.formular-trenner {
    margin: 40px 0 25px;
    padding-bottom: 12px;

    font-size: 22px;
    font-weight: bold;

    color: #2b1f18;

    border-bottom: 2px solid #b8860b;
}


/* ==================================================
   FORMULAR-HINWEIS
================================================== */

.formular-info {
    margin: 30px 0;
    padding: 18px;

    background: #f5f2ef;

    border-left: 4px solid #b8860b;

    color: #555;

    line-height: 1.6;
}


/* ==================================================
   KONTAKT RESPONSIVE
================================================== */

@media (max-width: 900px) {

    .kontakt-seite {
        padding-top: 150px;
    }

    .kontakt-bereich {
        flex-direction: column;

        gap: 50px;
    }

    .kontakt-info,
    .kontakt-formular-box {
        width: 100%;
    }
}


@media (max-width: 600px) {

    .kontakt-bereich {
        padding: 0 15px;
    }

    .kontakt-formular-box {
        padding: 25px 20px;
    }

    .kontakt-zeile {
        flex-direction: column;

        gap: 0;
    }

    .kontakt-info h2 {
        font-size: 30px;
    }

    .anzahlung-info strong {
        font-size: 32px;
    }
}

/* ==================================================
   DANKE SEITE
================================================== */

.danke-seite {
    min-height: calc(100vh - 100px);

    padding: 170px 20px 100px;

    background: #f5f2ef;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.danke-box {
    width: 100%;
    max-width: 850px;

    padding: 60px;

    text-align: center;

    background: white;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.danke-check {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #b8860b;

    color: white;

    font-size: 36px;
    font-weight: bold;
}

.danke-box h1 {
    margin: 0 0 20px;

    font-size: 42px;

    color: #2b1f18;
}

.danke-box > p {
    max-width: 650px;

    margin: 0 auto 18px;

    font-size: 18px;
    line-height: 1.7;

    color: #555;
}

.danke-text {
    font-weight: bold;
}


/* Ablauf */

.danke-ablauf {
    margin: 45px 0 35px;

    padding: 35px;

    background: #f5f2ef;

    border-radius: 8px;
}

.danke-ablauf h2 {
    margin: 0 0 30px;

    color: #2b1f18;
}

.danke-schritte {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.danke-schritte div {
    flex: 1;
}

.danke-schritte strong {
    display: block;

    margin-bottom: 10px;

    font-size: 28px;

    color: #b8860b;
}

.danke-schritte span {
    color: #555;

    line-height: 1.5;
}


/* Hinweis */

.danke-hinweis {
    margin: 30px 0;

    padding: 20px;

    text-align: left;

    line-height: 1.7;

    background: #f5f2ef;

    border-left: 4px solid #b8860b;

    color: #555;
}


/* Button */

.danke-button {
    display: inline-block;

    margin-top: 10px;

    padding: 15px 32px;

    background: #b8860b;

    color: white;

    text-decoration: none;

    font-weight: bold;

    border-radius: 6px;

    transition: 0.2s ease;
}

.danke-button:hover {
    background: #9d7208;

    transform: translateY(-2px);
}


/* Handy */

@media (max-width: 700px) {

    .danke-seite {
        padding: 170px 15px 60px;
    }

    .danke-box {
        padding: 35px 20px;
    }

    .danke-box h1 {
        font-size: 32px;
    }

    .danke-schritte {
        flex-direction: column;

        gap: 25px;
    }
}

/* ==================================================
   ANZAHLUNG SEITE
================================================== */

.anzahlung-seite {
    min-height: 100vh;

    padding: 170px 20px 100px;

    background: #f5f2ef;

    display: flex;
    justify-content: center;
}

.anzahlung-box {
    width: 100%;
    max-width: 800px;

    padding: 60px;

    text-align: center;

    background: white;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.anzahlung-klein {
    display: block;

    margin-bottom: 12px;

    color: #b8860b;

    font-size: 17px;
    font-weight: bold;
}

.anzahlung-box h1 {
    margin: 0 0 20px;

    font-size: 44px;

    color: #2b1f18;
}

.anzahlung-einleitung {
    max-width: 650px;

    margin: 0 auto 40px;

    font-size: 18px;
    line-height: 1.7;

    color: #555;
}


/* Betrag */

.anzahlung-betrag {
    padding: 35px;

    background: #2b1f18;

    color: white;

    border-radius: 8px;
}

.anzahlung-betrag span {
    display: block;

    margin-bottom: 10px;

    font-size: 18px;
}

.anzahlung-betrag strong {
    display: block;

    margin-bottom: 15px;

    font-size: 48px;

    color: #b8860b;
}

.anzahlung-betrag p {
    max-width: 550px;

    margin: 0 auto;

    line-height: 1.7;

    color: #ddd;
}


/* Ablauf */

.anzahlung-ablauf {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin: 45px 0;
}

.anzahlung-ablauf div {
    flex: 1;
}

.anzahlung-ablauf span {
    display: block;

    margin-bottom: 10px;

    font-size: 28px;
    font-weight: bold;

    color: #b8860b;
}

.anzahlung-ablauf p {
    margin: 0;

    color: #555;

    line-height: 1.5;
}


/* Hinweis */

.anzahlung-hinweis {
    margin-bottom: 35px;
    padding: 20px;

    text-align: left;

    background: #f5f2ef;

    border-left: 4px solid #b8860b;
}

.anzahlung-hinweis strong {
    display: block;

    margin-bottom: 8px;

    color: #2b1f18;
}

.anzahlung-hinweis p {
    margin: 0;

    line-height: 1.6;

    color: #555;
}


/* Zahlungsbutton */

.zahlung-button {
    display: block;

    width: 100%;

    padding: 17px 25px;

    background: #b8860b;

    color: white;

    text-decoration: none;

    font-size: 18px;
    font-weight: bold;

    border-radius: 6px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.zahlung-button:hover {
    background: #9d7208;

    transform: translateY(-2px);
}

.zahlung-info {
    margin: 18px 0 0;

    font-size: 14px;

    color: #777;
}


/* Handy */

@media (max-width: 700px) {

    .anzahlung-seite {
        padding: 170px 15px 60px;
    }

    .anzahlung-box {
        padding: 35px 20px;
    }

    .anzahlung-box h1 {
        font-size: 34px;
    }

    .anzahlung-betrag strong {
        font-size: 40px;
    }

    .anzahlung-ablauf {
        flex-direction: column;

        gap: 25px;
    }
}

/* ==================================================
   ZAHLUNG ERFOLGREICH
================================================== */

.zahlung-erfolgreich-seite {
    min-height: 100vh;
    padding: 160px 20px 80px;
    background: #f5f2ef;
}

.zahlung-erfolgreich-box {
    max-width: 1050px;
    margin: 0 auto;
    padding: 70px 75px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
}


/* CHECK */

.zahlung-check {
    width: 85px;
    height: 85px;
    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #c58b00;
    color: white;

    font-size: 52px;
    font-weight: bold;
}


/* TITEL */

.zahlung-erfolgreich-box h1 {
    margin-bottom: 20px;
    font-size: 48px;
    color: #2b1f18;
}

.zahlung-einleitung {
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: 600;
    color: #555;
}


/* BETRAG */

.zahlung-betrag {
    max-width: 500px;
    margin: 35px auto;
    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f5f2ef;
    border-radius: 10px;
}

.zahlung-betrag span {
    font-size: 18px;
}

.zahlung-betrag strong {
    font-size: 28px;
    color: #c58b00;
}


/* TEXT */

.zahlung-erfolgreich-box > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    font-size: 18px;
    line-height: 1.7;
    color: #555;
}


/* SO GEHT ES WEITER */

.zahlung-weiter {
    margin-top: 50px;
    padding: 40px;

    background: #f5f2ef;
    border-radius: 12px;
}

.zahlung-weiter h2 {
    margin-bottom: 35px;
    color: #2b1f18;
}

.zahlung-schritte {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zahlung-schritte div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zahlung-schritte strong {
    font-size: 30px;
    color: #c58b00;
}

.zahlung-schritte span {
    font-size: 17px;
    color: #555;
}


/* HINWEIS */

.zahlung-hinweis {
    margin-top: 40px;
    padding: 25px 30px;

    text-align: left;

    background: #f5f2ef;
    border-left: 5px solid #c58b00;
}

.zahlung-hinweis strong {
    font-size: 19px;
    color: #2b1f18;
}

.zahlung-hinweis p {
    margin: 8px 0 0;
    line-height: 1.6;
    color: #555;
}


/* BUTTON */

.zahlung-home-button {
    display: inline-block;

    margin-top: 45px;
    padding: 16px 38px;

    background: #c58b00;
    color: #ffffff;

    text-decoration: none;
    font-weight: bold;
    font-size: 17px;

    border-radius: 7px;

    transition: 0.25s ease;
}

.zahlung-home-button:hover {
    background: #2b1f18;
    transform: translateY(-2px);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

    .zahlung-erfolgreich-seite {
        padding: 120px 15px 50px;
    }

    .zahlung-erfolgreich-box {
        padding: 45px 20px;
    }

    .zahlung-erfolgreich-box h1 {
        font-size: 34px;
    }

    .zahlung-schritte {
        grid-template-columns: 1fr 1fr;
    }

    .zahlung-betrag {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 500px) {

    .zahlung-schritte {
        grid-template-columns: 1fr;
    }

}