/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/playfair-display-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/playfair-display-v40-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/playfair-display-v40-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/playfair-display-v40-latin-700italic.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* plus-jakarta-sans-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/plus-jakarta-sans-v12-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/plus-jakarta-sans-v12-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/plus-jakarta-sans-v12-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --gold: #c9a24a;
  --bg: #0b0b0b;
  --text: rgba(255, 255, 255, 0.86);
  --muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3,
.font-serif {
  font-family: "Playfair Display", serif;
}

html,
body {
  height: 100%; /*overflow-x: hidden;*/
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  font-size: 1.1rem;
}
section {
  scroll-margin-top: 90px; /* Höhe Sticky-Menü */
}
.gold-gradient {
  background: linear-gradient(135deg, #fef08a 0%, #d2b55b 50%, #a1821a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #fff;
}

/* NAV (scroll-in/out + background on scroll) */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1030;
  transition: transform 0.35s ease, background-color 0.25s ease,
    border-color 0.25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
}
.site-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.site-nav.is-hidden {
  transform: translateY(-110%);
}

.brand-mark {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 0.85rem;
}
.brand-mark span {
  color: var(--gold);
  font-weight: 600;
}

.nav-link {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav-link:hover {
  opacity: 1;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  padding-top: 92px; /* Platz fÃ¼r fixed nav */
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.85)
    ),
    url("/asset/salon/images/startseite/hero/friseursalon-la-vie-est-belle-auerbach-vogtland.webp");
  background-size: cover;
  background-position: center;
}
.hero-kicker {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.hero-title .gold {
  color: var(--gold);
}
.hero-sub {
  max-width: 56ch;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.gold {
  color: var(--gold);
}
.btn-gold {
  --bs-btn-color: #0b0b0b;
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: #d7b05a;
  --bs-btn-hover-border-color: #d7b05a;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
}
.btn-ghost {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Optional: kleiner "Stats"-Strip als Platzhalter (kann spÃ¤ter raus) */
.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  text-align: center;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  opacity: 0.9;
}
.stat .v {
  font-weight: 600;
}
.stat .k {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-section {
  background: radial-gradient(
    800px 400px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 70%
  );
}

.trust-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.reviews-number {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.reviews-stars i {
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 3px;
}

.reviews-label {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.8;
}

.reviews-rating {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.65);
}

.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -22px;
  left: 18px;
  font-size: 80px;
  line-height: 1;
  color: rgba(201, 162, 74, 0.35);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.quote-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

.quote-author {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

.quote-source {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

.fusion-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.fusion-subtitle {
  /*font-family: ui-sans-serif, system-ui;*/
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.fusion-highlights li {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.fusion-video-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.fusion-link {
  color: var(--gold);
  text-decoration: none;
}

.fusion-link:hover {
  text-decoration: underline;
}

.abc-banner-section {
  width: 100%;
  padding: 80px 0; /* Luft oben/unten */
  background: #000; /* dunkler Rahmen */
  display: flex;
  justify-content: center;
  align-items: center;
}
.abc-banner-section {
  background: radial-gradient(
    ellipse at center,
    rgba(201, 162, 74, 0.08),
    #000 60%
  );
}
.abc-banner-image {
  width: 100%;
  max-width: 1600px;
  height: 317px;
  background-image: url("../images/parallax/friseur_in_auerbach_vogtland.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 6s ease;
}

.abc-banner-section:hover .abc-banner-image {
  transform: scale(1.03);
}

.team-sarah-section {
  background: radial-gradient(
    900px 380px at 20% 10%,
    rgba(201, 162, 74, 0.1),
    transparent 60%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sarah-card {
  display: inline-block;
}

.sarah-photo-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sarah-photo {
  display: block;
  width: min(420px, 100%);
  height: auto;
  border-radius: 18px;
}

.sarah-role {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.sarah-name {
  margin-top: 4px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--gold);
}

.sarah-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.sarah-text {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}
.jobs-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    700px 300px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 70%
  );
}

.jobs-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.jobs-text {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.jobs-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jobs-whatsapp-btn i {
  font-size: 1.2rem;
}

.jobs-whatsapp-btn:hover {
  background: var(--gold);
  color: #000;
}

.salon-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 65%
  );
}

.salon-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.salon-headliner {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.95;
}

.salon-text {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  max-width: 70ch;
  margin: 0 auto;
}

/* Marquee / Autoscroll */
.salon-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}

.salon-marquee-wrap::before,
.salon-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.salon-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.salon-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.salon-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: salonMarquee 30s linear infinite;
  will-change: transform;
}

.salon-shot {
  flex: 0 0 auto;
  width: min(520px, 78vw);
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.salon-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* Pause on hover (optional) */
.salon-marquee-wrap:hover .salon-marquee-track {
  animation-play-state: paused;
}

/* Bewegung rechts -> links */
@keyframes salonMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile tuning */
@media (max-width: 991px) {
  .salon-marquee-wrap::before,
  .salon-marquee-wrap::after {
    width: 70px;
  }
  .salon-marquee-track {
    animation-duration: 22s;
  }
}

.brand-banner-section {
  position: relative;
  width: 100%;
  min-height: 70vh; /* anpassbar */
  overflow: hidden;
  background: #000;
}

.brand-banner-section {
  width: 100%;
  padding: 80px 0; /* Luft oben/unten */
  background: #000; /* dunkler Rahmen */
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-banner-section {
  background: radial-gradient(
    ellipse at center,
    rgba(201, 162, 74, 0.08),
    #000 60%
  );
}
.brand-banner-image {
  width: 100%;
  max-width: 1600px;
  height: 317px;
  background-image: url("../images/parallax/friseur_auerbach_im_vogtland.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 6s ease;
}

.brand-banner-section:hover .brand-banner-image {
  transform: scale(1.03);
}

/*
.brand-banner-image {
position: absolute;
inset: 0;
background-image: url("../images/parallax/friseur_auerbach_im_vogtland.webp");
background-repeat: no-repeat;
background-position: center;
background-repeat: no-repeat;
transform: scale(1.02);
}

.brand-banner-section::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
rgba(0,0,0,.15),
rgba(0,0,0,.35)
);
pointer-events: none;
}

@media (max-width: 991px) {
.brand-banner-section {
min-height: 50vh;
}
}
*/

.prices-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.07),
    transparent 65%
  );
}

.prices-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.prices-subtitle {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Card */
.price-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.price-card-head {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.price-card-title {
  color: var(--gold);
  font-family: ui-sans-serif, system-ui;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.price-card-note {
  font-family: ui-sans-serif, system-ui;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.price-card-body {
  padding: 0;
}

/* Table styling */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.price-table thead th {
  font-family: ui-sans-serif, system-ui;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-family: ui-sans-serif, system-ui;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

/* make narrow columns behave */
.price-table th.text-end,
.price-table td.text-end {
  white-space: nowrap;
}
.refs-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 65%
  );
}

.refs-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.refs-text {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  max-width: 85ch;
  margin: 0 auto;
}

.refs-logo-wrap {
  display: flex;
  justify-content: center;
}

.refs-logo {
  max-width: 130px;
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: grayscale(100%);
}

/* Dokumente Grid */
.refs-media-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3; /* einheitliche Kachelgr&ouml;&szlig;e */
}

.refs-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

/* Leere Platzhalter (nur Raumhalter bis echte Dateien kommen) */
.refs-media-card.is-empty {
  position: relative;
}

.refs-media-card.is-empty::after {
  content: "Platz fuer Zertifikate / Auszeichnungen";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.01) 10px,
    rgba(255, 255, 255, 0.01) 20px
  );
}

.brands-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 65%
  );
}

.brands-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.brand-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.brand-card-head {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.brand-text {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.brand-logos {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background-color 0.25s ease;
}

.brand-logo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 74, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

.brand-logo-link img {
  height: 100px;
  width: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.95;
}

.brand-video {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Intro */
.inspo-intro-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 65%
  );
}

.inspo-intro-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.2;
}

.inspo-intro-text {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

/* Gallery Header */
.inspo-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

/* Filter Buttons (wie Tabs) */
.inspo-filters {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.inspo-filter {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.75);
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: border-color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease, color 0.2s ease;
}

.inspo-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 74, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.inspo-filter.is-active {
  border-color: rgba(201, 162, 74, 0.65);
  background: rgba(201, 162, 74, 0.1);
  color: var(--gold);
}

/* Filmstrip Wrapper */
.inspo-gallery-section {
  background: #0b0b0b;
}

.inspo-strip-wrap {
  position: relative;
  width: 100%;
  padding: 8px 0 18px;
  overflow: hidden;
}

/* weiche Kanten links/rechts (wie im Mockup) */
.inspo-strip-wrap::before,
.inspo-strip-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.inspo-strip-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}
.inspo-strip-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}

/* 1 Zeile, horizontal scroll */
.inspo-strip {
  display: flex;
  gap: 18px;
  padding: 0 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
  user-select: none;
}
.inspo-strip::-webkit-scrollbar {
  display: none;
} /* Chrome/Safari */

.inspo-strip.is-dragging {
  cursor: grabbing;
}

/* Karten */
.inspo-item {
  flex: 0 0 auto;
  width: min(360px, 78vw);
  aspect-ratio: 3 / 4; /* Hochformat wie Editorial */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  scroll-snap-align: start;
  position: relative;
  pointer-events: none; /* verhindert Link-Klick während Drag */
}

.inspo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.inspo-item:hover img {
  transform: scale(1.06);
}

/* hidden state for filtering */
.inspo-item.is-hidden {
  display: none;
}

.inspo-hint {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 991px) {
  .inspo-strip-wrap::before,
  .inspo-strip-wrap::after {
    width: 70px;
  }
}

.overlay-dark {
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.position-relative:hover .overlay-dark {
  background-color: rgba(0, 0, 0, 0.2);
}

.h-max-500p {
  max-height: 500px;
}
.events-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.07),
    transparent 65%
  );
}

.events-kicker {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 18px;
}

.events-intro {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 70ch;
  margin: 0 auto;
}

.events-subhead {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 6px;
}

/* Image card */
.events-image-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.events-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Price cards (match preisliste look) */
.event-price-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.event-price-head {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;

  color: var(--gold);
  font-family: ui-sans-serif, system-ui;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.event-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-price-card .event-price-row:first-of-type {
  border-top: 0;
}

.event-price-desc {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.event-price-val {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

/* Mobile: stack price+value */
@media (max-width: 575px) {
  .event-price-row {
    grid-template-columns: 1fr;
  }
  .event-price-val {
    color: var(--gold);
  }
}

.tag {
  display: inline-block;
  width: 30px; /* sorgt für gleiche Breite */
  font-weight: bold;
}
/* ----------------------- */

/* Placeholder Sections (nur damit man Scroll testen kann) */
.stub-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    1200px 400px at 50% 0%,
    rgba(201, 162, 74, 0.1),
    transparent 60%
  );
}
.stub-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 28px;
}

/* Fade-in system (fÃ¼r spÃ¤ter) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070707;
}
.footer-title {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.8rem;
}
.footer-link {
  color: rgba(255, 255, 255, 0.65);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
.footer-link:hover {
  color: #fff;
}
.fineprint {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: ui-sans-serif, system-ui;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-link i {
  font-size: 1.2rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.social-link:hover i {
  color: var(--gold);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  border: 1px solid var(--gold);
  color: var(--gold);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  z-index: 999;

  transition: all 0.3s ease;
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

.floating-whatsapp:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(201, 162, 74, 0.4);
}
.floating-whatsapp {
  opacity: 0;
  transform: translateY(20px);
}
.max-25 {
  max-width: 25%;
}

.legal-page-section {
  padding-top: 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    900px 380px at 50% 0%,
    rgba(201, 162, 74, 0.08),
    transparent 65%
  );
}

.legal-kicker {
  font-family: ui-sans-serif, system-ui;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.legal-intro {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.legal-content-section {
  background: #0b0b0b;
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.legal-card-head {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-card-title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.legal-card-body {
  padding: 28px 22px;
}

/* Inhalt vom externen HTML */
.legal-content {
  font-family: ui-sans-serif, system-ui;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  color: #fff;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.legal-content h1:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: #fff;
}

.legal-content hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
}

.legal-content table th,
.legal-content table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  vertical-align: top;
}

.legal-content table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
