/* =============================================
   MAREIKE LOHMANN – mareikelohmann.de
   Layout: Split-Screen · Hell & Modern
   ============================================= */

:root {
  --dark:    #1a3a5c;
  --dark2:   #1f4570;
  --gold:    #c9a84c;
  --gold2:   #f0e6c8;
  --cream:   #f7f3ec;
  --silver:  #b0b8c5;
  --white:   #ffffff;
  --text:    #1a1a1a;
  --muted:   #777;
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e0d0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo:hover { text-decoration: none; opacity: 0.85; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--dark);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  font-family: sans-serif;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle { display: none; }
.nav-burger {
  display: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---- SPLIT HERO ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-left {
  background: var(--dark);
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

.hero-right {
  background: var(--cream);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem;
  padding-top: 20rem;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem; right: 2rem; bottom: 2rem;
  border: 1px solid var(--gold2);
  border-radius: 4px;
  pointer-events: none;
}

.hero-label {
  color: var(--silver);
  font-family: sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-left h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  color: var(--silver);
  font-family: sans-serif;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Foto rechts */
.photo-frame {
  width: 300px;
  height: 390px;
  border-radius: 6px;
  box-shadow: 10px 10px 0 var(--gold);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid var(--gold);
  margin-bottom: 1.5rem;
  margin-right: 1rem;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 6px;
  display: block;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #d9b85c;
  text-decoration: none;
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark2);
  text-decoration: none;
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: white;
  text-decoration: none;
}

/* ---- SECTIONS ---- */
.section-white,
.section-cream,
.section-dark,
.section-gold,
.hero-split,
.page-hero,
.quote-section,
.footer,
nav.navbar {
  outline: 2px solid var(--gold);
  outline-offset: -6px;
}

.section-white {
  padding: 5.5rem 2rem;
  background: var(--white);
}

.section-cream {
  padding: 5.5rem 2rem;
  background: var(--cream);
}

.section-dark {
  padding: 5.5rem 2rem;
  background: var(--dark);
  color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--silver); }

.section-gold {
  padding: 4rem 2rem;
  background: var(--gold);
  text-align: center;
}

.section-gold h2 { color: var(--dark); margin-bottom: 0.75rem; }
.section-gold p { color: var(--dark); margin-bottom: 2rem; }

/* ---- LABELS ---- */
.label-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

.label-line::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.label-line.gold { color: var(--gold); }
.label-line.dark { color: var(--dark); }

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.center { text-align: center; }
p { margin-bottom: 1rem; color: #555; }

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---- CARDS ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border: 1px solid #e8e0d0;
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.card h3 { color: var(--dark); font-size: 1.4rem; }
.card p { color: #666; font-size: 0.93rem; margin: 0; }

/* ---- FACTS ---- */
.facts-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fact {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.fact-num {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark);
  display: block;
}

.fact-label {
  font-family: sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---- QUOTE ---- */
.quote-section {
  padding: 5rem 2rem;
  background: var(--dark);
  text-align: center;
}

blockquote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.quote-author {
  font-family: sans-serif;
  font-size: 0.88rem;
  color: var(--gold);
}

/* ---- PAGE HERO (Unterseiten) ---- */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36vh;
}

.page-hero-left {
  background: var(--dark);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-left h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin: 0.5rem 0;
}

.page-sub {
  color: var(--silver);
  font-family: sans-serif;
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0;
}

.page-hero-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.page-hero-quote {
  text-align: center;
  max-width: 320px;
}

.page-hero-quote .quote-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.page-hero-quote blockquote {
  font-size: 1.4rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.page-hero-quote .quote-sub {
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- STORY ---- */
.story { max-width: 780px; }

.story-block {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eee;
}

.story-block:last-child { border-bottom: none; }

.story-num {
  font-size: 3rem;
  font-weight: bold;
  color: var(--gold);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1;
  font-family: sans-serif;
  width: 60px;
}

/* ---- RECHNER ---- */
.rechner-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.rechner-inputs h2 { margin-bottom: 0.5rem; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 3px;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: sans-serif;
}

.form-group input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.form-group input:focus { outline: none; border-color: var(--gold); }

.hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: sans-serif;
  margin: 0.2rem 0 0;
}

.rechner-ergebnis {
  background: var(--dark);
  border-radius: 6px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.ergebnis-label {
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.ergebnis-zeile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--silver);
  font-family: sans-serif;
  font-size: 0.92rem;
}

.ergebnis-zeile strong { color: var(--white); }

.ergebnis-zeile.highlight {
  border-bottom: none;
  padding-top: 1.2rem;
}

.ergebnis-zeile.highlight span { color: var(--gold); font-weight: 600; font-size: 1rem; }
.ergebnis-zeile.highlight strong { color: var(--gold); font-size: 1.6rem; }

.ergebnis-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}

.ergebnis-note p {
  font-size: 0.78rem;
  color: var(--silver);
  margin: 0;
  font-family: sans-serif;
}

.rechner-info {
  background: var(--cream);
  padding: 2rem;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.rechner-info h3 { color: var(--dark); margin-bottom: 1rem; }
.rechner-info ul {
  padding-left: 1.2rem;
  color: #555;
  font-family: sans-serif;
  font-size: 0.93rem;
  line-height: 2.1;
}

/* ---- RABATT GRID ---- */
.rabatt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.rabatt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
  color: var(--dark);
  text-decoration: none;
  background: var(--white);
}

.rabatt-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  text-decoration: none;
}

.rabatt-card.featured {
  border-color: var(--gold);
  background: var(--gold2);
}

.rabatt-label {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark);
  display: block;
  font-family: sans-serif;
}

.rabatt-desc {
  font-size: 0.8rem;
  font-family: sans-serif;
  color: var(--muted);
  display: block;
  margin-top: 0.3rem;
}

.rabatt-badge {
  position: absolute;
  top: -12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: sans-serif;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- KONTAKT ---- */
.kontakt-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.kontakt-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.kontakt-item strong { display: block; color: var(--dark); margin-bottom: 0.15rem; font-family: sans-serif; }
.kontakt-item p { margin: 0; font-family: sans-serif; font-size: 0.93rem; }

.kontakt-form-box {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 6px;
}

textarea, input[type="text"], input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: sans-serif;
  color: var(--dark);
  background: var(--white);
}

textarea { resize: vertical; }
textarea:focus, input:focus { outline: none; border-color: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 2.5rem 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer p { color: var(--silver); font-size: 0.83rem; font-family: sans-serif; margin: 0; }
.footer a { color: var(--silver); }
.footer a:hover { color: var(--gold); }

/* ---- ANGEBOT GRID ---- */
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.angebot-card {
  background: var(--cream);
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.angebot-card.featured {
  background: var(--cream);
  border: 2px solid var(--gold);
  color: var(--text);
}

.angebot-card.featured h3 { color: var(--dark); }
.angebot-card.featured p { color: var(--muted); }

.angebot-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ---- GUIDE ---- */
.guide-block {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eee;
}

.guide-block:last-of-type { border-bottom: none; }

.guide-num {
  font-size: 3rem;
  font-weight: bold;
  color: var(--gold);
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 1;
  font-family: sans-serif;
  width: 60px;
}

.guide-text h3 { color: var(--dark); margin-bottom: 0.75rem; }

/* ---- DISCLAIMER ---- */
.disclaimer {
  font-family: sans-serif;
  font-size: 0.82rem;
  color: #777;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
  background: #f0ece0;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

/* ---- IMPRESSUM ---- */
#impressum p { color: var(--silver); font-size: 0.88rem; line-height: 1.9; font-family: sans-serif; }

/* ---- RESPONSIVE ---- */
@media (max-width: 820px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: var(--white);
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 1.5rem; }
  .hero-right { padding: 2.5rem 1.5rem; min-height: 320px; }
  .photo-frame { width: 220px; height: 280px; }

  .page-hero { grid-template-columns: 1fr; }
  .page-hero-left { padding: 3rem 1.5rem; }
  .page-hero-right { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .rechner-box { grid-template-columns: 1fr; }
  .facts-box { grid-template-columns: 1fr 1fr; }
  .story-block { flex-direction: column; gap: 0.5rem; }
  .story-num { font-size: 2rem; width: auto; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .rechner-ergebnis { position: static; }
}
