/* ============================================================
   style.css – Page Specific Styles (Index)
   Aufbau:
   1) Hero Section
   2) Grids & Layout
   3) Feature Cards
   4) Responsive Anpassungen
   ============================================================ */

:root {
  --hero-gap: clamp(1.8rem, 1.5vw, 1.2rem);
   --brand: #e3ce56d4;
}

/* GLOBAL PAGE BACKGROUND FIX */
html, body {
  background: var(--bg-2) !important;
}



.hero-blob-layer {
  position: absolute;
  top: calc(var(--header-height) + 500px); /* optisch feinjustieren */
  right: 35%;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    circle at center,
    rgba(184, 204, 100, 0.25) 0%,
    rgba(184, 204, 100, 0.15) 40%,
    rgba(184, 204, 100, 0.05) 70%,
    rgba(184, 204, 100, 0) 100%
  );

  filter: blur(120px);
}
/* ============================================================
   FCH — HERO SECTION (Dark, Apple-Clean)
   ============================================================ */

/* Hero Basis und SECTION BASE */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
}

/* MEDIA WRAPPER — Bild mit radius + offenen Seiten */
.hero-media-wrapper {
  position: relative;
  width: 100vw;
  height: 100svh;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}


  .hero-content {
    position: absolute;
    top: 45%;
    left: clamp(2rem, 8vw, 12rem);
    transform: translateY(-50%);
    width: min(580px, 49%);
    text-align: left;
    padding-right: clamp(1rem, 4vw, 3rem);
    z-index: 2;
  }


/* TEXT CONTENT */
.hero-eyebrow {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: .5px;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink-1);
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.hero-subtitle {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* CTA GROUP */
.hero-cta-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* BUTTON BASE */
.hero-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: clamp(.9rem, 1vw, 1.1rem) clamp(2.2rem, 3vw, 2.8rem);
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: 500;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}

/* PRIMARY BUTTON */
.hero-btn.primary {
  background: var(--brand);
  color: #111;
}

.hero-btn.primary:hover {
  background: color-mix(in srgb, var(--brand) 90%, white);
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.hero-btn.secondary {
  border: 2px solid var(--ink-1);
  color: var(--ink-1);
  background: transparent;
}

.hero-btn.secondary:hover {
  background: var(--ink-1);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .hero-media-wrapper {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .hero-media-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .hero-content {
    position: absolute;
    top: 30%;
    left: 6%;
    transform: none;
    padding: 0;
    z-index: 5;
    width: 88%;
    text-align: left;
    left: 4%;
    width: 92%;
  }
  .hero-content h1,
  .hero-content .hero-title {
    line-height: 1.22;
    max-width: 88%;
  }
  .hero-subtitle {
    max-width: 88%;
    margin-bottom: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 0.6rem;
    width: 90% !important;
    margin-left: 5% !important;
  }
  .hero-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    width: 100% !important;
    justify-content: center;
  }
  .hero-eyebrow {
    margin-left: 0.2rem;
  }
  .hero-content .hero-eyebrow,
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-cta-group {
    margin-left: 5% !important;
    width: 90% !important;
  }
}

/* 480–900px — Mobile Landscape / Small Tablets */
@media (min-width: 480px) and (max-width: 900px) {
  .hero-media-wrapper {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .hero-media-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.10) 65%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    top: 0;
    left: 5;
    transform: none;
    width: 100%;
    padding: 1.8rem 1.6rem;
    text-align: left;
  }
  .hero-content {
    width: clamp(420px, 88%, 760px);
  }
  .hero-content h1,
  .hero-content .hero-title {
    max-width: 92%;
  }
  .hero-subtitle {
    max-width: 92%;
  }
  .hero-cta-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .hero-btn {
    padding: 0.7rem 1.4rem;
  }
}

/* ============================================================
   HERO — TABLET VIEW (768–1200px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1200px) {
  .hero-media-wrapper {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .hero-media-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .hero-section {
    min-height: 100svh;
  }
  .hero-content {
    position: absolute;
    top: 46%;
    left: clamp(2rem, 8vw, 12rem);
    transform: translateY(-50%);
    width: clamp(480px, 62%, 760px);
    text-align: left;
    padding-right: clamp(1rem, 4vw, 3rem);
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    margin-left: 0;
  }
  .hero-title {
    line-height: 1.22;
    margin-bottom: 1.2rem;
  }
  .hero-subtitle {
    line-height: 1.55;
    margin-bottom: 1.4rem;
  }
  .hero-cta-group {
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 0.7rem 1.6rem;
  }
  /* Farbklecks eindeutig zugeordnet */
  .hero-blob::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -15%;
    width: 300px;
    height: 300px;
  }
  .hero-blob::before {
    filter: blur(120px);
  }
}

/* 1440+ — Large Desktop / Widescreen */
@media (min-width: 1440px) {
  .hero-media-wrapper {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}







/* ============================================================
   2) GLOBAL PAGE LAYOUT (specific for this page)
   ============================================================ */

.page-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.page-section-sm {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.page-section-lg {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}


/* Max width wrappers */
.wrapper {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

/* Wide wrapper (Hero, Big grids, etc.) */
.wrapper-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}


/* ============================================================
   3) FEATURE GRID
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-1);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}


/* ============================================================
   4) GENERAL IMAGE / MEDIA BEHAVIOUR
   ============================================================ */

img.fullwidth {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}


/* ============================================================
   5) RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 900px) {

  .hero {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .features-grid {
    gap: var(--space-4);
  }
}

@media (max-width: 600px) {

  .hero {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }

  .hero p {
    margin-bottom: var(--space-5);
  }
}


/* ============================================================
   BODYLOUNGE — INTRO (zentriert, clean, konsistent)
============================================================ */

.bodylounge-intro {
  max-width: 960px;  
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: left;
}

/* Eyebrow */
.bodylounge-eyebrow {
  color: #e3ce56d4;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

/* Title */

.bodylounge-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-1);
  margin-bottom: 2.2rem !important;
}

/* Subtext */

.bodylounge-sub {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 820px;
}

/* ============================================================
   RESPONSIVE FEINSCHLIFF
============================================================ */

@media (max-width: 600px) {
  .bodylounge-intro {
    padding-inline: 0rem;
  }

}


.bodylounge-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bl-item {
  display: grid;
  grid-template-columns: 280px 1px 1fr;
  gap: 48px;
}

.bl-col {
  display: flex;
  flex-direction: column;
}

.bl-left {
  gap: 24px;
}

.bl-right {
  gap: 20px;
}

.bl-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.bl-label {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.bl-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: #e3ce56d4;
}



.bl-divider {
  width: 1px;
  background: #444;
  opacity: .4;
}

.bl-title {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.3;
  color: #fff;
}

.bl-text {
  color: #aaa;
  line-height: 1.6;
  max-width: 900px;
}


/* ============================================================
   BILD — Höhe begrenzen & hochwertiges Cropping
============================================================ */
.bl-image {
  margin-top: 20px;
  width: 100%;
  max-height: 450px;    /* Bildhöhe jetzt kontrolliert */
  border-radius: 14px;
  object-fit: cover;    /* sauberer Zuschnitt ohne Verzerrung */
}

.bl-hr {
  border: none;
  border-top: 1px solid #444;
  opacity: .4;
}

/* ============================================================
   EXPANDABLE DETAIL SECTION — TOGGLE
============================================================ */

.bl-more-toggle {
  margin-top: 24px;
  background: none;
  border: none;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 200;
  cursor: pointer;
  padding: 8px 0;
  text-align: center;
  width: 100%;
  transition: color .25s ease, transform .25s ease;
}

.bl-more-toggle:hover {
  color: #fff;
}

.bl-more-toggle.open {
  transform: translateY(2px);
}

/* Arrow rotation */
.bl-arrow {
  display: inline-block;
  transition: transform .25s ease;
}

.bl-more-toggle.open .bl-arrow {
  transform: rotate(180deg);
}

/* WRAPPER HIDDEN AREA */
.bl-more {
  overflow: hidden;
  max-height: 0;
  display: block;
  width: 100%;
  padding-top: 32px;
  transition: max-height .4s ease;
}

.bl-more > * + * {
  margin-top: 32px;
}

.bl-more.open {
  max-height: 2000px;
}

/* TITLE inside expanded area */
.bl-more-title {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: #fff;
}
.bl-item {
  display: grid;
  grid-template-columns: 280px 1px 1fr;
  grid-auto-rows: auto;
}

.bl-more {
  grid-column: 3;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
/* INFOCARDS */
.bl-infocards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.bl-infocard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  border-radius: 12px;
  color: #ddd;
  font-size: .95rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease;
}

.bl-infocard:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

/* TEXT in expanded area */
.bl-more-text {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 900px;
}

/* 2-GRID IMAGES */
.bl-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bl-more-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 340px;
}

@media (max-width: 360px) {

  .bodylounge-section {
    gap: 48px;
    padding-block: 3rem;
  }

  .bl-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .bl-divider {
    width: 100%;
    height: 1px;
  }

  .bl-left,
  .bl-right {
    gap: 16px;
  }

  .bl-label {
    font-size: 1.5rem;
  }

  .bl-title {
    font-size: 1.4rem;
  }

  .bl-text,
  .bl-more-text {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .bl-cta {
    width: 100%;
    text-align: center;
  }

  .bl-image {
    max-height: 260px;
  }

  .bl-more {
    grid-column: auto;
    padding-top: 24px;
  }
}

@media (min-width: 361px) and (max-width: 480px) {

  .bodylounge-section {
    gap: 56px;
    padding-block: 3.5rem;
  }

  .bl-item {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .bl-divider {
    width: 100%;
    height: 1px;
  }

  .bl-left,
  .bl-right {
    gap: 18px;
  }

  .bl-label {
    font-size: 1.6rem;
  }

  .bl-title {
    font-size: 1.5rem;
  }

  .bl-text,
  .bl-more-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .bl-cta {
    width: 100%;
    text-align: center;
  }

  .bl-image {
    max-height: 300px;
  }

  .bl-more {
    grid-column: auto;
    padding-top: 28px;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {

  .bodylounge-section {
    gap: 64px;
    padding-block: clamp(4rem, 6vw, 5rem);
  }

  .bl-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bl-divider {
    width: 100%;
    height: 1px;
  }

  .bl-left,
  .bl-right {
    gap: 20px;
  }

  .bl-label {
    font-size: 1.8rem;
  }

  .bl-title {
    font-size: 1.7rem;
  }

  .bl-text,
  .bl-more-text {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .bl-cta {
    width: fit-content;
    min-width: 220px;
  }

  .bl-image {
    max-height: 380px;
  }

  .bl-more {
    grid-column: auto;
    padding-top: 32px;
  }
}