/* =========================
   Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   Base
========================= */
body {
    font-family:
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            Helvetica,
            Arial,
            sans-serif;
    background: #f4f0eb;
    color: #2e2b27;
    line-height: 1.8;
}

.page {
    min-height: 100vh;
}

/* =========================
   Links
========================= */
a {
    color: #7a5e46;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}
/* =========================
   HERO – Split Editorial
========================= */
.hero {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    text-align:center;
    padding-top:15px;
    padding-bottom:15px;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 340px;
}

.hero-text {
    padding: 60px 40px;
}

.hero-text .logo {

}

.site-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.site-claim {
    font-size: 1.1rem;
    color: #6b645d;
    margin-bottom: 22px;
}

.hero-divider {
    display: block;
    width: 120px;
    height: 1px;
    margin: 0 auto;
    margin-bottom:20px;
    background: linear-gradient(
            90deg,
            transparent,
            #bfae9b,
            transparent
    );
}

/* Bild */
.hero-image {
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Responsive Header
========================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        text-align: center;
        padding: 56px 20px;
    }


}


/* =========================
   Main Container
========================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.section {
    margin-bottom: 48px;
}

/* =========================
   Typography
========================= */
.section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.center {
    text-align: center;
}

/* =========================
   Intro
========================= */
.section-intro {
    text-align: center;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* =========================
   Image
========================= */
.section-image {
    margin-top: 10px;
}

.image-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.image-frame img {
    width: 100%;
    display: block;
}

/* =========================
   Cards (weiß)
========================= */
.content-card {
    padding: 34px 32px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.content-card.subtle {
    background: #fbfaf8;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.10);
}

.content-card p {
    margin-bottom: 14px;
    font-size: 1rem;
}

.closing {
    margin-top: 18px;
    color: #6b645d;
}

/* =========================
   Mobiler Service
========================= */
.section-mobile .content-card {
    text-align: left;
}

/* =========================
   Angebot – eigener Block
========================= */
/* =========================
   Angebot – Card wie alle anderen
========================= */
.section-offer-block {
    margin-bottom: 48px;
}

.offer-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px 32px;
    background: #efe8df; /* Beige statt Weiß */
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}


.offer-box {
    max-width: 1100px;
    margin: 0 auto;
}

.button-link {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #7a5e46;
    border-radius: 999px;
    color: #7a5e46;
    font-size: 0.95rem;
    text-decoration: none;
}

.button-link:hover {
    background: #7a5e46;
    color: #ffffff;
}

/* =========================
   Kontakt
========================= */
.section-contact .content-card {
    text-align: center;
}

.section-contact p {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* =========================
   Footer
========================= */
.footer {
    text-align: center;
    padding: 24px 20px 30px;
    font-size: 0.85rem;
    color: #7a726a;
}

/* =========================
   Responsive
========================= */
@media (max-width: 600px) {

    .site-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 60px 20px 44px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .container {
        padding: 30px 18px 50px;
    }

    .content-card {
        padding: 28px 24px;
    }
}


/* =========================
   Header – Variante A
========================= */
.site-header {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    padding-top:20px;
}

/* LEFT */
.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 120px; /* bewusst präsent */
    height: auto;
}

/* RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: right;
}

.header-prices a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7a5e46;
}

.header-phone {
    font-size: 0.8rem;
    color: #6b645d;
    line-height: 1.4;
}

.header-phone a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #7a5e46;
}

/* =========================
   Responsive
========================= */
@media (max-width: 700px) {

    .header-container {
        flex-direction: column;
        gap: 14px;
        padding: 16px 0;
    }

    .header-right {
        text-align: center;
        gap: 16px;
    }

    .header-logo {
        width: 105px;
    }
}

@media (max-width: 480px) {

    .header-logo {
        width: 95px;
    }

    .header-phone {
        font-size: 0.75rem;
    }
}
