/*
 * Mittelmeiers Theme - Homepage Styles
 * Hero, intro, programme blocks, kernthese
 */

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  overflow: hidden;
}

.hero-links {
  padding: 8vh 6% 8vh 5%;
  animation: einblenden 0.8s ease both;
  order: 1;
}

.hero-rubrik {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rot);
  font-weight: 600;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-rubrik::before {
  content: '';
  width: 2.5rem;
  height: 2px;
  background: var(--rot);
  flex-shrink: 0;
}

.hero-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--schwarz);
  margin-bottom: 1.6rem;
  letter-spacing: -0.015em;
}

.hero-titel em {
  font-style: italic;
  color: var(--rot);
}

.hero-lead {
  position: relative;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--grau-tief);
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

.hero-lead p {
  margin-bottom: 1rem;
}

.hero-lead p:last-child {
  margin-bottom: 0;
}

.hero-lead strong {
  color: var(--schwarz);
  font-weight: 600;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.scroll-kreis {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rot);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hero-scroll:hover .scroll-kreis {
  background: var(--schwarz);
}

.scroll-kreis svg {
  width: 18px;
  height: 18px;
  fill: var(--weiss);
}

.scroll-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grau-mittel);
}

/* Hero Fakten */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grau-hell);
}

.hero-facts .fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-facts .fact-zahl {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rot);
  line-height: 1;
}

.hero-facts .fact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grau-mittel);
}


.hero-links {
  position: relative;
}

.hero-rechts {
  min-height: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  animation: einblenden 1s ease 0.15s both;
}

.hero-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%);
}

/* Hero Plakette */
.hero-plakette {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--rot);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.8vw, 2.8rem) !important;
  font-weight: 700;
  color: var(--schwarz);
  letter-spacing: -0.01em;
}

.hero-subline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rot);
}

/* ── INTRO ───────────────────────────────── */
.intro {
  background: var(--creme);
  border-top: var(--linie);
  border-bottom: var(--linie);
  padding: 5rem 5%;
}

.intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro-zitat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--schwarz);
  margin-bottom: 1.6rem;
}

.intro-zitat strong {
  font-style: normal;
  color: var(--rot);
  font-weight: 700;
}

.intro-text {
  font-size: 0.97rem;
  color: var(--grau-tief);
  line-height: 1.85;
  max-width: 62ch;
  margin: 0 auto;
}

/* ── PROGRAMME HEADER ────────────────────── */
.programme-header {
  text-align: center;
  padding: 5.5rem 5% 3rem;
}

/* ── PROGRAMM BLOCK ──────────────────────── */
.programm-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: var(--linie);
}

.programm-block.flip {
  direction: rtl;
}

.programm-block.flip > * {
  direction: ltr;
}

.programm-block .prog-tag::before {
  display: none !important;
}

.programm-bild {
  overflow: hidden;
  position: relative;
}

.programm-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.programm-block:hover .programm-bild img {
  transform: scale(1.03);
}

/* Video Background */
.programm-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.programm-bild-img {
  position: relative;
  z-index: 0;
}

.programm-bild-img.has-video {
  display: none;
}

.programm-text {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prog-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rot);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.prog-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--schwarz);
  margin-bottom: 1rem;
}

.prog-untertitel {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--grau-mittel);
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

.prog-text {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--grau-tief);
  max-width: 50ch;
  margin-bottom: 2rem;
}

.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rot);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  width: fit-content;
}

.prog-link:hover {
  border-color: var(--rot);
}

.prog-link::after {
  content: '→';
  font-size: 1rem;
}

/* Programm Bild Platzhalter */
.programm-bild-platzhalter {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p1-bg {
  background: linear-gradient(135deg, #f0ebe3 0%, #d9d0c4 100%);
}

.p2-bg {
  background: linear-gradient(135deg, #e3e8f0 0%, #c4cdd9 100%);
}

.p3-bg {
  background: linear-gradient(135deg, #e3f0ea 0%, #c4d9cc 100%);
}

/* Hero Foto Platzhalter */
.foto-platzhalter {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8e4de 0%, #d0cbc3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--grau-mittel);
}

.foto-platzhalter svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

.foto-platzhalter span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── ÜBER MICH SECTION ───────────────────── */
.ueber {
  background: var(--creme);
  border-top: var(--linie);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.ueber-bild {
  display: flex;
  overflow: hidden;
  position: relative;
  order: 1;
}

.ueber-bild img {
  width: 100%;
  max-height: 1000px;
  object-fit: cover;
}

.ueber-bild-platzhalter {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(160deg, #e0dbd4 0%, #ccc6be 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--grau-mittel);
}

.ueber-bild-platzhalter span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ueber-text {
  padding: 5rem 6% 5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ueber-text .section-rubrik {
  text-align: left;
}

.ueber-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--schwarz);
  margin-bottom: 1.6rem;
}

.ueber-absatz {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--grau-tief);
  margin-bottom: 1.2rem;
  max-width: 54ch;
}

.ueber-absatz strong {
  color: var(--schwarz);
  font-weight: 600;
}

.ueber-absatz em {
  font-style: italic;
  color: var(--grau-tief);
}

.ueber-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: var(--linie);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-zahl {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rot);
  line-height: 1;
}

.fact-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grau-mittel);
}

/* ── KERNTHESE ───────────────────────────── */
.kernthese {
  background: var(--schwarz);
  padding: 5rem 5%;
  text-align: center;
}

.kernthese blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--weiss);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
}

.kernthese-item {
  margin-bottom: 2.5rem;
}

.kernthese-item:last-child {
  margin-bottom: 0;
}

.kernthese cite {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* ── ZWEI-WELTEN-BANNER ─────────────────── */
.zwei-welten-banner {
  border-top: var(--linie);
}

.zwei-welten-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.zwei-welten-col {
  padding: 2.8rem 5%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zwei-welten-left {
  border-right: var(--linie);
}

.zwei-welten-right {
  background: var(--creme);
}

.zwei-welten-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rot);
  font-weight: 600;
}

.zwei-welten-zitat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--schwarz);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}

.zwei-welten-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rot);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.zwei-welten-link:hover {
  border-color: var(--rot);
}

/* ── BRANCHEN-STRIP ─────────────────────── */
.branchen-strip {
  border-top: var(--linie);
  border-bottom: var(--linie);
  padding: 1.4rem 5%;
}

.branchen-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.branchen-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rot);
  font-weight: 600;
  white-space: nowrap;
}

.branchen-liste {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}

.branchen-item {
  font-size: 0.82rem;
  color: var(--grau-mittel);
}

.branchen-separator {
  color: var(--grau-hell);
}

.branchen-text-rechts {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--grau-mittel);
  font-style: italic;
  width: 100%;
  text-align: right;
}

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
  padding: 6rem 5%;
  text-align: center;
  border-top: var(--linie);
}

.cta-section .section-titel {
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 0.97rem;
  color: var(--grau-tief);
  max-width: 54ch;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}

.cta-kredenz {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--grau-mittel);
}

/* ── PURPOSE SECTION ───────────────────────── */
.purpose-section {
  padding: 5rem 5%;
  text-align: center;
  border-top: var(--linie);
}

.purpose-text {
  font-size: 0.97rem;
  color: var(--grau-tief);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.8;
}
