/*
Theme Name: Decora - Interior Design HTML CSS Website Template
Theme URI: https://templatejungle.com/
Author: TemplatesJungle
Author URI: https://templatejungle.com/
Description: Decora - Interior Design HTML CSS Website Template is specially designed for interior design or architecture by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------
CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/
body {
  --heading-font: "Josefin Sans", serif;
  --heading-font-weight: 200;
  --heading-color: #1D150A;
  --heading-line-height: 1.24;

  --swiper-theme-color: #8C907E;

  /* bootstrap */
  --bs-body-font-family: "Josefin Sans", sans-serif;
  --bs-body-font-size: 19px;
  --bs-body-font-weight: 300;
  --bs-body-line-height: 1.7;
  --bs-body-color: #555555;
  --bs-body-color-rgb: 1.6, 1.6, 1.6;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-body-bg: #fff;

  --bs-primary: #7997b5;
  --bs-secondary: #EAE3DF;
  --bs-black: #111;
  --bs-white: #fff;
  --bs-light: #f8f8f8;
  --bs-dark: #1D150A;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #6B6765;

  --bs-primary-rgb: 121, 151, 181;
  --bs-secondary-rgb: 234, 227, 223;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 29, 21, 10;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 156, 146, 89;

  --bs-border-color: #e5e5e5 !important;
}

body {
  letter-spacing: 0rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  text-transform: capitalize;
  line-height: 150%;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
}

a {
  text-decoration: none;
  transition: 0.1s ease-in-out;
}

a:hover {
  color: var(--bs-primary);
}

input:focus {
  outline: none;
}

/* Font Family */
.heading-font {
  font-family: var(--heading-font);
}

.body-font {
  font-family: var(--bs-body-font-family);
}

.sub-heading {
  letter-spacing: 6px;
}

@media (min-width: 1600px) {
  .container,
  .container-lg {
    max-width: 1460px;
  }

  .container,
  .container-md {
    max-width: 1200px;
  }
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 16px;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  font-weight: 400;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  text-transform: none;
}

.btn-primary {
  --bs-btn-color: var(--bs-light);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-light);
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-light);
  --bs-btn-active-bg: var(--bs-dark);
  --bs-btn-active-border-color: var(--bs-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-light);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #1D150A;
  --bs-btn-border-color: #1D150A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1D150A;
  --bs-btn-hover-border-color: #1D150A;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1D150A;
  --bs-btn-active-border-color: #1D150A;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1D150A;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1D150A;
  --bs-gradient: none;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1D150A;
  --bs-btn-disabled-border-color: #1D150A;
}

.dropdown-menu {
  --bs-dropdown-link-hover-color: var(--bs-dark);
  --bs-dropdown-link-hover-bg: var(--bs-body-bg);
  --bs-dropdown-link-active-color: var(--bs-body-color);
  --bs-dropdown-link-active-bg: var(--bs-body-bg);
  --bs-dropdown-bg: var(--bs-white);
  --bs-dropdown-color: var(--bs-dark);
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* preloader */
.preloader {
  position: fixed;
  z-index: 99;
  background: var(--bs-dark);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.preloader.loaded {
  height: 0;
}

/* navbar */
.navbar.fixed-top {
  transition: background-color 0.6s ease-out;
}

/* margin */
.my-lg-6 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.my-lg-7 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-lg-8 {
  margin-top: 8.5rem;
  margin-bottom: 8rem;
}

.my-lg-9 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.my-lg-10 {
  margin-top: 12.5rem;
  margin-bottom: 12.5rem;
}

/* padding */
.py-lg-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.py-lg-7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-lg-8 {
  padding-top: 8.5rem;
  padding-bottom: 8rem;
}

.py-lg-9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.py-lg-10 {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}

/* - Text Color
------------------------------------------------------------- */
.text-gray-dark {
  color: var(--bs-gray-dark);
}

/* - Border Radius
------------------------------------------------------------- */
.rounded-6 {
  border-radius: 3rem;
}

.rounded-top-right {
  border-top-right-radius: 30px;
}

.rounded-bottom-right {
  border-bottom-right-radius: 30px;
}

.rounded-top-left {
  border-top-left-radius: 30px;
}

.rounded-bottom-left {
  border-bottom-left-radius: 30px;
}

/* - Svg Color
------------------------------------------------------------- */
.svg-primary {
  fill: var(--bs-primary);
  color: var(--bs-primary);
}

.svg-secondary {
  fill: var(--bs-secondary);
  color: var(--bs-secondary);
}

.svg-white {
  fill: var(--bs-light);
  color: var(--bs-light);
}

/* - Bg Overlay
------------------------------------------------------------*/
.bg-overlay .overlay-item {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.7s ease-in-out;
  cursor: pointer;
}

.bg-overlay .image-holder:hover .overlay-item {
  opacity: 1;
  background-color: rgb(121 151 181 / 60%);
  border-radius: 2rem;
}

/* - Search Bar
------------------------------------------------------------- */
.search-box {
  height: 0px;
  transition: height 0.3s ease-out;
}

.search-box.active {
  height: 90px;
}

.close-button {
  top: 28px;
  right: 420px;
  cursor: pointer;
  z-index: 9;
}

.search-box input.search-input {
  width: 50%;
  height: 30px;
  min-width: 420px;
  border-radius: 80px;
}

.search-box .search-wrap svg {
  color: var(--bs-primary);
}

.search-box svg.search {
  margin-left: -50px;
}

/* - Header
------------------------------------------------------------- */
.navbar .nav-link:focus,
.navbar .nav-link:hover,
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
  color: var(--bs-primary);
}

.navbar .offcanvas.show a.nav-link {
  font-size: 2rem;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--bs-black);
  letter-spacing: 6px;

}

/* Swiper */
.swiper-pagination {
  position: unset !important;
  padding-top: 45px;
}

.swiper-pagination span.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: var(--bs-primary);
  opacity: 0.2;

}

.swiper-pagination span.swiper-pagination-bullet:hover,
.swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bs-primary);
  opacity: 1;
}

/* - Instagram
------------------------------------------------------------- */
#instagram-wrap .image-holder:hover .insta-item {
  border-radius: 0rem;
}

/* - Footer
------------------------------------------------------------- */
.social-links li a:hover {
  background-color: var(--bs-light);
}


/*--------------------------------------------------------------
Blog page style start
--------------------------------------------------------------*/

/* ------ Pagination ------*/
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-body-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: 0;
  --bs-pagination-hover-color: var(--bs-light);
  --bs-pagination-hover-bg: var(--bs-primary);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-light);
  --bs-pagination-focus-bg: var(--bs-primary);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-color: var(--bs-light);
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
  --bs-pagination-disabled-color: var(--bs-primary-color);
  --bs-pagination-disabled-bg: var(--bs-primary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.nav-tabs .nav-item {
  transition: all 0.1s ease-in;
  border-radius: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: transparent;
  border-color: transparent;
  transition: all 0.1s ease-in;
  color: var(--bs-primary);
}

.nav-tabs .nav-link.active h2 {
  color: var(--bs-primary);
  transition: .1s ease-in-out;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: transparent;
  transition: all 0.1s ease-in;
}

.nav-tabs .nav-link:hover h2 {
  color: var(--bs-primary);
  transition: .1s ease-in-out;
}

/*--------------------------------------------------------------
Form Control
--------------------------------------------------------------*/
.form-control {
  border-color: #dfdfdf;
  border-radius: 0;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: var(--bs-dark);
  outline: 0;
  box-shadow: none;
}

.form-check-input {
  border: 1px solid var(--bs-primary);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:focus {
  border-color: var(--bs-primary);
  box-shadow: none;
}


/*--------------------------------------------------------------
faqs page style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
  --bs-accordion-border-width: 0px;
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}
p {
  margin-bottom: 0.2rem;
}
.author-text {
  font-size: 18px;
}
.story-list {
  list-style: none;
  padding-left: 0;
}

.story-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.6rem;
}

.story-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8C907E; /* deine Template-Farbe */
  font-size: 14px;
}
.nav-link {
  letter-spacing: 2px;
}
.nav-link {
  font-size: 18px;        /* größer */
  letter-spacing: 3px;    /* etwas edler */
}

.navbar-nav .nav-item {
  margin-left: 30px;      /* Abstand zwischen den Reitern */
}
.nav-link.dropdown-toggle::after {
  font-size: 10px;
  margin-left: 6px;
}
#categories .banner-content {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

#categories .banner-content h4 {
  max-width: 900px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}
.quote-box {
  border: 1px solid rgba(0,0,0,0.06);
  padding: 40px 35px;
  max-width: 800px;
}
.quote-box {
  border: 1px solid rgba(0,0,0,0.12);
  padding: 50px 40px;
  max-width: 800px;
  background: rgba(255,255,255,0.4);
}

.quote-box h4 {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 35px;
}

.quote-box h4:last-child {
  margin-bottom: 0;
}
.quote-box h4 {
  font-family: 'Playfair Display', serif;
  
  font-weight: 300 !important;   /* dünner */
  font-size: 21px;
  line-height: 1.7;

  color: #555 !important;        /* NICHT schwarz → viel eleganter */
}
.quote-box h4 {
  text-transform: none !important;
}
.quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: #6f6f6f;
  margin-bottom: 25px;
  letter-spacing: 0.3px;
}

.moment {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: #6e6e6e;
  margin-top: 10px;
}
.product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4; /* Hochkant Format */
  object-fit: cover;
}
.products .container-lg {
  max-width: 900px; /* kleiner = Bilder kleiner */
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.image-item {
  text-align: center;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.subline {
  font-family: 'Satisfy', cursive;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: #a8a8a8;
  margin-top: -10px;
  letter-spacing: 6px; /* DAS ist der Schlüssel */
}
.image-grid {
  margin-bottom: 30px;
}
.chat-page {
  padding: 120px 20px 90px;
  background: #f6f1eb;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.chat-title {
  text-align: center;
  font-size: 56px;
  margin-bottom: 12px;
}

.chat-subtitle {
  text-align: center;
  color: #6e6e73;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}

.phones-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: nowrap;
}

.phone {
  width: 340px;
  height: 690px;
  background: linear-gradient(180deg, #1c1c1e 0%, #0f0f10 100%);
  border-radius: 46px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f2f2f7;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 54px 18px 14px;
  background: rgba(248, 248, 248, 0.95);
  border-bottom: 1px solid #d9d9de;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d1d1d6;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
  
  
}

.chat-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.chat-name {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.chat-status {
  font-size: 12px;
  color: #8e8e93;
  margin-top: 4px;
}

.chat-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(#f4f2ef, #efebe6);
  scrollbar-width: none;
  align-items: stretch;
}

.chat-scroll::-webkit-scrollbar {
  display: none;
}

.bubble {
  display: inline-block;
  width: fit-content;
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 17px;
  line-height: 1.35;
  word-break: break-word;
  margin: 0;
}

.bubble.left {
  align-self: flex-start;
  background: #e5e5ea;
  color: #111;
  border-bottom-left-radius: 6px;
}

.bubble.right {
  align-self: flex-end;
  background: #0a84ff;
  color: #fff;
  border-bottom-right-radius: 6px;
}

@media (max-width: 768px) {

  .journal-book {
    transform: scale(0.85);   /* 🔥 deutlich größer */
    transform-origin: top center;

    margin-top: 40px;
  }
    body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .phone {
    width: 320px;
    height: 650px;
  }

  .chat-name {
    font-size: 18px;
  }

  .bubble {
    font-size: 16px;
  }
}.time {
  text-align: center;
  font-size: 12px;
  color: #8e8e93;
  margin: 14px 0;
}
.status-bar {
  position: absolute;
  top: 8px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #000;
  z-index: 10;
}

.time-top {
  font-weight: 500;
}

.status-icons {
  display: flex;
  gap: 6px;
  font-size: 12px;
  }

.ios-read-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  max-width: 85%;
  margin-left: auto;
}

.ios-read-wrap .bubble.right {
  align-self: auto;
}

.ios-read {
  width: 100%;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  color: #8e8e93;
  text-align: right;
  padding-right: 3px;
}
.chat-photo {
  display: block;
  width: 180px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.chat-photo.right {
  align-self: flex-end;
  margin-left: auto;
}

.chat-photo.left {
  align-self: flex-start;
  margin-right: auto;
}

.chat-photo img {
  display: block;
  width: 180px;
  height: auto;
  border-radius: 18px;
}
.story-card img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.story-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.story-card {
  text-align: center;
  max-width: 260px;
}
.story-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin-top: 20px;
  color: #1D150A;
}

.story-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8e8e93;
}
.chat-title {
  text-align: center;
  font-size: 52px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
}

.chat-subtitle {
  text-align: center;
  color: #8e8e93;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 60px;
}
.site-header {
  position: relative;
  z-index: 1000;
}

.navbar,
.dropdown,
.dropdown-menu {
  position: relative;
  z-index: 9999;
}

.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  display: block;
}
.book-title {
  text-align: center;
  line-height: 1.1;
  margin-top: -10px;   /* näher ans Cover */
  max-width: 420px;   /* vorher zu schmal → wirkt klein */
  margin-left: auto;
  margin-right: auto;
}

/* WHAT HAPPENS */
.title-main {
  font-family: 'Playfair Display', serif;
  font-size: 32px;   /* ← VIEL größer */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f6f6f;
  font-size: 40px;   /* vorher viel zu klein */
}

.title-script {
  font-family: 'Satisfy', cursive;
  font-size: 38px;
  display: block;
  margin: -6px 0 -2px 0;  /* viel feiner */
  text-align: center;
  font-size: 48px;   /* muss dominant sein */
}

/* FRIENDS */
.title-bold {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #1D150A;
  font-size: 44px;
}
.book-title-image {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 18px auto 0;
}
.perspectives-page {
  padding: 120px 20px 100px;
  background: #f6f1eb;
  min-height: 100vh;
}

.perspectives-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 400;
  color: #1D150A;
  margin-bottom: 10px;
}

.perspectives-subtitle {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b847c;
  margin-bottom: 65px;
}

.perspectives-grid {
  display: flex;
  justify-content: center;
}

.perspective-card {
  max-width: 520px;
  width: 100%;
  background: #fffdf9;
  border: 1px solid rgba(29, 21, 10, 0.08);
  padding: 55px 50px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.perspective-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.perspective-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 18px;
}

.perspective-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: #1D150A;
  margin-bottom: 18px;
  text-transform: none;
}

.perspective-card p {
  font-size: 17px;
  line-height: 1.75;
  color: #5f5a55;
  margin-bottom: 28px;
}

.perspective-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1D150A;
}
.perspective-book-page {
  padding: 120px 20px 100px;
  background: #f6f1eb;
  min-height: 100vh;
}

.book-intro {
  text-align: center;
  margin-bottom: 55px;
}

.book-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 14px;
}

.book-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: #1D150A;
  text-transform: none !important;
  line-height: 1.1;
  margin-bottom: 12px;
}

.book-page-subtitle {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b847c;
}

.book-page-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: #fffdf9;
  border: 1px solid rgba(29, 21, 10, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  padding: 70px 75px;
}

.chapter-meta {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0978d;
  margin-bottom: 42px;
}

.chapter-content {
  max-width: 640px;
  margin: 0 auto;
}

.chapter-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  line-height: 1.9;
  color: #4f4944;
  margin-bottom: 26px;
}

.opening-line {
  font-size: 27px;
  line-height: 1.7 !important;
  color: #1D150A !important;
}

.chapter-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .book-page-title {
    font-size: 42px;
  }

  .book-page-sheet {
    padding: 42px 28px;
  }

  .chapter-content p {
    font-size: 24px;
  }

  .opening-line {
    font-size: 27px !important;
  }
}
.chapter-divider {
  width: 60px;
  height: 1px;
  background: rgba(29, 21, 10, 0.15);
  margin: 0 auto 36px;
}
.perspective-book-page {
  padding: 120px 20px 100px;
  background: #f6f1eb;
  min-height: 100vh;
}

.book-intro {
  text-align: center;
  margin-bottom: 45px;
}

.book-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9288;
  margin-bottom: 14px;
}

.book-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: #1D150A;
  text-transform: none !important;
  line-height: 1.1;
  margin-bottom: 12px;
}

.book-page-subtitle {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b847c;
}

.scene-selector {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.scene-tab {
  border: 1px solid rgba(29, 21, 10, 0.12);
  background: transparent;
  color: #1D150A;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.scene-tab.active,
.scene-tab:hover {
  background: #1D150A;
  color: #fff;
}

.book-page-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: #fffdf9;
  border: 1px solid rgba(29, 21, 10, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  padding: 70px 75px;
}

.chapter-meta {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0978d;
  margin-bottom: 42px;
}

.chapter-content {
  max-width: 580px;
  margin: 0 auto;
}

.chapter-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  line-height: 1.9;
  color: #5a544f;
  margin-bottom: 26px;
  letter-spacing: 0.2px;
}

.opening-line {
  font-size: 27px !important;
  line-height: 1.7 !important;
  color: #1D150A !important;
}

.scene-content {
  display: none;
}

.scene-content.active {
  display: block;
}

@media (max-width: 768px) {
  .book-page-title {
    font-size: 42px;
  }

  .book-page-sheet {
    padding: 42px 28px;
  }

  .chapter-content p {
    font-size: 21px;
  }

  .opening-line {
    font-size: 24px !important;
  }

  .scene-selector {
    gap: 8px;
  }

  .scene-tab {
    padding: 10px 14px;
    font-size: 11px;
  }
}
.chapter-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.68;
  color: #4f4944;
  margin-bottom: 10px;
  text-indent: 1.4em;
}

.opening-line {
  text-indent: 0;
  margin-bottom: 12px;
}
.chapter-content {
  max-width: 700px;
  margin: 0 auto;
}
body {
  background-color: #f6f1eb;
  color: #1D150A;
}

.section-white {
  background-color: #ffffff;
  padding: 80px 0;
}
.site-header {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.journal-page {
  padding: 100px 20px;
  background: #f6f1eb;
  min-height: 100vh;
}

/* =========================================
   JOURNAL FINAL LOOK
   ========================================= */

/* äußerer Bereich */
.journal-section {
  padding: 90px 20px 100px;
  background: #f6f1eb;
  min-height: 100vh;
}

.journal-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: #1D150A;
  margin-bottom: 10px;
}

.journal-subtitle {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #8a837d;
  margin-bottom: 50px;
  text-transform: lowercase;
}

.journal-book-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* DAS eigentliche grüne Buch */
.journal-book {
  position: relative;
  width: 1220px;
  max-width: calc(100vw - 140px);
  height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, #2f4a3f 0%, #22352c 100%) !important;
  border-radius: 18px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: visible;
}

/* Mittelsteg */
.journal-spine {
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  transform: translateX(-50%);
  width: 34px;
  border-radius: 20px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.22),
    rgba(255,255,255,0.07),
    rgba(0,0,0,0.16)
  );
  z-index: 4;
  pointer-events: none;
}

/* echte Seiten */
.journal-book .journal-page {
  position: relative;
  background: linear-gradient(180deg, #fffdf8 0%, #f8f1e7 100%) !important;
  border-radius: 8px;
  overflow: visible;
  min-height: 100%;
  box-shadow:
    0 8px 22px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(90,70,45,0.05);
}

/* linke und rechte Seite leicht unterschiedlich */
.journal-book .journal-page.left {
  transform: rotate(-0.4deg);
}

.journal-book .journal-page.right {
  transform: rotate(0.4deg);
}

/* innerer Papierrand */
.journal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 48px 42px;
  box-sizing: border-box;
}

/* feine Papierstruktur */
.journal-book .journal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(0,0,0,0.015)),
    repeating-linear-gradient(
      to bottom,
      rgba(120, 98, 72, 0.015) 0px,
      rgba(120, 98, 72, 0.015) 1px,
      transparent 1px,
      transparent 6px
    );
  pointer-events: none;
  z-index: 1;
}

/* kleiner Knick unten */
.journal-book .journal-page::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, transparent 0 49%, rgba(0,0,0,0.04) 50%, rgba(255,255,255,0.55) 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.55;
  pointer-events: none;
}

/* Navigation dezenter */
.journal-nav {
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: #274036;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.journal-nav:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.journal-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

/* Post-its nicht frei oben rechts, sondern am Buchrand */
.book-postit {
  position: absolute;
  right: 8px;
  width: 16px;
  height: 72px;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
  z-index: 6;
}

.book-postit:nth-of-type(1) {
  top: 120px;
  background: #d8c98d;
}

.book-postit.postit-2 {
  top: 205px;
  background: #e8dca3;
}

.book-postit.postit-3 {
  top: 290px;
  background: #cbbd84;
}

/* Inhalte */
.journal-date {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: #7d746b;
  margin-bottom: 16px;
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 50px;
  z-index: 5;
}

.journal-photo {
  position: absolute;
  background: #fffefb;
  padding: 12px 12px 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.09);
  z-index: 2;
}

.journal-photo::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 90px;
  height: 24px;
  background: rgba(244, 236, 223, 0.75);
  border: 1px solid rgba(0,0,0,0.04);
}

.journal-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.rotate-left {
  transform: rotate(-4deg);
}

.rotate-right {
  transform: rotate(3deg);
}

.journal-note {
  position: absolute;
  padding: 18px 18px 16px;
  font-family: 'Caveat', cursive;
  font-size: 30px;
  line-height: 1.2;
  color: #5a544f;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  max-width: 220px;
  z-index: 2;
  background: #f2df8f;
}

.handwriting {
  font-family: 'Caveat', cursive;
  font-size: 42px;
  line-height: 1.45;
  color: #4f4944;
  max-width: 440px;
  position: relative;
  z-index: 2;
}

.handwriting.heart {
  font-size: 52px;
  color: #7d5a66;
  margin-top: 18px;
  transform: rotate(-8deg);
  display: inline-block;
}

.page-fade {
  animation: pageFade 0.28s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .journal-book-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .journal-book {
    width: 1220px;
    transform: scale(0.6);
    transform-origin: top left;
    margin-left: 10px;
  }

  .journal-nav {
    position: fixed;
    bottom: 20px;
    width: 56px;
    height: 56px;
    z-index: 999;
  }

  .journal-nav.prev {
    left: 16px;
  }

  .journal-nav.next {
    right: 16px;
  }
}

/* ganz leichte unregelmäßige Papierkante oben */
.journal-book .journal-page .paper-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0)
  );
  z-index: 2;
  pointer-events: none;
}

/* mini Knick unten rechts */
.page-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, transparent 0 49%, rgba(0,0,0,0.05) 50%, rgba(255,255,255,0.7) 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
}
/* =========================================
   LINIERTE NOTIZSEITE
   ========================================= */

/* =========================
   VOLLE LINIERTE SEITE
   ========================= */

.journal-page.is-lined {
  position: relative;
}

.journal-page.is-lined::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 38px,
      rgba(120, 150, 182, 0.30) 38px,
      rgba(120, 150, 182, 0.30) 39px
    );
}

.journal-page.is-lined::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58px;
  width: 1px;
  background: rgba(194, 104, 104, 0.30);
  z-index: 1;
  pointer-events: none;
}

/* Inhalt auf die Linien legen */
.journal-page.is-lined .journal-inner {
  position: relative;
  z-index: 2;
}
/* =========================
   BENUTZTE PAPIEROPTIK
   ========================= */

.journal-book .journal-page {
  position: relative;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f5ecdf 100%) !important;
  border-radius: 8px;
  overflow: hidden;
  min-height: 100%;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.09),
    inset 0 0 0 1px rgba(110, 88, 60, 0.06),
    inset 0 18px 28px rgba(255,255,255,0.30),
    inset 0 -18px 24px rgba(124, 102, 74, 0.04);
}

/* feine Papierstruktur */
.journal-book .journal-page .paper-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.18), rgba(0,0,0,0.015)),
    repeating-linear-gradient(
      to bottom,
      rgba(130, 106, 78, 0.018) 0px,
      rgba(130, 106, 78, 0.018) 1px,
      transparent 1px,
      transparent 6px
    ),
    repeating-linear-gradient(
      to right,
      rgba(130, 106, 78, 0.012) 0px,
      rgba(130, 106, 78, 0.012) 1px,
      transparent 1px,
      transparent 9px
    );
}

/* dunklere Kante Richtung Buchmitte */
.journal-book .journal-page.left .center-shadow,
.journal-book .journal-page.right .center-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 2;
  pointer-events: none;
}

.journal-book .journal-page.left .center-shadow {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.06), transparent);
}

.journal-book .journal-page.right .center-shadow {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.06), transparent);
}

/* obere leicht unruhige Papierkante */
.paper-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0)),
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.18) 0px,
      rgba(255,255,255,0.18) 18px,
      rgba(230,220,205,0.10) 18px,
      rgba(230,220,205,0.10) 36px
    );
}

/* umgeknickte Ecke */
.page-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  z-index: 4;
  pointer-events: none;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  background: linear-gradient(
    135deg,
    transparent 0 47%,
    rgba(0,0,0,0.05) 52%,
    rgba(255,255,255,0.76) 100%
  );
  opacity: 0.8;
}
/* =========================
   BENUTZTE BUCHSEITEN
   ========================= */

.journal-book .journal-page {
  position: relative;
  background: linear-gradient(180deg, #fffdf8 0%, #f5ecdf 100%) !important;
  border-radius: 8px;
  overflow: hidden;
  min-height: 100%;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.09),
    inset 0 0 0 1px rgba(110, 88, 60, 0.06),
    inset 0 18px 28px rgba(255,255,255,0.30),
    inset 0 -18px 24px rgba(124, 102, 74, 0.04);
}

.paper-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(0,0,0,0.01)),
    repeating-linear-gradient(
      to bottom,
      rgba(130, 106, 78, 0.012) 0px,
      rgba(130, 106, 78, 0.012) 1px,
      transparent 1px,
      transparent 6px
    ),
    repeating-linear-gradient(
      to right,
      rgba(130, 106, 78, 0.008) 0px,
      rgba(130, 106, 78, 0.008) 1px,
      transparent 1px,
      transparent 9px
    );
}

.center-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 2;
  pointer-events: none;
}

.journal-page.left .center-shadow {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.06), transparent);
}

.journal-page.right .center-shadow {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.06), transparent);
}

.paper-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0)),
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.18) 0px,
      rgba(255,255,255,0.18) 18px,
      rgba(230,220,205,0.10) 18px,
      rgba(230,220,205,0.10) 36px
    );
}

.page-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  z-index: 4;
  pointer-events: none;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  background: linear-gradient(
    135deg,
    transparent 0 47%,
    rgba(0,0,0,0.05) 52%,
    rgba(255,255,255,0.76) 100%
  );
  opacity: 0.8;
}

.journal-inner {
  position: absolute;
  inset: 0;               /* GANZE Seite */
  padding: 60px 50px;    /* Abstand wie echtes Buch */
  box-sizing: border-box;

  outline: none;
  cursor: text;

  overflow-y: auto;      /* Scrollen wenn viel Text */
    font-family: 'Caveat', cursive;
  font-size: 32px;
  line-height: 39px;   /* MUSS zu deinen Linien passen */
  color: #4f4944;
}

.journal-page.is-lined .page-lines {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 38px,
    rgba(120, 150, 182, 0.38) 38px,
    rgba(120, 150, 182, 0.38) 39px
  );
}

.journal-page.is-lined .page-margin-line {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58px;
  width: 1px;
  background: rgba(194, 104, 104, 0.45);
  z-index: 3;
  pointer-events: none;
}

.journal-page.is-lined .journal-inner {
  position: relative;
  z-index: 5;
}
.boarding-pass {
  position: absolute;
  width: 500px;
  height: 250px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
  overflow: hidden;
  z-index: 4;
  border: 1px solid rgba(71, 89, 140, 0.12);
}

.boarding-pass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: linear-gradient(90deg, #4d6df5 0%, #4f69e8 100%);
}

.boarding-pass::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 175px;
  width: 1px;
  border-right: 2px dashed rgba(120, 138, 196, 0.35);
}

.boarding-pass.rotate-soft-left {
  transform: rotate(-7deg);
}

.boarding-pass.rotate-soft-right {
  transform: rotate(6deg);
}

.boarding-header-title {
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 2;
}

.boarding-header-airline {
  position: absolute;
  top: 19px;
  right: 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #ffffff;
  z-index: 2;
}

.boarding-main {
  position: absolute;
  top: 78px;
  left: 24px;
  right: 200px;
  bottom: 22px;
}

.boarding-side {
  position: absolute;
  top: 78px;
  right: 22px;
  width: 135px;
  bottom: 22px;
}

.boarding-top-row {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
  margin-bottom: 18px;
}

.boarding-col-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.boarding-airplane {
  text-align: center;
  font-size: 54px;
  line-height: 1;
  color: rgba(92, 116, 232, 0.28);
  margin-top: 12px;
}

.boarding-code {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #4d6df5;
  letter-spacing: 0.02em;
}

.boarding-city {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #4d6df5;
  margin-top: 6px;
}

.boarding-datetime {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  line-height: 1.25;
  color: #202020;
  margin-top: 16px;
}

.boarding-divider {
  height: 1px;
  background: rgba(107, 128, 214, 0.28);
  margin: 18px 0 16px;
}

.boarding-bottom-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.boarding-mini-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #2a2a2a;
  margin-bottom: 6px;
}

.boarding-mini-value {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4d6df5;
  line-height: 1.15;
}

.boarding-side-top {
  margin-bottom: 18px;
}

.boarding-side-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.boarding-side .boarding-mini-value {
  font-size: 15px;
}

.boarding-barcode {
  width: 100%;
  height: 90px;
  margin-top: 10px;
  background: repeating-linear-gradient(
    to right,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 5px,

    #111 5px,
    #111 7px,
    transparent 7px,
    transparent 11px,

    #111 11px,
    #111 12px,
    transparent 12px,
    transparent 15px,

    #111 15px,
    #111 18px,
    transparent 18px,
    transparent 22px,

    #111 22px,
    #111 24px,
    transparent 24px,
    transparent 28px
  );
  opacity: 0.9;
}

.boarding-mrs {
  text-transform: uppercase;
}
.boarding-pass {
  filter: contrast(1.02) brightness(0.98);
}

/* leichte Knicklinien */
.boarding-pass::knick1 {
  content: "";
  position: absolute;
  top: 40%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: rgba(0,0,0,0.06);
  transform: rotate(2deg);
}

.boarding-pass::knick2 {
  content: "";
  position: absolute;
  top: 70%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: rgba(0,0,0,0.04);
  transform: rotate(-3deg);
}
.tape {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 6;
}

/* oben */
.tape-top {
  top: -14px;
  left: 140px;
  width: 120px;
  height: 26px;
  transform: rotate(-6deg);
  opacity: 0.75;
}

/* seitlich */
.tape-side {
  bottom: 40px;
  right: -20px;
  width: 90px;
  height: 22px;
  transform: rotate(90deg);
  opacity: 0.6;
}
.polaroid {
  position: absolute;
  width: 240px;
  background: #ffffff;
  padding: 14px 14px 62px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
  transform: rotate(-3deg);
  z-index: 20;
  isolation: isolate;
}

.polaroid img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 21;
  opacity: 1 !important;
  filter: contrast(1.05) brightness(1.02) saturate(1.05) !important;
  mix-blend-mode: normal !important;
  border-radius: 2px;
}

.polaroid-caption {
  position: absolute;
  bottom: 22px;
  left: 14px;
  right: 14px;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: #4f4944;
  line-height: 1.1;
}

.handwritten-smiley {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  transform: rotate(-8deg);
  margin-left: 6px;
  opacity: 0.9;
}
.bucket-page {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 5;
}

.bucket-title {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 40px;
  color: #8a847e;
  margin-bottom: 22px;
}

.bucket-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 0 18px;
}

.bucket-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bucket-item {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  line-height: 1.02;
  color: #8a847e;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.bucket-box {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border: 2px solid #8a847e;
  border-radius: 3px;
}

.bucket-tick {
  position: absolute;
  top: -6px;
  left: 2px;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: #c64545;
  transform: rotate(-18deg) scale(1.1);
}
/* GEKRITZELTER HAKEN */
.bucket-box.checked::before,
.bucket-box.checked::after {
  content: "";
  position: absolute;
  background: #c64545;
  border-radius: 2px;
}

/* kurzer Strich */
.bucket-box.checked::before {
  width: 10px;
  height: 3px;
  top: 11px;
  left: 3px;
  transform: rotate(45deg);
}

/* langer Strich */
.bucket-box.checked::after {
  width: 18px;
  height: 4px;
  top: 6px;
  left: 6px;
  transform: rotate(-45deg);
  box-shadow: 1px 1px 0 rgba(198,69,69,0.3);
}
/* =========================
   KASSENBON
   ========================= */

.receipt {
  position: absolute;
  width: 145px;
  padding: 14px 12px;
  background: #fffef9;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #5f564c;
  line-height: 1.4;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  border-radius: 4px;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.02), transparent),
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0.015) 0px,
      rgba(0,0,0,0.015) 1px,
      transparent 1px,
      transparent 6px
    );
  z-index: 7;

  /* zerknitterter Look */
  background-image: 
    linear-gradient(to bottom, rgba(0,0,0,0.03), transparent),
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0.02) 0px,
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 6px
    );
}

/* gezackter Bon-Rand */
.receipt {
  position: absolute;

  top: 30px;
  right: 20px; /* 🔥 jetzt wirklich rechts */

  width: 170px;
  padding: 14px 12px;

  background: #fffef9;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #5f564c;

  border-radius: 4px;

  transform: rotate(6deg);

  z-index: 5;
}

.paperclip {
  position: absolute;
  top: -26px;
  left: 10px;
  width: 34px;
  height: 60px;
  transform: rotate(-10deg);
  z-index: 20;
  pointer-events: none;
}

.paperclip::before,
.paperclip::after {
  content: "";
  position: absolute;
  border-radius: 20px;
  box-sizing: border-box;
}

/* äußere silberne Klammer */
.paperclip::before {
  width: 34px;
  height: 60px;
  border: 3px solid #bfc3c8;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.8),
    inset -1px -1px 2px rgba(130,130,130,0.35),
    0 2px 4px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(190,190,190,0.08));
}

/* innere silberne Klammer */
.paperclip::after {
  width: 18px;
  height: 38px;
  top: 10px;
  left: 8px;
  border: 3px solid #c9cdd2;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.75),
    inset -1px -1px 2px rgba(120,120,120,0.28);
  background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(200,200,200,0.05));
}

/* Inhalte */
.receipt-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.receipt-body div {
  display: flex;
  justify-content: space-between;
}

.receipt-divider {
  margin: 10px 0;
  border-top: 1px dashed #bfb6a8;
}

.receipt-total {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.receipt-footer {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  opacity: 0.7;
}
.receipt {
  top: 30px !important;     /* 🔥 nach oben */
  right: -60px !important;  /* 🔥 weiter an den Rand */
}
.journal-page {
  position: relative; /* 🔥 EXTREM wichtig */
}
/* RECEIPT FINAL POSITION FIX */
.receipt {
  position: absolute !important;
  top: 38px !important;
  right: 22px !important;
  left: auto !important;
  bottom: auto !important;
  width: 180px !important;
  z-index: 50 !important;
}
/* =========================
   KLAMMER AM BUCHRAND
   ========================= */

.paperclip-edge {
  position: absolute;

  top: -28px;     /* 🔥 sitzt auf dem Rand */
  right: 70px;    /* 🔥 leicht nach innen */

  width: 32px;
  height: 60px;

  border: 2px solid #cfcfcf;
  border-radius: 14px;

  transform: rotate(-8deg);

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(190,190,190,0.2)
  );

  box-shadow:
    0 3px 6px rgba(0,0,0,0.2),
    inset 1px 1px 2px rgba(255,255,255,0.8);

    z-index: 50;
}

/* innerer Draht */
.paperclip-edge::after {
  content: "";
  position: absolute;

  top: 8px;
  left: 6px;

  width: 16px;
  height: 36px;

  border: 2px solid #d9d9d9;
  border-radius: 10px;
  transform: rotate(-10deg) translateY(2px);
}
.receipt-slot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 150px;
  z-index: 40;
  pointer-events: none;
}

.receipt {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 130px;
  padding: 10px 10px;
  background: #fffef9;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.3;
  color: #5f564c;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transform: rotate(5deg);
  z-index: 10;
}


.journal-scribble-small {
  position: absolute;

  top: 210px;   /* 🔥 unter das Bild */
  left: 260px;  /* 🔥 etwas weiter rechts */

  font-family: 'Caveat', cursive;
  font-size: 26px;   /* 🔥 deutlich größer */

  color: #6f6458;

  letter-spacing: 0.5px;

 transform: rotate(-6deg) skewX(-3deg) translateY(2px);

  z-index: 8;
}

.journal-heart {
  position: absolute;
  top: 120px;
  left: 270px;

  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: #b48a8a;

  transform: rotate(8deg);
}
.mini-tape {
  position: absolute;

  top: 120px;
  left: 210px;

  width: 70px;   /* 🔥 deutlich größer */
  height: 18px;

  background: rgba(230,220,200,0.6);

  transform: rotate(-14deg);

  border-radius: 2px;

  box-shadow:
    0 3px 6px rgba(0,0,0,0.12);

  z-index: 7;
}

.hand-heart {
  position: absolute;

  top: 255px;
  left: 290px;

  width: 60px;   /* 🔥 deutlich größer */
  height: 50px;

  transform: rotate(-15deg);

  z-index: 8;
}

.hand-heart svg {
  width: 100%;
  height: 100%;
}

/* ✏️ KRITZEL LOOK */
.hand-heart path {
  fill: none;

  stroke: #8e5f5f;
  stroke-width: 3.5;

  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 0.95;
  filter: blur(0.2px);


  /* 🔥 DAS macht es „gekritzelt“ */
  stroke-dasharray: 2.5 2.2;
}
.note-title {
  font-size: 20px;  /* bleibt groß */
}

.note-list {
  font-size: 18px;  /* 🔥 kleiner */
  margin-top: 4px;
}
.note-title {
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
}

.note-title,
.note-list {
  font-family: 'Shadows Into Light', cursive;
}

.journal-scribble-small {
  font-family: 'Caveat', cursive;
}
.note-title {
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
  transform: translateY(-6px);  /* 🔥 nach oben */

  position: relative;
  display: inline-block;
}

/* ✏️ handgemachte Linie */
.note-title::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -4px;

  width: 70%;
  height: 3px;

  background: #a87d7d;

  transform: rotate(-2deg);   /* 🔥 leicht schief */
  opacity: 0.8;
}
.note-title::before {
  content: "";
  position: absolute;

  left: 2px;
  bottom: -6px;

  width: 95%;
  height: 2px;

  background: #a87d7d;

  transform: rotate(1deg);
  opacity: 0.6;
}

.bagel-sticker {
  position: absolute;

  bottom: 20px;   /* leicht höher vom Rand */
  right: -120px;    /* 🔥 weiter nach rechts */

  width: 110px;   /* 🔥 deutlich größer */
  height: 110px;

  transform: rotate(10deg);

  z-index: 6;

  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.25));
}

/* ✨ Sticker-Effekt */
.bagel-sticker {
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.2));
}

/* weißer Rand wie Sticker */
.bagel-sticker::after {
  content: "";
  position: absolute;
  inset: -6px;

  border-radius: 50%;
  background: white;

  z-index: -1;
    transform: rotate(12deg) scale(1.05);
}
/* =========================
   BABA BAGELS STICKER
   ========================= */

.bagel-sticker {
  position: absolute;
  bottom: 18px;
  right: -6px;
  width: 135px;
  height: 135px;
  transform: rotate(8deg);
  z-index: 8;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.18));
}

.bagel-sticker-circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

.bagel-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #2f7b4d;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 3;
}

.bagel-top-illustration {
  position: absolute;
  top: 2px;
  right: 6px;
  width: 58px;
  height: 46px;
  transform: rotate(10deg);
  z-index: 3;
}

.bagel-top-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bagel-sticker-text {
  position: absolute;
  top: 48px;
  left: 22px;
  font-family: 'Patrick Hand', cursive;
  font-size: 34px;
  line-height: 0.9;
  color: #111;
  transform: rotate(-4deg);
  z-index: 2;
}

.bagel-sticker-text::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -6px;
  width: 72px;
  height: 3px;
  background: #111;
  border-radius: 999px;
  transform: rotate(-2deg);
}

.bagel-star {
  position: absolute;
  right: 20px;
  top: 68px;
  font-size: 22px;
  color: #78a8ff;
  transform: rotate(10deg);
  opacity: 0.9;
  z-index: 3;
}
.bagel-sticker {
  position: absolute;
  bottom: 68px;
  right: -210px;

  width: 140px;
  height: 140px;

  transform: rotate(6deg);

  z-index: 8;

  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.18));
}

.bagel-sticker-circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

/* 🥯 echtes Bild */
.bagel-img {
  position: absolute;
  top: 4px;
  right: 6px;

  width: 70px;
  height: auto;

  transform: rotate(8deg);
}

/* ✍️ Schrift */
.bagel-sticker-text {
  position: absolute;
  top: 50px;
  left: 22px;

  font-family: 'Patrick Hand', cursive;
  font-size: 32px;
  line-height: 0.9;

  color: #111;

  transform: rotate(-4deg);
}

/* ✨ Unterstrich */
.bagel-sticker-text::after {
  content: "";
  position: absolute;

  left: 6px;
  bottom: -6px;

  width: 70px;
  height: 3px;

  background: #111;
  border-radius: 999px;

  transform: rotate(-2deg);
}

/* 🟡 gelber Punkt */
.bagel-dot {
  position: absolute;

  right: 22px;
  top: 72px;

  width: 10px;
  height: 10px;

  background: #f2d35e;
  border-radius: 50%;

  opacity: 0.9;
}

.about-hero {
  background: #f5f1eb;
  padding: 100px 20px;
}

.about-layout {
  max-width: 1000px;
  margin: 0 auto 0 120px;
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.about-left {
  width: 420px;
  flex-shrink: 0;
}

.hello-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 64px;
  margin: 0 0 30px;
  color: #241a14;
  letter-spacing: 12px;   /* steuert den Abstand sauber */
  line-height: 1;
  text-transform: lowercase;
  margin-bottom: 20px;
}

.hero-image img {
  width: 340px;
  display: block;
  margin-bottom: 28px;
}

.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin: 0 0 10px;
  color: #241a14;
  font-weight: 400;
}

.subtitle {
  max-width: 320px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #6d645c;
  margin: 0;
  line-height: 1.7;
}

.about-right {
  width: 340px;
  flex-shrink: 0;
  padding-top: 120px;
}

.about-block {
  margin-bottom: 42px;
  border-top: 1px solid rgba(44, 32, 24, 0.12);
  padding-top: 18px;
}

.about-block span {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2c2018;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-block p {
  margin: 0;
  font-size: 17px;     /* vorher ~15 */
  line-height: 1.9;
  color: #6d645c;
}

.about-right-only {
  position: absolute;
  right: 340px;
  top: 220px;   /* statt 340px */
  width: 260px;
  text-align: left;
}

.about-right-only .about-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2c2018;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-right-only p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #6d645c;
}
.about-block strong {
  font-weight: 500;
  letter-spacing: 0.3px;
}
.books-overview {
  text-align: center;
  padding: 60px 20px;   /* weniger oben */
  background: #f5f1eb;
}

/* Titel oben */
.books-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #2c2018;
}

/* Subtitle */
.books-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #8a8178;
  margin-bottom: 80px;
}

/* CARD */
.book-card img {
  width: 280px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 20px;
  transition: 0.3s;
  margin-bottom: 40px;
}

/* Hover Effekt */
.book-card img:hover {
  transform: scale(1.03);
}

/* Titel unter Bild */
.book-card h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 28px;
  font-weight: 350;
  line-height: 1.3;
  color: #2c2018;
  letter-spacing: 0.5px;
}
.buy-buttons {
  flex-wrap: wrap;        /* bricht um, falls zu eng */
  display: grid;
  grid-template-columns: repeat(2, auto); /* 2 pro Reihe */
  gap: 14px 20px; /* Abstand: oben/unten + seitlich */
  margin-top: 25px;
  margin-left: 220px;
}

.buy-buttons a {
  display: inline-block;
  font-size: 14px;          /* größer */
  letter-spacing: 1.5px;
  color: #6d645c;
  text-decoration: none;
  margin: 0 14px;
  padding: 16px 30px;        /* mehr Fläche */
  border-bottom: 1px solid transparent;
  background: #f5f1eb;              /* ← dein Beige */
  border: 1px solid rgba(44,32,24,0.15);

  transition: 0.3s;
}

.buy-buttons a:hover {
  border-bottom: 1px solid #2c2018;
  background: #2c2018;
  color: #ffffff;
}
.book-heading {
  font-size: 32px;
  font-weight: 300;
  margin: 10px 0 15px;
  color: #2c2018;
}

.book-text {
  font-size: 14px;
  color: #6d645c;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUY BUTTONS */
.buy-buttons a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #2c2018;
  text-decoration: none;
  margin-right: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(44,32,24,0.2);
  transition: 0.3s;
}

.buy-buttons a:hover {
  background: #2c2018;
  color: #fff;
}
.image-holder img {
  max-width: 420px;   /* vorher ~320 → jetzt größer */
  width: 100%;
  display: block;
  margin-left: 140px;   /* schiebt nach rechts */
}
.book-highlight {
  border: 1px solid rgba(44, 32, 24, 0.1);
  padding: 50px 60px;
  border-radius: 25px;
  background: #faf7f2;
}
.chat-subtitle {
  font-size: 28px;
  color: #2c2018;
  letter-spacing: 1px;

  display: block;
  width: fit-content;
  margin: 20px auto;

  padding: 10px 18px;

  background: #f6e9ec;                         /* ← zartes Rosa */
  border: 1px solid rgba(200, 120, 140, 0.25); /* ← rosa Rahmen */
  border-radius: 20px;
}
.spoiler-badge {
  display: inline-block;
  margin: 12px 0 18px;

  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #b06a7a; /* ← leicht rosa Text */
  border: 1px solid rgba(200,120,140,0.4);
  border-radius: 20px;

  background: rgba(200,120,140,0.08); /* ganz zart rosa */
}
.characters-section {
  background: #f5f1eb;
  padding: 110px 20px;
}



.characters-container {
  max-width: 1000px;
  margin: 0 auto;
}

.characters-title {
  text-align: center;
  font-size: 56px;
  color: #2c2018;
  margin-bottom: 10px;
}

.characters-subtitle {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  color: #8b8178;
  margin-bottom: 70px;
}

/* GRID → 2 oben, 2 unten */

.characters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* KARTEN */

.character-card {
  border: 1px solid rgba(44, 32, 24, 0.12);
  border-radius: 20px;
  padding: 30px 28px;
  background: rgba(255,255,255,0.4);
}

/* NAME */

.character-card h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c2018;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* TEXT */

.character-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #6d645c;
}

/* MOBILE */

@media (max-width: 800px) {
  .characters-grid {
    grid-template-columns: 1fr;
  }
}
.space-top {
  margin-top: 20px;
}
.character-meta span {
  font-weight: 600;   /* ← macht es fett */
}
.character-section + .character-section {
  margin-top: 35px;
}

.character-divider {
  height: 1px;
  background: rgba(80, 68, 60, 0.12);
  margin: 30px 0;

  
}
.home-buttons {
  flex-wrap: wrap;        /* bricht um, falls zu eng */
  display: grid;
  grid-template-columns: repeat(2, auto); /* 2 pro Reihe */
  gap: 14px 20px; /* Abstand: oben/unten + seitlich */
  margin-top: 25px;
  margin-left: -20px;
}
.playlist-section {
  background: #f7f3ee;
  padding: 110px 20px 80px;
}

.playlist-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.playlist-overline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b8f84;
  margin-bottom: 14px;
}

.playlist-section h1 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #2f2a26;
}

.playlist-intro {
  font-size: 16px;
  color: #7d736b;
  max-width: 500px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.playlist-group {
  margin-bottom: 60px;
}

.playlist-title {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9b8f84;
  margin-bottom: 22px;
}

.playlist-img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto 22px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .playlist-section {
    padding: 90px 16px 60px;
  }

  .playlist-section h1 {
    font-size: 34px;
  }

  .playlist-intro {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .playlist-group {
    margin-bottom: 48px;
  }

  .playlist-img {
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 18px;
  }
}
.character-overview-section {
  padding: 120px 20px 90px;
  background: #f7f3ee;
  min-height: 100vh;
}

.character-overline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b8f84;
  margin-bottom: 14px;
}

.character-heading {
  text-align: center;
  font-size: 52px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.character-subline {
  text-align: center;
  color: #8e8e93;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 60px;
}

.character-book-grid {
  display: flex;
  justify-content: center;
}

.character-book-card {
  text-decoration: none;
  color: inherit;
  display: block;
  max-width: 230px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.character-book-card:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

.character-book-cover {
  width: 100%;
  border-radius: 18px;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.character-book-card h2 {
  font-size: 34px;
  margin-bottom: 8px;
  color: #2f2a26;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  text-align: center;
  line-height: 1.3;
  margin-top: 16px;
  letter-spacing: 0.1px; /* macht es optisch dünner */
}

.character-book-card span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8c8177;
}

@media (max-width: 600px) {
  .character-overview-section {
    padding: 95px 16px 60px;
  }

  .character-heading {
    font-size: 34px;
  }

  .character-subline {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .character-book-card {
    max-width: 220px;
  }

@media (max-width: 600px) {
  .character-book-card h2 {
    font-size: 34px;
  }
}
}
.chat-overline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b8f84;
  margin-bottom: 14px;
  font-family: 'Josefin Sans', sans-serif;
  text-align: center; /* DAS ist wichtig */
}
.site-footer {
  padding: 80px 20px 50px;
  background: #f3eee8;
  border-top: 1px solid #e5dfd8;
}

.footer-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #9b928a;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-link:hover {
  opacity: 0.7;
}
.footer-note {
  font-size: 11px;
  color: #b5aca4;
  margin-bottom: 15px;
}
.impressum-section {
  padding: 120px 20px 80px;
  background: #f7f3ee;
  min-height: 100vh;
}

/* =====================================================
   MOBILE & RESPONSIVE OPTIMIERUNGEN
   Emilia Faye - What Happens When Friends
   ===================================================== */

/* --- Basis: Fluid Bilder überall --- */
img {
  max-width: 100%;
  height: auto;
}

/* --- Hero Section (Startseite) --- */
@media (max-width: 991px) {
  #intro .image-holder img {
    width: 90% !important;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }

  #intro .banner-content {
    text-align: center;
    padding: 0 1rem;
  }

  #intro h2.display-5 {
    font-size: 1.8rem;
  }

  .story-list {
    text-align: left;
  }
}

@media (max-width: 576px) {
  #intro h2.display-5 {
    font-size: 1.5rem;
  }
}

/* --- Zitate-Bild fix (war 450px fest) --- */
.tab-pane img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* --- Image Grid (Visual Archive) --- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .image-item .moment {
    font-size: 0.75rem;
  }
}

/* --- Book Highlight Section --- */
.book-highlight .col-lg-8,
.book-highlight .col-lg-4 {
  padding: 1rem;
}

@media (max-width: 991px) {
  .book-highlight {
    padding: 1rem;
  }

  .book-highlight .col-lg-4 {
    text-align: center;
    margin-top: 2rem;
  }

  .buy-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .buy-buttons a {
    width: auto;
    min-width: 120px;
    text-align: center;
  }

  h2.book-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  h2.book-heading {
    font-size: 1.4rem;
  }

  .buy-buttons a {
    width: 100%;
    display: block;
  }
}

/* --- Navigation Mobile --- */
@media (max-width: 991px) {
  .site-header {
    padding: 0.75rem 1rem !important;
  }

  #bdNavbar .offcanvas-body {
    padding: 1rem;
  }

  .navbar-brand {
    font-size: 22px !important;
  }

  .dropdown-menu {
    border: none;
    padding-left: 1rem;
    box-shadow: none;
  }
}

/* --- Quotes Section --- */
@media (max-width: 991px) {
  .quote-box {
    text-align: center;
    padding: 0 1rem;
  }

  p.quote {
    font-size: 17px;
  }

  #categories .col-lg-6 {
    text-align: center;
  }

  #categories img {
    width: 100% !important;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 576px) {
  p.quote {
    font-size: 15px;
  }
}

/* --- Display Headings skalieren --- */
@media (max-width: 768px) {
  h2.display-3 {
    font-size: 2.2rem;
  }

  h2.display-5 {
    font-size: 1.6rem;
  }

  .sub-heading {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  h2.display-3 {
    font-size: 1.8rem;
  }
}

/* --- Footer --- */
@media (max-width: 576px) {
  .site-footer {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* --- Character / Buchseiten --- */
@media (max-width: 768px) {
  .character-heading,
  .book-page-title,
  .characters-title,
  .chat-title,
  .perspectives-title {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* --- Verhindere horizontales Scrollen --- */
body, html {
  overflow-x: hidden;
}

/* --- Touch-freundliche Tap-Targets --- */
.nav-link,
.dropdown-item,
.buy-buttons a {
  padding: 0.6rem 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* --- Produkt-Bilder auf Mobilgeräten --- */
.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- About-Seite Bild --- */
@media (max-width: 991px) {
  .about-image,
  img[src*="aboutme"],
  img[src*="emilia-hero"],
  img[src*="foddo"] {
    width: 100% !important;
    max-width: 500px;
    display: block;
    margin: 0 auto 1.5rem;
  }
}

/* === INDEX.HTML MOBILE FIXES === */
@media (max-width: 991px) {
  #intro .image-holder img.w-75 { width: 85% !important; max-width: 340px; display: block; margin: 0 auto; }
  #intro h2.display-5 { font-size: 1.6rem; text-align: center; }
  #intro .banner-content { padding: 0 0.5rem; }
  #intro p.fw-semibold { text-align: center; }
  .quote-box { padding: 24px 20px !important; max-width: 100% !important; }
  p.quote { font-size: 16px !important; margin-bottom: 18px !important; }
  #categories .col-lg-6 { text-align: center; }
  #categories .tab-pane img { width: 90% !important; max-width: 320px !important; margin: 0 auto 1rem !important; display: block; }
  #categories p.mt-3 { padding: 0 1rem; max-width: 100% !important; }
  .image-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; max-width: 100% !important; }
  .book-highlight { padding: 28px 20px !important; border-radius: 16px !important; }
  .image-holder img { margin-left: 0 !important; max-width: 100% !important; width: 100% !important; }
  .book-highlight .col-lg-4 { text-align: center !important; margin-top: 1.5rem; }
  h2.book-heading { font-size: 1.5rem !important; text-align: center; }
  .buy-buttons, .home-buttons { margin-left: 0 !important; justify-content: center !important; display: flex !important; flex-wrap: wrap !important; gap: 10px !important; grid-template-columns: unset !important; }
  .buy-buttons a { margin: 0 !important; flex: 0 0 auto; min-width: 110px; text-align: center; }
  #bdNavbar .nav-link { font-size: 15px !important; letter-spacing: 1.5px !important; }
}
@media (max-width: 576px) {
  #intro .image-holder img.w-75 { width: 100% !important; max-width: 100%; }
  #intro h2.display-5 { font-size: 1.35rem; }
  .quote-box { padding: 18px 16px !important; }
  p.quote { font-size: 14px !important; }
  .image-grid { gap: 8px !important; }
  .moment { font-size: 11px !important; }
  .book-highlight { padding: 20px 14px !important; }
  .buy-buttons a, .home-buttons a { width: calc(50% - 6px) !important; padding: 12px 8px !important; font-size: 12px !important; }
}
body, html { overflow-x: hidden; }


/* =====================================================
   MOBILE-FIRST HARDENING 2026
   Focus: smartphone conversion, thumb reach, readability
   ===================================================== */
:root {
  --mobile-safe-bottom: calc(env(safe-area-inset-bottom, 0px) + 84px);
}
html {-webkit-text-size-adjust: 100%; scroll-padding-top: 88px;}
body {text-rendering: optimizeLegibility;}
a, button, .btn, .store-link, .buy-buttons a, .home-buttons a {touch-action: manipulation;}
@media (max-width: 991px) {
  .container, .container-fluid {padding-left: 18px !important; padding-right: 18px !important;}
  .site-header {backdrop-filter: saturate(140%) blur(10px);}
  .navbar, .navbar>.container, .navbar>.container-fluid {align-items: center;}
  .navbar-toggler {min-width: 46px; min-height: 46px; border-radius: 12px;}
  .navbar-collapse, .offcanvas-body {padding-top: 10px;}
  .navbar-nav .nav-link, .dropdown-item {display: block; padding: 14px 0 !important; font-size: 1rem; line-height: 1.35;}
  .dropdown-menu {position: static !important; display: block; border: 0; background: transparent; padding: 0 0 0 12px; margin-top: 0;}
  .btn, .btn-primary-custom, .btn-outline-custom, .store-link, .buy-buttons a, .home-buttons a {min-height: 52px; display: inline-flex; align-items: center; justify-content: center; text-align: center;}
  h1, .display-1, .display-2, .display-3, .display-4, .display-5 {overflow-wrap: break-word; hyphens: auto;}
  p, li {font-size: 1rem; line-height: 1.65;}
  .section, .about-hero, .characters-section, .playlist-section, .character-overview-section, .impressum-section {padding-top: 56px !important; padding-bottom: 56px !important;}
  .store-grid, .meta-list, .characters-grid, .image-grid {grid-template-columns: 1fr !important;}
  .hero-card, .info-card, .quote-card, .faq-card, .section-card, .meta-card, .faq-item, .character-card, .about-block {border-radius: 20px !important;}
  .book-highlight, .section-card, .faq-card, .meta-card, .character-card {padding: 20px !important;}
  .buy-buttons, .home-buttons {display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; margin: 20px 0 0 0 !important;}
  .buy-buttons a, .home-buttons a {width: 100%; margin: 0 !important; padding: 14px 18px !important;}
  .image-holder img, .hero-image img, .playlist-img, .character-book-cover, .cover, .hero-cover, .author-img {margin-left: auto !important; margin-right: auto !important;}
  .about-layout {margin: 0 auto !important; display: grid !important; grid-template-columns: 1fr !important; gap: 32px !important; max-width: 640px;}
  .about-left, .about-right, .about-right-only {width: 100% !important; position: static !important; right: auto !important; top: auto !important; padding-top: 0 !important;}
  .about-left {text-align: center;}
  .subtitle {max-width: none !important;}
}
@media (max-width: 767px) {
  body.has-mobile-cta {padding-bottom: var(--mobile-safe-bottom);}
  .mobile-cta-bar {position: fixed; left: 12px; right: 12px; bottom: calc(env(safe-area-inset-bottom, 0px) + 10px); z-index: 1045; display: flex; gap: 10px; align-items: center; padding: 10px; border-radius: 18px; background: rgba(255,253,251,.96); border: 1px solid rgba(0,0,0,.06); box-shadow: 0 16px 40px rgba(28,18,20,.16); backdrop-filter: blur(10px);}
  .mobile-cta-bar__text {min-width: 0; flex: 1;}
  .mobile-cta-bar__eyebrow {display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #9a6a71; margin-bottom: 2px; font-weight: 700;}
  .mobile-cta-bar__title {display: block; font-size: .95rem; line-height: 1.25; font-weight: 700; color: #272126;}
  .mobile-cta-bar .btn, .mobile-cta-bar .btn-primary-custom {white-space: nowrap; min-height: 48px; padding: 12px 16px !important; border-radius: 999px;}
}
@media (max-width: 575px) {
  .container, .container-fluid {padding-left: 16px !important; padding-right: 16px !important;}
  .site-header {padding-left: 0 !important; padding-right: 0 !important;}
  .brand, .navbar-brand {font-size: 1.5rem !important; line-height: 1.1;}
  .hero, .faq-wrap {padding-top: 36px !important;}
  .hero h1, .character-heading, .characters-title, .chat-title, .perspectives-title, .books-title, .faq-wrap h1, h1.display-4 {font-size: clamp(2rem, 10vw, 2.7rem) !important; line-height: 1.02 !important; margin-bottom: 14px;}
  .section h2, .faq-item h2, .info-card h3, .character-book-card h2, .about-left h2 {font-size: clamp(1.55rem, 7vw, 2.1rem) !important; line-height: 1.08;}
  .lead-copy, .book-text, .playlist-intro, .faq-item p, .about-block p, .about-right-only p {font-size: 1rem !important; line-height: 1.65 !important;}
  .hero-cover, .cover {max-width: min(84vw, 320px) !important;}
  .quote-card blockquote, .quote {font-size: 1.4rem !important; line-height: 1.35 !important;}
  .faq-item, .faq-box, .section-card, .meta-card, .info-card, .quote-card {padding: 18px !important;}
  .store-grid {gap: 12px !important;}
  .store-link, .btn-primary-custom, .btn-outline-custom {width: 100%;}
  .d-flex.flex-wrap.gap-3 {display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important;}
  .faq-wrap {max-width: 100%;}
}


/* =====================================================
   MOBILE NAV STABILITY + LINK/BUTTON WIDTH FIXES v6
   ===================================================== */
@media (max-width: 991px) {
  body { padding-right: 0 !important; }
  .offcanvas-backdrop { display: none !important; }

  .site-header, #header.site-header { position: sticky; top: 0; z-index: 1060; }
  .navbar { position: relative; }

  /* Collapse-based mobile nav */
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1055;
    padding: 14px 16px !important;
    background: rgba(255,253,251,.98);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(18,16,20,.14);
    backdrop-filter: blur(12px);
  }
  .navbar-collapse:not(.show) { display: none !important; }

  /* Offcanvas-based mobile nav converted into stable top dropdown */
  .offcanvas#bdNavbar,
  #bdNavbar.offcanvas {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    max-height: min(72vh, 620px);
    margin: 0 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 20px !important;
    background: rgba(255,253,251,.98) !important;
    box-shadow: 0 20px 44px rgba(18,16,20,.14) !important;
    transform: none !important;
    transition: opacity .2s ease, visibility .2s ease !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1055 !important;
  }
  .offcanvas#bdNavbar.mobile-nav-open,
  #bdNavbar.offcanvas.mobile-nav-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  #bdNavbar .offcanvas-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px 14px 0 !important;
  }
  #bdNavbar .offcanvas-body {
    display: block !important;
    padding: 8px 16px 16px !important;
    overflow-y: auto;
    max-height: min(66vh, 560px);
  }
  #bdNavbar .offcanvas-body > div {
    width: 100%;
    margin: 0 !important;
  }
  #bdNavbar .navbar-brand {
    display: inline-flex !important;
    margin-bottom: 10px;
  }
  #bdNavbar .collapse.navbar-collapse,
  #bdNavbar #navbarMenu {
    display: block !important;
    position: static !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    max-height: none !important;
  }

  /* link/button widths */
  .navbar-nav,
  .navbar-nav .nav-item,
  .navbar-nav .nav-link,
  .dropdown-menu,
  .dropdown-item,
  .btn,
  .btn-primary-custom,
  .btn-outline-custom,
  .store-link,
  .buy-buttons a,
  .home-buttons a,
  .footer-link {
    width: 100%;
    max-width: 100%;
  }

  .navbar-nav .nav-link,
  .dropdown-item,
  .footer-link,
  .btn,
  .btn-primary-custom,
  .btn-outline-custom,
  .store-link,
  .buy-buttons a,
  .home-buttons a {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .navbar-nav {
    gap: 2px !important;
  }
  .navbar-nav .nav-link,
  .dropdown-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 16px !important;
    border-radius: 14px;
    letter-spacing: .02em !important;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(0,0,0,.035);
  }

  .nav-item.dropdown > .dropdown-toggle::after {
    margin-left: 10px;
    flex: 0 0 auto;
  }
  .dropdown-menu {
    display: none !important;
    position: static !important;
    padding: 6px 0 2px 0 !important;
    margin: 4px 0 8px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .nav-item.dropdown.mobile-subnav-open > .dropdown-menu,
  .dropdown-menu.show {
    display: block !important;
  }
  .dropdown-item {
    padding-left: 28px !important;
    font-size: .96rem;
  }

  .btn,
  .btn-primary-custom,
  .btn-outline-custom,
  .store-link,
  .buy-buttons a,
  .home-buttons a {
    min-height: 54px;
    padding: 14px 18px !important;
    line-height: 1.3;
  }

  .mobile-cta-bar .btn,
  .mobile-cta-bar .btn-primary-custom {
    width: auto;
    max-width: max-content;
    white-space: nowrap !important;
  }
}

@media (max-width: 575px) {
  #bdNavbar.offcanvas,
  .offcanvas#bdNavbar,
  .navbar-collapse {
    left: 8px !important;
    right: 8px !important;
    top: calc(100% + 8px) !important;
    border-radius: 18px !important;
  }

  .navbar-nav .nav-link,
  .dropdown-item,
  .btn,
  .btn-primary-custom,
  .btn-outline-custom,
  .store-link,
  .buy-buttons a,
  .home-buttons a,
  .footer-link {
    font-size: .96rem !important;
  }
}


/* =====================================================
   FINAL MOBILE NAV + FOOTER SYSTEM v7
   Single stable top-panel nav for all optimized pages
   ===================================================== */
:root {
  --nav-panel-bg: rgba(255,253,251,.985);
  --nav-panel-line: rgba(0,0,0,.08);
  --nav-panel-shadow: 0 20px 44px rgba(18,16,20,.14);
}
.site-header-main .navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-header-main .mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 14px;
  background: transparent;
}
.site-header-main .navbar-collapse {
  flex-basis: auto;
}
.site-header-main .navbar-nav .btn,
.site-header-main .navbar-nav .btn-primary-custom,
.site-header-main .navbar-nav .btn-outline-custom,
.site-header-main .navbar-nav .nav-link {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-header-main .footer-links,
footer .footer-links {
  align-items: center;
}

@media (min-width: 992px) {
  .site-header-main .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    flex-grow: 1;
  }
}

@media (max-width: 991px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  .site-header-main .mobile-nav-toggle {
    display: inline-flex;
  }
  .site-header-main .navbar-collapse.mobile-nav-panel {
    display: none !important;
    width: 100%;
    flex-basis: 100%;
    margin-top: 4px;
    padding: 10px;
    background: var(--nav-panel-bg);
    border: 1px solid var(--nav-panel-line);
    border-radius: 20px;
    box-shadow: var(--nav-panel-shadow);
    backdrop-filter: blur(12px);
  }
  .site-header-main .navbar-collapse.mobile-nav-panel.is-open {
    display: block !important;
  }
  .site-header-main .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    gap: 4px !important;
  }
  .site-header-main .navbar-nav .nav-item,
  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom,
  .site-header-main .navbar-nav .nav-link {
    width: 100%;
    max-width: 100%;
  }
  .site-header-main .navbar-nav .nav-link {
    display: block;
    min-height: 52px;
    padding: 14px 16px !important;
    border-radius: 14px;
    line-height: 1.35;
    white-space: normal !important;
  }
  .site-header-main .navbar-nav .nav-link:hover,
  .site-header-main .navbar-nav .nav-link:focus {
    background: rgba(0,0,0,.035);
  }
  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    margin-top: 6px;
    padding: 14px 18px !important;
    line-height: 1.25;
    white-space: normal !important;
    text-align: center;
  }
  footer .container.footer-meta,
  .footer-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .85rem !important;
  }
  footer .footer-links,
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .55rem !important;
    width: 100%;
  }
  footer .footer-links a,
  .footer-links a {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 575px) {
  .site-header-main .mobile-nav-toggle {
    min-width: 46px;
    min-height: 46px;
  }
  .site-header-main .mobile-nav-panel {
    border-radius: 18px;
  }
  .site-header-main .navbar-nav .nav-link,
  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom {
    font-size: .98rem !important;
  }
}


/* =====================================================
   MOBILE LAYOUT STRUCTURE LOCK v8
   Force header/content/footer stacking on smartphones
   ===================================================== */
html, body {
  width: 100%;
  max-width: 100%;
}
body {
  display: block !important;
  min-width: 0;
}
header, main, footer,
.site-header,
.site-header-main,
main.page-main,
footer.site-footer,
footer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
  position: relative;
  left: auto !important;
  right: auto !important;
}
.site-header-main .navbar,
.site-header-main .navbar > .container,
.site-header-main .navbar > .container-fluid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  width: 100%;
}
@media (max-width: 991px) {
  body,
  #body,
  #page,
  #site,
  .site,
  .page-wrapper,
  .site-wrapper,
  .main-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  header,
  .site-header,
  .site-header-main,
  main,
  footer {
    flex: none !important;
    align-self: auto !important;
    order: initial !important;
  }
  .site-header-main .navbar-collapse.mobile-nav-panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 10px !important;
  }
  .site-header-main .navbar-collapse.mobile-nav-panel.is-open {
    display: block !important;
  }
  main {
    margin-top: 0 !important;
  }
  footer {
    margin-top: 0 !important;
  }
}
@media (max-width: 575px) {
  body,
  header,
  main,
  footer,
  .site-header,
  .site-header-main {
    display: block !important;
    width: 100% !important;
  }
  .site-header-main .navbar {
    align-items: center !important;
  }
}

/* =====================================================
   MOBILE NAV SPACING + OVERFLOW POLISH v9
   Keep hover states and buttons fully inside the panel
   ===================================================== */
@media (max-width: 991px) {
  .site-header-main .navbar,
  .site-header-main .navbar-collapse.mobile-nav-panel,
  .site-header-main .navbar-nav,
  .site-header-main .navbar-nav .nav-item,
  .site-header-main .navbar-nav .nav-link,
  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom {
    box-sizing: border-box !important;
  }

  .site-header-main .navbar-collapse.mobile-nav-panel {
    overflow: hidden;
    padding: 10px !important;
  }

  .site-header-main .navbar-nav {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    gap: 6px !important;
  }

  .site-header-main .navbar-nav .nav-item {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header-main .navbar-nav .nav-link,
  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: center;
    justify-content: center;
  }

  .site-header-main .navbar-nav .nav-link {
    min-height: 50px;
    padding: 13px 14px !important;
    border-radius: 14px;
  }

  .site-header-main .navbar-nav .nav-link:hover,
  .site-header-main .navbar-nav .nav-link:focus,
  .site-header-main .navbar-nav .nav-link:active {
    background: rgba(0,0,0,.04) !important;
    outline: none;
  }

  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom {
    min-height: 52px;
    margin-top: 2px !important;
    padding: 13px 14px !important;
    border-radius: 14px;
  }
}

@media (max-width: 575px) {
  .site-header-main .navbar-collapse.mobile-nav-panel {
    padding: 8px !important;
    border-radius: 18px;
  }

  .site-header-main .navbar-nav {
    gap: 5px !important;
  }

  .site-header-main .navbar-nav .nav-link,
  .site-header-main .navbar-nav .btn,
  .site-header-main .navbar-nav .btn-primary-custom,
  .site-header-main .navbar-nav .btn-outline-custom {
    font-size: .97rem !important;
    line-height: 1.3;
  }
}


/* Startseite: between what we feel */
.between-card {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
  border: 1px solid rgba(194, 143, 162, 0.18);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(64, 33, 47, 0.08);
}
.between-card > p {
  margin-bottom: 0.95rem;
  max-width: 900px;
}
.between-transition {
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 1.25rem;
}
.between-quotes {
  display: grid;
  gap: 16px;
  margin-top: 1.75rem;
}
.between-quotes blockquote {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(194, 143, 162, 0.16);
  color: var(--heading-color);
  font-size: 1.05rem;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgba(64, 33, 47, 0.05);
}
.section-soft {
  background: #fffafc;
}
.section-heading h2 {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .between-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .between-card > p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
  .between-quotes blockquote {
    padding: 16px 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}


/* Shared nav + inside the story integration */
.mobile-nav-panel .nav-link{white-space:normal;word-break:break-word}
.inside-hub{padding:4.5rem 0 3rem;background:linear-gradient(180deg,#f8f3ef 0%,#fffaf7 100%)}
.inside-hub__intro{max-width:720px;margin:0 auto 2.5rem;text-align:center}
.inside-hub__intro .eyebrow{margin-bottom:.6rem}
.inside-hub__intro h1{font-family:'Cormorant Garamond',serif;font-size:clamp(2.5rem,6vw,4.4rem);line-height:.95;margin-bottom:1rem;color:#272126}
.inside-hub__intro p{font-size:1.08rem;line-height:1.7;color:#6e6468}
.inside-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem}
.inside-card{display:flex;flex-direction:column;justify-content:space-between;background:#fffdfb;border:1px solid #e8ddd8;border-radius:24px;padding:1.4rem;box-shadow:0 12px 32px rgba(50,28,34,.06);min-height:220px;text-decoration:none;color:#272126;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.inside-card:hover{transform:translateY(-2px);border-color:#9a6a71;box-shadow:0 16px 38px rgba(50,28,34,.1);color:#272126}
.inside-card__label{display:inline-flex;align-self:flex-start;padding:.35rem .7rem;border-radius:999px;background:#f3e7e3;color:#7c5258;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;font-weight:700;margin-bottom:1rem}
.inside-card h2{font-family:'Cormorant Garamond',serif;font-size:2rem;line-height:1;margin-bottom:.7rem;color:#272126}
.inside-card p{color:#6e6468;line-height:1.65;margin-bottom:1rem}

.inside-card__notice{display:inline-flex;align-self:flex-start;margin-top:.2rem;padding:.45rem .75rem;border-radius:999px;background:#f7ece8;color:#8b5960;font-size:.83rem;line-height:1.35;font-weight:600;border:1px solid #ead4cf}
.inside-card__cta{margin-top:auto;font-weight:700;color:#9a6a71}
.inside-strip{padding:0 0 4rem}
.inside-strip__box{background:#fffdfb;border:1px solid #e8ddd8;border-radius:24px;padding:1.5rem}
.inside-strip__links{display:flex;flex-wrap:wrap;gap:.75rem}
.inside-strip__links a{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:.8rem 1rem;border-radius:999px;background:#fff;border:1px solid #e8ddd8;text-decoration:none;color:#272126;font-weight:600}
.inside-strip__links a:hover{border-color:#9a6a71;color:#9a6a71}
@media (max-width: 991px){.inside-hub{padding:3rem 0 2rem}.inside-grid{grid-template-columns:1fr}.inside-card{min-height:auto}}


/* =====================================================
   INSIDE THE STORY NAV CONSISTENCY FIX v20
   Force identical logo + primary nav CTA across all subpages
   ===================================================== */
.site-header-main .brand {
  display: inline-flex !important;
  align-items: center !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(1.75rem, 1.2rem + 1vw, 2.1rem) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  color: #1f1720 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}
.site-header-main .brand:hover,
.site-header-main .brand:focus {
  color: #1f1720 !important;
  opacity: .9;
}
.site-header-main .navbar-nav .btn-primary-custom {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #1f1720 0%, #3b2633 100%) !important;
  border: 1px solid rgba(31, 23, 32, .08) !important;
  box-shadow: 0 12px 26px rgba(31, 23, 32, .16) !important;
  color: #fff !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.site-header-main .navbar-nav .btn-primary-custom:hover,
.site-header-main .navbar-nav .btn-primary-custom:focus {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(31, 23, 32, .2) !important;
}
@media (max-width: 991px) {
  .site-header-main .brand {
    font-size: clamp(1.55rem, 1.15rem + 1.2vw, 1.9rem) !important;
  }
  .site-header-main .navbar-nav .btn-primary-custom {
    width: 100% !important;
    padding: 14px 18px !important;
    border-radius: 16px !important;
    white-space: normal !important;
  }
}


/* =====================================================
   LOGO FONT WEIGHT FIX v21
   Keep the Emilia Faye wordmark regular everywhere
   ===================================================== */
.brand,
.site-header-main .brand,
.navbar .brand,
a.brand,
footer .brand {
  font-weight: 400 !important;
}

/* =====================================================
   CHATVERLAEUFE MOBILE STACK FIX v22
   Keep phone mockups stacked vertically on smartphones
   ===================================================== */
@media (max-width: 767px) {
  body {
    display: block !important;
  }

  .chat-page .container-lg {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .phones-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }

  .phone {
    width: min(340px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    height: 690px !important;
    min-height: 690px !important;
    margin: 0 auto !important;
  }

  .phone-screen {
    height: 100% !important;
    min-height: 0 !important;
  }

  .chat-scroll {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

/* =====================================================
   INSIDE THE STORY TYPOGRAPHY ALIGNMENT v24
   Match all related page titles to the Inside hub hero title style
   ===================================================== */
.chat-title,
.character-heading,
.characters-title,
.perspectives-title,
.book-page-title,
.playlist-page .character-heading,
.journal-page .character-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.5rem, 6vw, 4.4rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  color: #272126 !important;
  margin-bottom: 1rem !important;
  text-rendering: optimizeLegibility;
}

.chat-subtitle,
.characters-subtitle,
.perspectives-subtitle,
.book-page-subtitle,
.journal-subtitle {
  color: #6e6468 !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 768px) {
  .chat-title,
  .character-heading,
  .characters-title,
  .perspectives-title,
  .book-page-title,
  .playlist-page .character-heading,
  .journal-page .character-heading {
    font-size: clamp(2.2rem, 10vw, 3.2rem) !important;
    line-height: 0.98 !important;
    text-align: center !important;
  }
}
