/************************************************************************************
Fonts
*************************************************************************************/
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.ttf') format('truetype'),
        url('../fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.eot');
    src: url('../fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/OpenSans-Bold.woff') format('woff'),
        url('../fonts/OpenSans-Bold.ttf') format('truetype'),
        url('../fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.eot');
    src: url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Bold.woff2') format('woff2'),
        url('../fonts/Lato-Bold.woff') format('woff'),
        url('../fonts/Lato-Bold.ttf') format('truetype'),
        url('../fonts/Lato-Bold.svg#Lato-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
    src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff'),
        url('../fonts/Lato-Regular.ttf') format('truetype'),
        url('../fonts/Lato-Regular.svg#Lato-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/************************************************************************************
Layout Styles
*************************************************************************************/
body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400; 
	font-style: normal; 
	font-size: 17px;
	line-height: 28px;
	color: #424242;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', Arial, sans-serif;
	font-weight: bold; 
	font-style: normal
}


/***********************************************  
Media-Querries - Body - Silbentrennung 
***********************************************/
@media (max-width: 500px) {
	.silbentrennung {
		-ms-word-break: normal;
		 word-break: normal;
		 /*Non standard for webkit*/
		 word-break: break-word;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		}
	}

/************************************************************************************
Allgemeine Klassen
*************************************************************************************/
/* =========================
   LINK STYLE – WEISS
   ========================= */

.link-white a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(250,250,250,.65);
  text-underline-offset: .18em;
  text-decoration-thickness: 2px;
}

.link-white a:hover{
  color: #fff;
  text-decoration-color: #fff;
}

.book_links a {
  text-decoration: none;
}

.no-underline {
  text-decoration: none;
}

/* =========================
   Buttons
========================= */

/* Grundlook für alle Buttons */
.btn {
  border: none;
  border-radius: 0.375rem; /* Bootstrap-Standard */
  padding: 0.4rem 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

/* Primary in deinem Farbschema */
.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #97bbaf;
  --bs-btn-border-color: #97bbaf;

  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #1f4a45;
  --bs-btn-hover-border-color: #1f4a45;

  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #183437;
  --bs-btn-active-border-color: #183437;

  --bs-btn-focus-shadow-rgb: 151, 187, 175;

  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  opacity: 0.35;
  pointer-events: none;
}

/* schöner Fokus */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(151, 187, 175, 0.35);
}

/* =========================
   Backgrounds
========================= */
.bg-white {
    background-color: #ffffff;
}

.bg-beige {
    background-color: #e9e7e3;
}

.bg-green {
    background-color: #183437;
}

/* =========================
   Rubric Header
========================= */
.rubric-header-overview {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* statt fixer Höhe */
  min-height: clamp(260px, 40vh, 320px);

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

/* Overlay */
.rubric-header-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 52, 55, 0.80); /* #183437 mit Transparenz */
  z-index: 0;
}

/* Content über Overlay */
.rubric-container-overview {
  position: relative;
  z-index: 1;

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

  animation: rubricFadeDown 700ms ease-out;
}

.rubric-content-overview {
  max-width: 60%;
  color: #ffffff;
  margin: 0 auto;
}
.rubric-header-overview {
  clip-path: ellipse(120% 100% at 50% 0%);
}

.rubric-content-overview h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.rubric-content-overview p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes rubricFadeDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .rubric-content-overview {
    max-width: 90%;
  }
}

/* Nutzer, die Animationen reduzieren wollen */
@media (prefers-reduced-motion: reduce) {
  .rubric-container-overview {
    animation: none;
  }
}

/* =========================
   Bild für Rubrik
   (Unterseiten)
========================= */
.rubric-header {
    background: url('../images/layout/rubric-header.jpg') no-repeat center center;
    background-size: cover;
}

.rubric-header-mm-romance {
    background: url('../images/layout/rubric-header-mm-romance.jpg') no-repeat center center;
    background-size: cover;
}

.rubric-header-hoerbuecher {
    background: url('../images/layout/rubric-header-hoerbuecher.jpg') no-repeat center center;
    background-size: cover;
}

.rubric-header-fantasy {
    background: url('../images/layout/rubric-header-fantasy.jpg') no-repeat center center;
    background-size: cover;
}

/* =========================
   Überschrift & Ornament
   (Rubriken)
========================= */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #97bbaf;
  font-weight: 600;
}
.ornament-divider {
  width: 120px;
  height: 14px;
  margin: 0 auto 4rem;
  position: relative;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(151,187,175,.6);
}

.ornament-divider::before {
  left: 0;
}

.ornament-divider::after {
  right: 0;
}

.ornament-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #97bbaf;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* =========================
   Back Button
========================= */
.wide-box {
  background-color: #183437;
  padding: 5px 20px;
  color: #ffffff;
}

/* Button */
.wide-box .btn {
  background-color: #183437; 
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.35rem 0.75rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* Hover */
.wide-box .btn:hover {
  background-color: #97bbaf;
  color: #ffffff;
  border-color: #97bbaf;
}

/* =========================
   Social Media
========================= */

.social-media-icons a {
    color: #97bbaf;
    display: inline-block;
    padding: 5px; 
    margin-top: 20px;
}

.social-media-icons a:hover {
    color: #000; 
}

/************************************************************************************
Navigation
*************************************************************************************/
/* ===== Navbar Layering (damit Dropdowns sicher über Content liegen) ===== */
header.border-bottom.bg-white {
  position: relative;
  z-index: 15;
}

/* sticky header */

header.border-bottom.bg-white {
  position: sticky;
  top: 0;
}

/* Navbar insgesamt höher machen */
.navbar {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

/* ===== Logo-Link ===== */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;   /* damit z-index überhaupt wirken kann */
  z-index: 16;          /* minimal über dem Header */
}

.logo-link {
  flex-shrink: 1;
  min-width: 0;
}

.logo-link img {
  max-height: 44px;
}

@media (max-width: 576px) {
  .logo-link img {
    max-height: 32px;
  }
}

.navbar-toggler {
  flex-shrink: 0;
}

/* ===== Navbar Links ===== */
.navbar-nav .nav-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #97bbaf;
}

/* Active (Bootstrap setzt oft .active am <a> ODER am <li>) */
.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active > .nav-link {
  color: #97bbaf;
  /*font-weight: 700;*/
}

/* ===== Dropdown ===== */
.navbar .dropdown-menu {
  z-index: 20;          /* Dropdown über Navbar */
}

/* Grundzustand */
.navbar .dropdown-menu {
  display: block;              /* wichtig für Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  pointer-events: none;
}

/* Geöffnet */
.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
   
/* Dropdown Items Hover/Active */
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  color: #97bbaf;
  background-color: transparent;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
  color: #97bbaf;
  background-color: transparent;
}

@media (max-width: 992px) {
  .navbar .dropdown-menu {
    transition: none;
    transform: none;
  }
}  
/* ===== Dropdown: Mobile darf NICHT "display:block" erzwingen ===== */

/* Standard: Dropdown im Navbar-Collapse soll keinen Platz reservieren */
.navbar .dropdown-menu{
  display: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: none;
}

/* Wenn geöffnet (Bootstrap setzt .show) */
.navbar .dropdown-menu.show{
  display: block;
}

/* Desktop: Animation wieder aktivieren (weil dropdown hier overlaid ist) */
@media (min-width: 992px){
  .navbar .dropdown-menu{
    display: block;              /* ok auf Desktop */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .navbar .dropdown-menu.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/************************************************************************************
Startseite
*************************************************************************************/
/* Section Padding*/
.sec-pad {
  padding: 50px 0 75px 0;
}

.start-section {
  position: relative;
  min-height: 50vh;
  max-height: 700px;
  background-image: url('../images/layout/start-autor-fantasy-michael-hamannt.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; /* vertikal zentriert */
  color: #ffffff;
}

/* dunkles Overlay für Lesbarkeit */
.start-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
}

/* Inhalt über das Overlay heben */
.start-section .container {
  position: relative;
  z-index: 1;
}

.new-book {
  max-width: 220px;
}

/* ===== Neuerscheinungen / Featured ===== */
.featured-heading .featured-icon{
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
  opacity: 0.9;
}

.featured-heading h2{
  font-weight: 800;
  letter-spacing: 0.06em;
}

.featured-subhead{
  margin-top: 2.5rem;
}

.featured-title{
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* etwas mehr Luft zwischen Kategorie & Grid */
.featured-subhead + .row{
  margin-top: 1rem;
}

/* =========================
   Genre Card
========================= */
/* ===== Genre Cards: elegant / refined ===== */
#genres .genres-heading {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

#genres .genres-icon {
  display: block;
  margin: 0 auto 0.5rem;
  width: 120px;
  height: auto;
  opacity: 0.9;
}

#genres h2 {
  color: #1f1f1f;
  letter-spacing: 0.06em;   /* wichtig für edlen Look */
}

/* Card als Link klickbar */
.genre-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Bild-Variante */
.genre-card--image .genre-card__inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 220px;
  padding: 1.25rem;

  /* Hintergrundbild über CSS Variable */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* weiche Grundtiefe */
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* Overlay für Lesbarkeit (edler Verlauf) */
.genre-card--image .genre-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
  transition: opacity 220ms ease;
}

/* Content über Overlay */
.genre-card--image .genre-card__content,
.genre-card--image .genre-card__arrow {
  position: relative;
  z-index: 1;
}

/* Typo weiß */
.genre-card--image .genre-card__title {
  color: #fff;
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.genre-card--image .genre-card__text {
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 34ch;
}

/* Layout: Text links unten, Button rechts unten */
.genre-card--image .genre-card__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

/* Hover: dezenter Lift + minimal mehr Kontrast */
.genre-card--image:hover .genre-card__inner,
.genre-card--image:focus-visible .genre-card__inner {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.genre-card--image:hover .genre-card__inner::before,
.genre-card--image:focus-visible .genre-card__inner::before {
  opacity: 1;
}

/* Pfeil wie Primary Button (dein Stil) */
.genre-card--image .genre-card__arrow.btn-primary {
  border: none;
  border-radius: 0.375rem; /* dein „ursprünglicher“ Radius */
  padding: 0.55rem 0.85rem;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Focus sauber */
.genre-card:focus-visible {
  outline: none;
}

.genre-card:focus-visible .genre-card__inner {
  box-shadow:
    0 0 0 4px rgba(151,187,175,0.35),
    0 18px 42px rgba(0,0,0,0.16);
}

/* =========================
   Book Card
========================= */
.book-card__inner {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.3);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 16px;
  overflow: hidden;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.12);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}
.book-card__cover {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.book-card__title {
  font-size: 1.05rem;
  line-height: 1.3;
}

.book-card__title a {
  color: inherit;
}

.book-card__text {
  font-size: .95rem;
}

.book-card__actions {
  margin-top: auto;
}

/* Hover & Focus */
.book-card:hover .book-card__inner,
.book-card:focus-within .book-card__inner {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  border-color: rgba(0,0,0,.22);
}

.book-card:hover .book-card__cover img,
.book-card:focus-within .book-card__cover img {
  transform: scale(1.05);
}

.section-audio-bg {
  position: relative;
  background-image: url("../images/layout/wald.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark Overlay */
.section-audio-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Inhalt über Overlay legen */
.section-audio-bg .container {
  position: relative;
  z-index: 2;
}

/* Quadratische Hörbuch-Cover (1:1) */
.audio-cover-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.audio-cover-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   Newsletter
========================= */
/* Wrap: Tiefe & subtiler Lichtverlauf */
.cta-luxe-wrap {
  position: relative;
  overflow: hidden;
}

.cta-luxe-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(800px 450px at 85% 90%, rgba(198,167,94,.12), transparent 55%);
  pointer-events: none;
}

/* ---------------------------------------------------------
   Card: Satin / Glass
   --------------------------------------------------------- */
.cta-luxe {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Innenrahmen */
.cta-luxe::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.25rem;
  border: 1px solid rgba(198,167,94,.40);
  pointer-events: none;
}

/* Dezente Lichtkante */
.cta-luxe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(255,255,255,.14), transparent 55%);
  pointer-events: none;
}

.cta-luxe:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 26px 60px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* ---------------------------------------------------------
   Typografie 
   --------------------------------------------------------- */

/* Eyebrow */
.cta-eyebrow {
  display: inline-block;
  width: 100%;            /* erzwingt Zeilenumbruch */
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: #fff;
  margin-bottom: .25rem;
}

.cta-luxe h2 {
  display: inline-block;  /* nötig für den Strich */
  position: relative;
  padding-bottom: .6rem;
  margin-bottom: .75rem;
}

/* Überschrift "Newsletter" */
.cta-luxe h2 {
  color: rgba(198,167,94,.98) !important;
}

.cta-luxe h2 {
  position: relative;
  display: inline-block;   /* WICHTIG */
  margin-bottom: .75rem;   /* Abstand zum Text darunter */
  padding-bottom: .6rem;   /* Platz für den Strich */
}

.cta-luxe h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: rgba(198,167,94,.65);
  border-radius: 2px;
}

/* Beschreibungstext */
.cta-sub {
  color: #fff;
}

/* ---------------------------------------------------------
   Button: Altes Gold (weißes Label)
   --------------------------------------------------------- */
.cta-btn {
  position: relative;
  border: 1px solid rgba(122,103,52,.75);
  background:
    linear-gradient(
      180deg,
      #b49a5a 0%,
      #a48b4f 45%,
      #8f7a3f 100%
    );
  color: #ffffff;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  box-shadow:
    0 14px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.28),
    0 0 0 6px rgba(198,167,94,.10);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(122,103,52,.95);
  background:
    linear-gradient(
      180deg,
      #c1a865 0%,
      #b1985b 45%,
      #9b8446 100%
    );
  box-shadow:
    0 18px 40px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.26),
    inset 0 -1px 0 rgba(0,0,0,.32),
    0 0 0 8px rgba(198,167,94,.16);
}

/* Pfeil-Microinteraction */
.cta-arrow {
  display: inline-block;
  margin-left: .5rem;
  transition: transform .2s ease;
}

a:hover .cta-arrow {
  transform: translateX(3px);
}

/* Fokus (Accessibility) */
a:focus-visible .cta-luxe,
a:focus-visible .cta-btn {
  outline: 2px solid rgba(198,167,94,.75);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */
@media (max-width: 991.98px) {
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   Über mich
========================= */

/* Wrapper */
.sec-pad.about-me.start-about-me .about-media{
  position: relative;
  max-width: 420px;
  overflow: visible;
  padding-bottom: 52px; /* Platz für die überlappende Social Box */
}

/* Bild: keine Rundung */
.sec-pad.about-me.start-about-me .about-photo2 img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Box: exakt Bildbreite (TOTAL), aber nach rechts verschoben */
.sec-pad.about-me.start-about-me .about-social{
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  box-sizing: border-box;      /* <- verhindert breiter als Foto */
  transform: translateX(28px); /* Überstand nach rechts */

  background: #183437;
  color: #fff;
  border-radius: 0;

  padding: 14px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);

  /* keine Bewegung */
  animation: none;
  transition: none;
}

/* Links im Social-Chunk: mint, hover weiß, keine Unterstreichung */
.sec-pad.about-me.start-about-me .about-social a{



  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  margin: .25rem .35rem;

  color: #97bbaf;
  text-decoration: none;

  border: 1px solid rgba(151,187,175,.35);
  background: rgba(255,255,255,.06);

  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  line-height: 1;
}





.sec-pad.about-me.start-about-me .about-social a:hover,
.sec-pad.about-me.start-about-me .about-social a:focus{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}



/* Falls Icons/SVGs drin sind */
.sec-pad.about-me.start-about-me .about-social a i,
.sec-pad.about-me.start-about-me .about-social a svg{
  color: currentColor;
  fill: currentColor;
}

/* Mobile: Bild & Box mittig, Box unter das Bild (verdeckt nichts) */
@media (max-width: 991.98px){
  .sec-pad.about-me.start-about-me .about-media{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .sec-pad.about-me.start-about-me .about-social{
    position: static;          /* nicht mehr overlay */
    transform: none;           /* keinen Rechtsversatz */
    width: 100%;

  }
}

/************************************************************************************
Übersicht Bücher
*************************************************************************************/
.all-books-cta {
  position: relative;
  padding: 4rem 0;
  background-image: url('../images/layout/bg-parallax-urban-fantasy.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* Inhalt über Overlay */
.all-books-cta .container {
  position: relative;
  z-index: 1;
}

.all-books-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.all-books-cta__title {
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.all-books-cta__text {
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,0.88);
}

/* Button-Feinschliff (dezent) */
.all-books-cta .btn {
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.all-books-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

/* Mobile Feinschliff */
@media (max-width: 576px) {
  .all-books-cta {
    padding: 3rem 0;
  }
  .all-books-cta__inner {
    padding: 1.5rem 1rem;
  }
}

/************************************************************************************
Bücher
*************************************************************************************/
.book-hero {
  position: relative;
  background-image: url("/assets/images/backgrounds/book-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}

.book-hero {
  position: relative;
  background-size: cover;
  background-position: center 0;
  overflow: hidden;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .book-hero {
    background-position: center !important;
  }
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.book-hero .container {
  z-index: 2;
}

.book-cover {
  max-width: 260px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-radius: 6px;
}

.book-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.book-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.book-blurb {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.book-meta {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.book-meta li {
  margin-bottom: 0.4rem;
}

/* =========================
  Bookcover Animation
========================= */
@media (prefers-reduced-motion: reduce) {
  .book-cover-anim { transform: none !important; opacity: 1 !important; transition: none !important; }
}

.book-cover-anim {
  opacity: 0;
  transform: translateX(-180px) scale(0.96);
  transition:
    transform 1300ms cubic-bezier(0.16, 1.05, 0.38, 1),
    opacity 1000ms ease-out;
  will-change: transform, opacity;
}

.js-reveal.is-visible .book-cover-anim {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* =========================
Audio Section
========================= */
.audio-section {
  margin: 4rem 0 2rem 0;
}

.audio-section h2 {
  color: #97bbaf;
}

@media (min-width: 992px) {
  .audio-section {
    margin: 6rem 0 3rem 0;
  }
}

/* =========================
Moore Books
========================= */
.sec-pad-more-books {
  padding: 75px 0 75px 0;
}


:root{
  --curve-h: 80px;     /* HIER ändern */
  --curve-gap: 4.5rem; /* Abstand für Content */
}

.more-books{
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--curve-h) + var(--curve-gap));
  padding-bottom: 70px;
}

.more-books-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  pointer-events: none;
}

.more-books-curve{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: var(--curve-h);
  background: #fff;
  border-bottom-left-radius: 100% var(--curve-h);
  border-bottom-right-radius: 100% var(--curve-h);
  z-index: 2;
  pointer-events: none;
}

.more-books > .container{
  position: relative;
  z-index: 3;
}

.book-hover img{
  border-radius: 6px;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.book-hover:hover img{
  transform: translateY(-5px);
  box-shadow:
    0 20px 42px rgba(0,0,0,0.32),
    0 0 0 1px rgba(255,255,255,0.16);
}

/************************************************************************************
Vita
*************************************************************************************/
/* Padding-Klasse statt sec-pad */
.section-pad-xl{
  padding: 120px 0 75px 0;
}

/* Eyebrow / Lead-in */
.about-eyebrow{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: #97bbaf;
  font-weight: 700;
}

/* Divider */
.about-divider{
  width: 90px;
  height: 3px;
  border-radius: 99px;
  background: rgba(24,52,55,.85);
}

/* Links im Vita-Text */
.author-vita a{
  color: #183437;
  text-decoration: underline;
  text-decoration-color: rgba(151,187,175,.65);
  text-underline-offset: .18em;
  text-decoration-thickness: 2px;
}
.author-vita a:hover{
  color: #183437;
  text-decoration-color: #97bbaf;
}


/* Wrapper um Foto + Social Box */
.author-vita.about--vita .about-media{
  position: relative;
  max-width: 420px;
  overflow: visible;          /* damit Überstand sichtbar bleibt */
  padding-bottom: 52px;       /* Platz für die überlappende Social Box */
}

/* Foto clean – ohne runde Ecken */
.author-vita.about--vita .about-photo2{
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  background: #fff;
}

.author-vita.about--vita .about-photo2 img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Social Box: exakt Foto-Breite, ragt nur per translateX hinaus (nicht durch left+right!) */
.author-vita.about--vita .about-social{
  position: absolute;
  left: 0;
  right: auto;
  bottom: -18px;

  width: 100%;
  box-sizing: border-box;       /* verhindert: Box wird breiter als Foto */
  transform: translateX(-40px); /* Überstand links */

  z-index: 2;
  padding: .95rem 1rem;

  border-radius: 0;
  background: #183437;
  color: #fff;

  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);

  /* Sicherheit: falls anderswo Animationen gesetzt sind */
  animation: none;
  transition: none;
}

/* Social Buttons/Links im Chunk */
.author-vita.about--vita .about-social a{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  margin: .25rem .35rem;

  color: #97bbaf;
  text-decoration: none;

  border: 1px solid rgba(151,187,175,.35);
  background: rgba(255,255,255,.06);

  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  line-height: 1;
}

.author-vita.about--vita .about-social a:hover,
.author-vita.about--vita .about-social a:focus{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Icons: folgen Linkfarbe */
.author-vita.about--vita .about-social a i,
.author-vita.about--vita .about-social a svg{
  color: currentColor;
  fill: currentColor;
}

/* Mobile Feinschliff: Box bleibt Foto-Breite, nur weniger Überstand */
@media (max-width: 991.98px){
  .author-vita.about--vita .about-media{
    padding-bottom: 46px;
  }
  .author-vita.about--vita .about-social{
    bottom: -16px;
    transform: translateX(-18px);
  }
}

/* =========================================================
   QUOTE
   ========================================================= */

/* Wrap: Tiefe & subtiler Lichtverlauf */
.quote-luxe-wrap{
  position: relative;
  overflow: hidden;
}

.quote-luxe-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(800px 450px at 85% 90%, rgba(198,167,94,.12), transparent 55%);
  pointer-events: none;
}

/* Card: Satin / Glass */
.quote-luxe{
  position: relative;
  max-width: 900px;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 1.8rem 1.8rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Innenrahmen (Gold) */
.quote-luxe::before{
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198,167,94,.40);
  pointer-events: none;
  border-radius: 1.25rem;
}

/* Dezente Lichtkante */
.quote-luxe::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255,255,255,.14), transparent 55%);
  pointer-events: none;
}

/* Hover wie Newsletter */
.quote-luxe:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 26px 60px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* Quote Text */
.quote-text{
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Eyebrow innerhalb der Quote-Box (Gold) */
.quote-eyebrow{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(198,167,94,.95);
}

/* Kleiner goldener Trenner */
.quote-divider{
  width: 36px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(198,167,94,.65);
  border-radius: 2px;
}

/* VITA: auf kleinen Screens Box wirklich mittig */
@media (max-width: 991.98px){
  .author-vita.about--vita .about-media{
    margin-left: auto;
    margin-right: auto;
  }

  .author-vita.about--vita .about-social{
    left: 50%;
    right: auto;
    width: 100%;
    box-sizing: border-box;
    transform: translateX(-50%); /* echte Zentrierung */
  }
}

/************************************************************************************
Kontakt
*************************************************************************************/

/* Padding-Klasse statt sec-pad */
.section-pad-xl{
  padding: 120px 0 75px 0;
}

/* Eyebrow / Lead-in */
.about-eyebrow{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: #97bbaf;
  font-weight: 700;
}

/* Divider */
.about-divider{
  width: 90px;
  height: 3px;
  border-radius: 99px;
  background: rgba(24,52,55,.85);
}

/* Links im Kontakt-Text */
.contact-section a{
  color: #183437;
  text-decoration: underline;
  text-decoration-color: rgba(151,187,175,.65);
  text-underline-offset: .18em;
  text-decoration-thickness: 2px;
}
.contact-section a:hover{
  color: #183437;
  text-decoration-color: #97bbaf;
}

/* =========================================================
   KONTAKT: FOTO + SOCIAL wie VITA (scoped)
   Voraussetzung: .contact-section.about--contact auf der Section
   ========================================================= */

/* Wrapper um Foto + Social Box */
.contact-section.about--contact .about-media{
  position: relative;
  max-width: 420px;
  overflow: visible;
  padding-bottom: 52px; /* Platz für die überlappende Social Box */
}

/* Foto clean – ohne runde Ecken */
.contact-section.about--contact .about-photo2{
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  background: #fff;
}
.contact-section.about--contact .about-photo2 img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Social Box: exakt Foto-Breite (TOTAL), Überstand links nur per translateX */
.contact-section.about--contact .about-social{
  position: absolute;
  left: 0;
  right: auto;
  bottom: -18px;

  width: 100%;
  box-sizing: border-box;         /* verhindert: Box > Foto */
  transform: translateX(-40px);   /* Überstand links (wie Vita) */

  z-index: 2;
  padding: .95rem 1rem;
  border-radius: 0;
  background: #183437;
  color: #fff;

  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);

  animation: contactSocialFloatIn .85s ease-out .15s both;
}

/* Eigene Keyframes (damit Kontakt nichts anderes überschreibt) */
@keyframes contactSocialFloatIn{
  from{ opacity: 0; transform: translateX(20px); }
  to{   opacity: 1; transform: translateX(-40px); }
}

@media (prefers-reduced-motion: reduce){
  .contact-section.about--contact .about-social{ animation: none; }
}

/* Social Buttons/Links: mint, hover weiß, keine Unterstreichung */
.contact-section.about--contact .about-social a{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  margin: .25rem .35rem;

  color: #97bbaf;
  text-decoration: none;

  border: 1px solid rgba(151,187,175,.35);
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  line-height: 1;
}

.contact-section.about--contact .about-social a:hover,
.contact-section.about--contact .about-social a:focus{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* Icons folgen Linkfarbe */
.contact-section.about--contact .about-social a i,
.contact-section.about--contact .about-social a svg{
  color: currentColor;
  fill: currentColor;
}


/* Optional: auf sehr kleinen Screens Box mittig statt links-Überstand */
@media (max-width: 991.98px){
  .contact-section.about--contact .about-social{
    left: 50%;
    transform: translateX(-50%);
  }
  @keyframes contactSocialFloatIn{
    from{ opacity: 0; transform: translateX(0); }
    to{   opacity: 1; transform: translateX(-50%); }
  }
}
/************************************************************************************
Newsletter
*************************************************************************************/
/* Padding-Klasse (Newsletter-Seite) */
.section-pad-xl{
  padding: 120px 0 75px 0;
}

/* iFrame hübsch einbetten */
.newsletter-embed{
  border: 1px solid rgba(24,52,55,.10);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  background: #fff;
}

/* iFrame responsive + ausreichend Höhe */
.newsletter-embed iframe{
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
}

/* Auf kleineren Screens weniger Höhe, damit es nicht endlos wirkt */
@media (max-width: 991.98px){
  .newsletter-embed iframe{
    height: 760px; /* Brevo-Forms sind oft höher auf Mobile */
  }
}

/* iFrame hübsch einbetten */
.newsletter-embed-am{
  border: 1px solid rgba(24,52,55,.10);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  background: #fff;
}

/* iFrame responsive + ausreichend Höhe */
.newsletter-embed-am iframe{
  width: 100%;
  height: 415px;
  border: 0;
  display: block;
}

/* Auf kleineren Screens weniger Höhe, damit es nicht endlos wirkt */
@media (max-width: 991.98px){
  .newsletter-embed-am iframe{
    height: 760px; /* Brevo-Forms sind oft höher auf Mobile */
  }
}

/* Liste etwas „edler“ */
.newsletter-list{
  padding-left: 1.1rem;
}
.newsletter-list li{
  margin-bottom: .75rem;
}
/************************************************************************************
Extras
*************************************************************************************/
/* Padding-Klasse */
.section-pad-xl{
  padding: 120px 0 75px 0;
}

/* Figure Styling */
.world-figure{
  margin: 0 0 1.25rem 0;
}
.world-figure img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 1.25rem; /* wenn du Bilder eckig willst: 0 */
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.world-figure figcaption{
  margin-top: .5rem;
  font-size: .85rem;
  color: rgba(24,52,55,.70);
}

/* Sidebar Widgets als Cards */
.widget-card{
  padding: 1rem 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(24,52,55,.10);
  border-radius: 1.25rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  margin-bottom: 1rem;
}
.widget-card img{
  border-radius: 1rem; /* wenn du Cover eckig willst: 0 */
  border: 1px solid rgba(24,52,55,.10);
}

/* Optional: etwas Luft für lange Fließtexte */
.buchwelten p{
  line-height: 1.7;
}

/* Bild im Fließtext */
.text-image{
  max-width: 40%;              /* Größe im Text */
  margin: .25rem 1.25rem .75rem 0;
}

.text-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Rechts im Text */
.text-image-right{
  float: right;
  margin-left: 1.25rem;
  margin-right: 0;
}

/* Links im Text */
.text-image-left{
  float: left;
  margin-right: 1.25rem;
  margin-left: 0;
}

/* Caption dezenter */
.text-image figcaption{
  font-size: .8rem;
  color: rgba(24,52,55,.65);
  margin-top: .35rem;
}

/* Responsive Reset */
@media (max-width: 991.98px){
  .text-image{
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Zentrierte Widget-Überschrift */
.widget-card .h5{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(24,52,55,.85);
  margin-bottom: .75rem;
  text-align: center;          /* 👈 wichtig */
}

/* Zentrierter Akzent-Strich */
.widget-card .h5::after{
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: .4rem auto 0;        /* 👈 auto = zentriert */
  background: rgba(151,187,175,.85);
  border-radius: 2px;
}

/* CTA Bar (ersetzt wide-box, passt zu deinem Stil) */
.cta-bar{
  padding: 16px 0;
  background: rgba(24,52,55,.06);
  border-top: 1px solid rgba(24,52,55,.10);
  border-bottom: 1px solid rgba(24,52,55,.10);
}

/* Interview Layout */
.interview-stream{
  display: grid;
  gap: 14px;
}

.interview-block{
  padding: 0 0 18px 0;
  border-bottom: 1px solid rgba(24,52,55,.10);
  margin-bottom: 18px;
}

.interview-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
}

/* Avatar */
.interview-avatar{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(24,52,55,.10);
  flex: 0 0 auto;
}

/* Bubble */
.interview-bubble{
  flex: 1;
  padding: 12px 14px;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(24,52,55,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

/* Frage optisch leicht absetzen */
.interview-item.is-q .interview-bubble{
  background: rgba(151,187,175,.10);
  border-color: rgba(151,187,175,.28);
}

/* Mobile: etwas kompakter */
@media (max-width: 991.98px){
  .interview-item{
    padding: 8px 0;
  }
  .interview-bubble{
    padding: 11px 12px;
  }
}

/* Figure style (wie deine Buchwelten-Seiten) */
.world-figure img{
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* Quote-Luxe-Elemente (Newsletter-Look) */
.quote-eyebrow{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(198,167,94,.95);
  width: 100%;
}

.quote-divider{
  width: 36px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(198,167,94,.65);
  border-radius: 2px;
}

.quote-footer{
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* Optional: Buttons hier ebenfalls „richtig“ wirken lassen */
.cta-bar .btn{
  padding: .75rem 1rem;
}

/* Interview Layout (wie bei deiner neuen Website) */
.interview-stream{
  display: grid;
  gap: 14px;
}

.interview-block{
  padding: 0 0 18px 0;
  border-bottom: 1px solid rgba(24,52,55,.10);
  margin-bottom: 18px;
}

.interview-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
}

/* Avatar */
.interview-avatar{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(24,52,55,.10);
  flex: 0 0 auto;
}

/* Bubble */
.interview-bubble{
  flex: 1;
  padding: 12px 14px;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(24,52,55,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

/* Frage optisch absetzen */
.interview-item.is-q .interview-bubble{
  background: rgba(151,187,175,.10);
  border-color: rgba(151,187,175,.28);
}

/* Mobile */
@media (max-width: 991.98px){
  .interview-item{ padding: 8px 0; }
  .interview-bubble{ padding: 11px 12px; }
}

/* Quote-Luxe Zusätze (Eyebrow + Divider in der Box) */
.quote-eyebrow{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(198,167,94,.95);
  width: 100%;
}

.quote-divider{
  width: 36px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(198,167,94,.65);
  border-radius: 2px;
}

.quote-footer{
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}


/************************************************************************************
Genre Fantasy
*************************************************************************************/
/* -----------------------------
   SCHNELLNAVIGATION
------------------------------ */

.schnellnavigation h2,
.schnellnavigation .h6 {
  color: #97bbaf;                 /* dein Grün */
  font-weight: 600;
  letter-spacing: .06em;
}

.schnellnavigation a {
  color: #1c1c1c;
  text-decoration: none;
}

.schnellnavigation a:hover {
  text-decoration: underline;
}
/* Wrapper: Tiefe & subtiler Lichtverlauf (wie .cta-luxe-wrap) */
.series-cards-wrap {
  position: relative;
  overflow: hidden;
}

.series-cards-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(800px 450px at 85% 90%, rgba(198,167,94,.12), transparent 55%);
  pointer-events: none;
}

/* Link-WRAPPER: komplett klickbar, kein Bootstrap-Blau */
.series-link-wrapper {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ---------------------------------------------------------
   Card: Satin / Glass (wie .cta-luxe)
   --------------------------------------------------------- */
.series-card-luxe {
  position: relative;
  background: #183437; /* Tannengrün */
  border-radius: 1.5rem;
  padding: 1.6rem 1.6rem 1.4rem;

  /* Satin / Tiefe wie Newsletter */
  box-shadow:
    inset 0 2px 10px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 40px rgba(0,0,0,.35);

  transition: transform .25s ease, box-shadow .25s ease;
}

/* Innenrahmen (Gold) */
.series-card-luxe::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.25rem;
  border: 1px solid rgba(198,167,94,.40);
  pointer-events: none;
}

.series-card-luxe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(255,255,255,.10), transparent 55%);
  pointer-events: none;
}

.series-link-wrapper:hover .series-card-luxe {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 26px 60px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* ---------------------------------------------------------
   Typografie 
   --------------------------------------------------------- */

/* Eyebrow: grün wie bisher */
.series-card-luxe .about-eyebrow {
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: #fff; /* dein Grün */
  margin-bottom: .25rem;
}

/* Überschrift: Gold */
.series-card-luxe h3,
.series-card-luxe .h5 {
  position: relative;
  display: inline-block;
  margin-bottom: .75rem;
  padding-bottom: .6rem;
  color: rgba(198,167,94,.98) !important;
}

/* Divider: Gold (wie im Newsletter-Strich) */
.series-card-luxe .series-divider {
  width: 36px;
  height: 2px;
  background: rgba(198,167,94,.65);
  border-radius: 2px;
  margin: .2rem 0 .8rem;
}

/* Beschreibung */
.series-card-luxe .series-text {
  color: rgba(255,255,255,.92);
}

/* Link unten: hell (kein Blau) */
.series-card-luxe .series-link {
  display: inline-block;
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

/* Pfeil-Microinteraction (optional, falls du einen Pfeil span einsetzt) */
.series-card-luxe .series-arrow {
  display: inline-block;
  margin-left: .5rem;
  transition: transform .2s ease;
}

.series-link-wrapper:hover .series-arrow {
  transform: translateX(3px);
}

/* Fokus (Accessibility) */
.series-link-wrapper:focus-visible .series-card-luxe {
  outline: 2px solid rgba(198,167,94,.75);
  outline-offset: 3px;
}

/* Mobil etwas kompakter */
@media (max-width: 576px) {
  .series-card-luxe {
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow:
      0 14px 30px rgba(0,0,0,.25),
      inset 0 1px 0 rgba(255,255,255,.10);
  }
}
/************************************************************************************
Footer
*************************************************************************************/

.footer {
  /* Theme-Variablen */
  --footer-bg: #183437;
  --footer-text: #ffffff;
  --footer-muted: #97bbaf;
  --footer-icon: #bad8ce;
  --footer-sep: rgba(255,255,255,0.25);
  --footer-gold: #c6a75e;

  width: 100%;
  padding: 20px 0 0 0;
  background-color: var(--footer-bg);
  color: var(--footer-text);

  /* Einheitliche Grundschrift für Footer */
  font-size: 0.95rem;
}

.footer {
  --footer-divider: rgba(151,187,175,.25);
}

/* Typo */
.footer p {
  color: var(--footer-muted);
}

/* Links: Baseline */
.footer a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--footer-muted);
}

/* Einheitliche Link-Schriftgrößen */
.custom-link,
.footer-links a {
  font-size: 0.95rem;
}

/* Meta / Copyright */
.footer .copyright {
  color: var(--footer-text);
}

.footer-meta {
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Linkliste: custom-link (mit Unterstrich/Trenner)
   --------------------------------------------------------- */
.custom-link {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 0px solid var(--footer-divider); /* gleiche Farbe wie hr */
  transition: color 0.3s ease, border-color 0.3s ease;
}

.custom-link:hover {
  border-bottom-color: var(--footer-muted); /* etwas kräftiger beim Hover */
}

/* Abstand zwischen Abschnitten */
.link-section {
  margin-bottom: 2rem;
}

/* ---------------------------------------------------------
   Social Media Icons
   --------------------------------------------------------- */
.social-media-icons a {
  color: var(--footer-icon);
  margin-right: 10px;
  transition: color 0.3s ease;
}

.social-media-icons a:hover {
  color: var(--footer-text);
}

/* ---------------------------------------------------------
   Footer Links rechts (Impressum/Datenschutz/…)
   --------------------------------------------------------- */
.footer-links a {
  color: var(--footer-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--footer-text);
  text-decoration: none;
}

/* Separator (war vorher schwarz → auf dunklem Footer kaum sichtbar) */
.footer-sep {
  margin: 0 0.5rem;
  color: var(--footer-sep);
}

/* Tastatur-Fokus sichtbar, ohne Design zu stören */
.footer a:focus-visible {
  outline: 2px solid rgba(151,187,175,0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Mobile: Umbruch sauber */
@media (max-width: 767px) {
  .footer-links {
    text-align: left;
  }

  .footer-sep {
    display: none;
  }

  .footer-links a {
    display: inline-block;
    margin-right: 0.75rem;
  }
}

/* XL: kein Umbruch */
@media (min-width: 1200px) {
  .footer-links {
    white-space: nowrap;
  }
}

/* =========================================================
   Footer Newsletter Soft CTA – dezent, passend zu #183437
   ========================================================= */

.footer-soft-cta-inner {
  display: flex;
  flex-direction: column;   /* untereinander */
  align-items: center;      /* horizontal zentriert */
  text-align: center;
  gap: .4rem;
}

/* Die Zeile wirkt wie ein hochwertiger Hinweis, nicht wie ein CTA-Block */
.footer-soft-cta-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Newsletter-Label: gleiche Größe wie Links, nur gold */
.footer-soft-label {
  font-weight: 600;
  color: var(--footer-gold);
  font-size: 1.5rem;
  letter-spacing: .02em;
  text-transform: none;
}

/* Text: in deiner Footer-Akzentfarbe */
.footer-soft-text {
  color: var(--footer-muted);
  font-size: 0.95rem;
}

/* Button: Abonnieren in Gold (ruhig, ohne Fläche) */
.footer-soft-btn {
  margin-top: .6rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;

  color: var(--footer-gold);
  border: 1px solid rgba(198,167,94,.75);
  background: transparent;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.footer-soft-btn:hover {
  transform: translateY(-1px);
  background: rgba(198,167,94,.12);
  border-color: rgba(198,167,94,1);
  color: #ffffff;
}

/* Optional: Focus sichtbar */
.footer-soft-btn:focus-visible {
  outline: 2px solid rgba(198,167,94,.55);
  outline-offset: 3px;
}

/* Mobile: Button volle Breite, damit es ruhig & clean bleibt */
@media (max-width: 991.98px) {
  .footer-soft-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}