/* 💗 Beautystudio La Belle – Haupt-Stylesheet */
/* -------------------------------------------------- */
/* Grundfarben, Typografie & Layout */
:root {
  --brand: #F02883;
  --text: #333;
  --bg: #fff;
  --soft: #fff5fa;
  --soft-strong: #ffe3f2;
  --radius-xl: 24px;
  --shadow: 0 24px 50px rgba(0, 0, 0, .07);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.25;
}

/* Überschriften & Text */
h1, h2, h3 {
  color: var(--brand);
  font-weight: 1600;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 16px;
  color: #444;
  font-size: 1.65rem; /* vorher 1.15rem */
  line-height: 1.6;   /* etwas luftiger */
}

/* 💗 Erste Sektion – volle Breite */
.hero-fullwidth {
  width: 100vw;               /* volle Bildschirmbreite */
  max-width: 100%;            /* überschreibt die Limitierung vom Wrapper */
  margin: 0;                  /* kein automatischer Seitenabstand */
  padding: 0;                 /* Rand wird direkt im Inneren geregelt */
}

/* 💗 Inhalt innerhalb der ersten Sektion */
.hero-fullwidth .wrapper {
  max-width: 1400px;          /* breiter als die anderen */
  margin: 0 auto;
  padding: 80px 40px;         /* großzügig, aber nicht zu eng am Rand */
}

/* Allgemeine Container */
.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-inner {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 40px 28px;
}

/* Zwei-Spalten-Layout */
.two-col {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Karten & Blöcke */
.soft-card {
  background: var(--soft);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(240, 40, 131, .12);
}

/* CTA-Buttons */
.cta-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 18px 40px rgba(240, 40, 131, .4);
  transition: .25s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Galerien */
.gallery-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
  display: block;
  transition: transform .5s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 12px 4px;
  font-size: 1.9rem;
  color: #555;
  line-height: 1.4;
}

/* Feature-Karten */
.feature-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
}

.feature-head {
  font-weight: 600;
  color: var(--brand);
  font-size: 1.55rem;
}

.feature-text {
  font-size: 1.95rem;
  color: #444;
  line-height: 1.5;
}

/* Preislisten */
.price-table {
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  font-size: 1.95rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

.price-left {
  font-weight: 600;
  color: #444;
}

.price-right {
  font-weight: 600;
  color: var(--brand);
}

.price-hint {
  font-size: 1.85rem;
  color: #777;
  margin-top: 12px;
  line-height: 1.4;
}

/* FAQ / Details */
details {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  padding: 18px 22px;
  font-size:  1.95rem;
  color: #444;
}

details + details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand);
  outline: none;
}

/* Bewertungen / Testimonials */
.testi-wrap {
  display: grid;
  gap: 24px;
}

@media (min-width: 800px) {
  .testi-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
  font-size: 1.95rem;
  color: #444;
  line-height: 1.5;
  position: relative;
}

.stars {
  color: #f5b300;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.testi-name {
  margin-top: 16px;
  font-weight: 600;
  color: var(--brand);
  font-size:  1.9rem;
}

.testi-loc {
  font-size: 1.8rem;
  color: #777;
}

/* Abschlusssatz / CTA */
.final-cta {
  text-align: center;
  background: var(--soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 50px 30px;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #444;
  line-height: 1.6;
}

/* Karte / Map */
.map-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-head {
  padding: 24px;
}

.map-head h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--brand);
  font-weight: 600;
}

.map-head p {
  font-size: 1.95rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* Tipps / Pflege */
.tips-box {
  background: var(--soft-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(240, 40, 131, .15);
  padding: 28px;
  font-size: 1.55rem;
  line-height: 1.5;
  color: #444;
}

.tips-box h3 {
  margin-top: 0;
  color: var(--brand);
  font-size: 1.9rem;
  font-weight: 600;
}

/* Kleine Notizen */
.tiny-note {
  font-size: 1.5rem; /* vorher 0.8rem → etwas größer */
  color: #666;
  line-height: 1.6;
}

/* Hero Grid */
.hero-grid {
  display: grid;
  align-items: center;
  gap: 40px;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 899px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid img {
    margin-top: 30px;
  }
}

/* Review Cards (Swiper) */
.review-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 24px;
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
}

.review-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

.review-footer {
  font-size: 13px;
  color: #666;
}

.swiper {
  padding: 10px 0 40px 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--brand);
}

.swiper-pagination-bullet-active {
  background: var(--brand);
}

/* Über uns / About Block */
.about-lb {
  --lb-pink: #F02883;
  --lb-bg: #fff0f7;
  --lb-text: #333;
  --lb-muted: #666;
  padding: 40px 16px;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.about-lb__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-lb__title {
  margin: 0 0 22px 0;
  font-size: 28px;
  color: var(--lb-pink);
  font-weight: 800;
  letter-spacing: .3px;
  text-align: left;
}

.about-lb__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(240, 40, 131, 0.15);
  border: 1px solid rgba(240, 40, 131, 0.08);
}

.about-lb__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--lb-bg);
  min-height: 320px;
}

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

.about-lb__intro {
  margin: 0 0 10px 0;
  font-size: 17px;
  line-height: 1.55;
}

.about-lb__host {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: var(--lb-muted);
}

.about-lb__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 10px;
}

.about-lb__list li {
  background: var(--lb-bg);
  border: 1px solid rgba(240, 40, 131, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.45;
}

.about-lb__address {
  display: grid;
  gap: 4px;
  margin: 10px 0 18px 0;
  font-weight: 600;
  color: var(--lb-text);
}

.about-lb__btn {
  background: var(--lb-pink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(240, 40, 131, 0.35);
  transition: transform .15s ease;
  display: inline-block;
}

.about-lb__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(240, 40, 131, 0.4);
}

.about-lb__link {
  color: var(--lb-pink);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid rgba(240, 40, 131, 0.25);
  padding-bottom: 2px;
}

.about-lb__link:hover {
  border-color: var(--lb-pink);
}

@media (max-width: 900px) {
  .about-lb__card {
    grid-template-columns: 1fr;
  }

  .about-lb__media {
    order: -1;
    min-height: 260px;
  }

  .about-lb__title {
    font-size: 24px;
  }
}
/* 💗 Größere Schrift für Aufzählungen / Listen */
.section-inner ul li {
  font-size: 1.6rem;      /* war ca. 0.95–1rem → jetzt deutlich größer */
  line-height: 1.7;       /* sorgt für luftigen Abstand */
  color: #444;            /* ein sanftes Grau, gut lesbar */
  margin-bottom: 6px;     /* etwas Abstand zwischen den Punkten */
}

/* Optional: Rosa Punkte für La Belle Design */
.section-inner ul {
  list-style-type: disc;
  padding-left: 24px;
  color: var(--brand);    /* Punkte in Markenfarbe 💗 */
}
/* 💗 Standard: Text linksbündig (normal) */
.section {
  padding: 80px 0;
  text-align: left;           /* Text linksbündig */
}

/* 💗 Nur diese Sektionen zentriert anzeigen */
.section.center,
.final-cta,
.about-lb,
.section.text-center {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* 💗 Innerer Bereich – begrenzte Breite, damit alles mittig bleibt */
.section-inner {
  max-width: 1100px;           /* begrenzt Breite – wirkt edler */
  width: 100%;
  margin: 0 auto;
}

/* 💗 Wenn du die zwei Spalten (Bild + Text) mittig willst */
.two-col {
  display: grid;
  gap: 40px;
  justify-content: center;     /* sorgt dafür, dass beide Spalten mittig stehen */
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;       /* gleicht Bild und Text vertikal an */
  }
}

