/* -------------------------
   Grundfarben / Variablen
--------------------------- */
:root {
    --beige-light: #EFE9E4;
    --line: #D5CEC8;
    --text: #222;
    --muted: #7A736E;
}

/* -------------------------
   Reset
--------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Playfair Display", serif;
    background: #FFFFFF;
    color: var(--text);
    line-height: 1.6;
}

/* -------------------------
   HEADER
--------------------------- */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    background: var(--beige-light);
    z-index: 100;
    border-bottom: 1px solid var(--line);
}

/* dünner oberer Balken */
.header-top {
    background: var(--beige-light);
    border-bottom: 1px solid var(--line);
}

.header-top-inner {
    height: 45px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 300;
}

/* -------------------------
   BURGER ICON + Animation
--------------------------- */
.burger {
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--muted);
    transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* -------------------------
   HEADER NAME
--------------------------- */
.header-name {
    text-align: center;
    padding: 20px 0;
}

.header-name h1 {
    font-size: 32px;
    font-weight: 400;
    color: var(--text);
}

.header-divider {
    height: 1px;
    width: 100%;
    background: var(--line);
}

/* -------------------------
   MOBILE NAV
--------------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--beige-light);
    border-left: 1px solid var(--line);
    box-shadow: -4px 0 10px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 200;
    padding-top: 90px;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--line);
}

.mobile-nav a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
}

.close-nav {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* -------------------------
   HERO SECTION (überarbeitet)
--------------------------- */
.hero-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* Linkes Bild */
.hero-left {
    width: 100%;
    overflow: hidden;
}
.hero-left img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Rechtes Panel */
.hero-right {
    position: relative;
    background: var(--beige-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 40px;
    overflow: visible;
}

/* Wrapper für Zitat + Overlay */
.quote-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 520px;
    text-align: center;
}

/* Text */
.quote {
    position: relative;
    z-index: 3;
    font-size: 28px;
    line-height: 1.35;
    color: #333;
}

/* Container für Wort + Overlay */
.hoelle-container {
    position: relative;
    display: inline-block;
}

/* Buchstaben darunter ausblenden (optional) */
.hoelle-container {
    color: transparent;    /* Schrift unsichtbar */
}

/* Hölle PNG Overlay */
.hoelle-overlay {
    position: absolute;
    left: -130px;         /* horizontaler Versatz */
    top: -120px;          /* vertikaler Versatz */
    width: 230px;        /* Größe exakt wie PSD */
    pointer-events: none;
}

/* -------------------------
   TEXT SECTION
--------------------------- */
.text-section {
    background: var(--beige-light);
    padding: 80px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* Grid bleibt wie es ist */
.text-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    align-items: center;
}

/* Rechtes Bild SOLL oben sein */
.right-image {
    align-self: start;
    margin-bottom: 0;
    margin-top: 140px; /* Anpassen bis es wie im Design aussieht */
}

/* Linkes Bild SOLL unten sein */
.left-image {
    align-self: end;
    margin-top: 0;
    margin-bottom: 140px; /* Anpassen bis es wie im Design aussieht */
}

/* Text perfekt mittig */
.middle-text {
    align-self: center;
    text-align: center;      /* horizontaler Text */
    max-width: 700px;        /* optional: damit der Text nicht zu breit zieht */
    margin: 0 auto;          /* damit der Textblock selber mittig sitzt */
}


.side-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 0 0 6px var(--beige-light);
}

.text-content p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.75;
    text-align: center;
}

/* -------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 1100px) {
    .hero-left img { height: 550px; }
    .hoelle-overlay {
        width: 230px;
        top: -270%;
        left: -0%;
        transform: translateX(-55%) translateY(-8%);
    }
}

@media (max-width: 900px) {

    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-left img {
        height: 420px;
        object-position: center 25%;
    }

    .hero-right {
        padding: 40px 20px;
    }

    .hoelle-overlay {
        width: 200px;
        left: -30%;
        top: -130%;
        transform: translateX(-50%) translateY(-30%);
    }

    .quote {
        font-size: 22px;
    }

    .text-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .side-image {
        margin: 0 auto;
        max-width: 250px;
    }
}

@media (max-width: 500px) {
    .hero-left img {
        height: 320px;
    }

    .hoelle-overlay {
        width: 180px;
        top: 18%;
        transform: translateX(-50%) translateY(-35%);
    }

    .quote {
        font-size: 20px;
    }
}

/* --- Zweiter Zitat-Absatz (Altes / Neue) --- */

.quote-section {
    background: var(--beige-light);
    padding: 120px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.quote-wrapper-2 {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.quote-2 {
    font-size: 32px;
    line-height: 1.45;
    color: #222;
    position: relative;
    z-index: 2;
}

/* Inline-Container für Script-Wörter */
.quote-inline {
    position: relative;
    display: inline-block;
}

/* Basis-Stil der Script-Bilder */
.script-word {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1; /* hinter Text */
    opacity: 1;
}

/* --- ALTES --- */
.script-altes {
    width: 230px;
    top: -160px; /* höher setzen */
    left: 20px;
}

/* --- NEUE --- */
.script-neue {
    width: 230px;
    top: -150px; /* etwas höher */
    left: -80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .quote-2 {
        font-size: 26px;
    }

    .script-altes {
        width: 200px;
        top: -140px;
    }

    .script-neue {
        width: 230px;
        top: -150px;
    }
}
/* -------------- ABOUT (left bg + positioned image + right text) -------------- */

.about-section {
  background: var(--beige-light);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}


/* LEFT PANEL: grauer Hintergrund */
.about-left {
  width: 460px;             /* Breite des Panels */
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-left-bg {
  width: 100%;
  height: 400px;            /* Höhe des grauen Felds */
  background: 200, 200, 200;      /* grauer Hintergrund, kann angepasst werden */
  position: relative;
  overflow: visible;        /* erlaubt Bild herausragen */
  border-radius: 2px;
}

/* BOOK IMAGE — absolut in .about-left-bg, steuerbar via CSS variable */
:root { --book-left: 20px; /* Standardhorizontalversatz (ändern) */ }

.about-left-bg .about-book {
  position: absolute;
  top: 50%;
  left: var(--book-left);
  transform: translateY(-50%);
  width: 360px;             /* Bildbreite, anpassen falls nötig */
  height: auto;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-radius: 2px;
  will-change: left;
}

/* RIGHT PANEL: Textbox, gräulicher Text wie text-section */
.about-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  left: 30px;
}

.about-right-box {
  background: transparent;    /* wenn du ein helles Panel möchtest, setze z.B. #faf7f5 */
  max-width: 640px;
  padding: 0 20px;
}

.about-right-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 0 0 18px;
  color: var(--text);
}

.about-right-box p {
  color: var(--muted);        /* hier ist der graue Text */
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
  font-size: 16px;
}

/* Button (wie vorher) */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background: #ea6b35;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

/* ----------------- Responsive ----------------- */
@media (max-width: 1000px) {
  .about-inner { flex-direction: column; text-align: center; gap: 30px; }
  .about-left { width: 100%; max-width: 520px; }
  .about-left-bg { margin: 0 auto; height: 320px; }
  .about-left-bg .about-book { width: 320px; left: 50%; transform: translate(-50%, -50%); }

  .about-right { width: 100%; }
  .about-right-box { max-width: 90%; margin: 0 auto; }
  .about-right-box p { text-align: center; }
}

/* small screens */
@media (max-width: 520px) {
  .about-left-bg { height: 260px; }
  .about-left-bg .about-book { width: 260px; }
  .about-right-box h2 { font-size: 24px; }
}

/* SECTION WRAPPER */
.about2 {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 60px;
}

/* LEFT IMAGE FULLY FLUSH LEFT */
.about2-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.about2-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RIGHT SIDE */
.about2-right {
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
}

.about2-right p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4d4d4d; /* leichter grauton wie vorher */
    text-align: center; /* wie im screenshot */
}

.signature {
    display: block;
    width: 180px;
    margin: 10px auto 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .about2 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 50px 20px;
    }

    .about2-left,
    .about2-img {
        width: 100%;
    }

    .about2-right {
        padding-right: 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .signature {
        margin: 20px auto 0;
    }
}





