/* ==========================================================
   Feminists United – Stylesheet
   Farben: Pink #D15FA0 · Rot #C51A19 · Weiß #FFFFFF
   Design: Glassmorphism auf animiertem Farbverlauf
   ========================================================== */

:root {
  --pink: #D15FA0;
  --red: #C51A19;
  --white: #FFFFFF;
  --pink-light: #FFD3EA;
  --pink-dark: #A94580;
  --ink: #2B0A1E;
  --radius: 18px;
  --glass-bg: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(43, 10, 30, 0.25);
  --font-head: "Archivo Black", "Arial Black", Impact, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--pink-dark);
  line-height: 1.6;
}

/* Animierter Farbverlauf als fixe Hintergrund-Ebene
   (zuverlässiger als background-attachment: fixed, v. a. mobil) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(130deg, var(--red), var(--pink), var(--pink-dark), var(--red));
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
}

img { max-width: 100%; display: block; }

a { color: var(--white); }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ---------- Keyframes ---------- */

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.94); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg) scale(1.04); }
  75% { transform: rotate(3deg) scale(1.04); }
}

/* Scroll-Reveal (Klassen werden per JS gesetzt) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(43, 10, 30, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  transition: transform 0.2s;
}

.logo:hover { transform: scale(1.04) rotate(-1deg); }

.logo .fu-feminists { color: var(--white); }
.logo .fu-united { color: var(--pink-light); }

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-light);
  border-color: var(--pink-light);
}

.nav-toggle {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(43, 10, 30, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.7rem 0; }
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: floatBlob 12s ease-in-out infinite;
}

.hero-blobs span:nth-child(1) {
  width: 22rem; height: 22rem;
  left: -6rem; top: -4rem;
  background: radial-gradient(circle, var(--pink-light), transparent 70%);
}

.hero-blobs span:nth-child(2) {
  width: 18rem; height: 18rem;
  right: -4rem; top: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  animation-delay: -4s;
}

.hero-blobs span:nth-child(3) {
  width: 16rem; height: 16rem;
  left: 30%; bottom: -6rem;
  background: radial-gradient(circle, var(--red), transparent 70%);
  animation-delay: -8s;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(43, 10, 30, 0.3);
  animation: fadeUp 0.8s ease both;
}

.hero .motto {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 46rem;
  margin: 1.4rem auto 0;
  font-weight: 600;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero .motto .rage {
  font-family: var(--font-head);
  text-transform: uppercase;
  display: block;
  font-size: 1.25em;
  margin-bottom: 0.4rem;
  color: var(--pink-light);
}

.hero .cities {
  margin-top: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

/* ---------- Slogan-Laufband ---------- */

.marquee {
  background: var(--ink);
  padding: 0.85rem 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 10px 30px rgba(43, 10, 30, 0.35);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 2.8rem;
  padding-right: 2.8rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.marquee-group span:nth-child(odd) { color: var(--pink-light); }
.marquee-group span:nth-child(even) { color: var(--white); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--glass-shadow); }

.btn-white { background: var(--white); color: var(--red); animation: pulse 2.6s ease-in-out infinite; }
.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-outline-white:hover { background: var(--white); color: var(--red); }
.btn-red { background: var(--red); color: var(--white); }

/* ---------- Sektionen ---------- */

.section { padding: 4.5rem 0; }

.section-head { text-align: center; margin-bottom: 2.8rem; }

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 3px 3px 0 rgba(43, 10, 30, 0.25);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--white), var(--pink-light));
  transform: rotate(-2deg);
}

.section-head p {
  margin-top: 0.8rem;
  color: var(--pink-light);
  font-weight: 600;
}

.events-note {
  text-align: center;
  font-weight: 600;
  color: var(--pink-light);
}

.events-note a { color: var(--white); }

/* ---------- Glas-Karten (gemeinsame Basis) ---------- */

.event-card,
.about-card,
.post-card,
.product-card,
.article,
.gallery-card,
.faq-item,
.contact-card,
.location-card,
.feed-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.event-card:hover,
.about-card:hover,
.post-card:hover,
.product-card:hover,
.gallery-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 44px rgba(43, 10, 30, 0.35);
}

/* ---------- Termine ---------- */

.events {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.event-card {
  padding: 1.4rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.event-date {
  background: var(--white);
  color: var(--red);
  border-radius: 12px;
  text-align: center;
  padding: 0.55rem 0.85rem;
  min-width: 4.2rem;
  font-family: var(--font-head);
  line-height: 1.15;
  box-shadow: 0 4px 14px rgba(43, 10, 30, 0.25);
}

.event-date .day { font-size: 1.5rem; display: block; }
.event-date .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.event-info h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }

.event-info .meta {
  font-size: 0.9rem;
  color: var(--pink-light);
  font-weight: 600;
}

.event-info .city-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  margin-top: 0.5rem;
}

/* ---------- Über uns ---------- */

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-card {
  border-top: 6px solid var(--pink-light);
  padding: 1.8rem;
}

.about-card:nth-child(2) { border-top-color: var(--white); }
.about-card:nth-child(3) { border-top-color: var(--red); }

.about-card h3 {
  font-family: var(--font-head);
  color: var(--pink-light);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

/* ---------- Social ---------- */

.social-section { text-align: center; }

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  color: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover { animation: wiggle 0.45s ease; box-shadow: 0 14px 38px rgba(43, 10, 30, 0.4); }
.social-btn svg { width: 1.35rem; height: 1.35rem; fill: currentColor; }
.social-btn.tiktok { background: var(--ink); }
.social-btn.instagram { background: linear-gradient(45deg, var(--red), var(--pink)); }

/* ---------- Social Feeds (TikTok & Instagram) ---------- */

/* Je Plattform eine Reihe über die volle Breite – die Beiträge
   selbst ordnen sich darin automatisch neu an. */
.feed-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 3rem;
  text-align: left;
}

.feed-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow: hidden;
}

/* Der Kopf der Karte ist der Link zum Profil */
.feed-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--white);
  border-radius: 14px;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.feed-head:hover,
.feed-head:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.feed-head:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.feed-head-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--pink-light);
  transition: transform 0.2s ease;
}

.feed-head:hover .feed-head-arrow { transform: translateX(4px); }

.feed-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(43, 10, 30, 0.3);
}

.feed-badge svg { width: 1.4rem; height: 1.4rem; fill: var(--white); }
.feed-badge.tiktok { background: var(--ink); }
.feed-badge.instagram { background: linear-gradient(45deg, var(--red), var(--pink)); }

.feed-title h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.feed-handle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-light);
}

.feed-body { position: relative; min-width: 0; }

/* TikTok: Videos hochkant im 9:16-Format, passen sich der Breite an */
.feed-videos {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.feed-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(43, 10, 30, 0.45);
  box-shadow: 0 8px 24px rgba(43, 10, 30, 0.3);
}

.feed-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ältere Browser ohne aspect-ratio */
@supports not (aspect-ratio: 9 / 16) {
  .feed-video { height: 0; padding-bottom: 177.78%; }
}

/* Auf kleineren Geräten lieber zwei große Beiträge als eine endlos
   lange Karte – der Rest ist einen Tipp entfernt („Alle ansehen“). */
@media (max-width: 900px) {
  .feed-videos > :nth-child(n + 3),
  .feed-posts > :nth-child(n + 3) { display: none; }
}

/* Tablet: zwei Beiträge nebeneinander */
@media (min-width: 560px) and (max-width: 900px) {
  .feed-videos { grid-template-columns: repeat(2, 1fr); }
}

/* Handy: ein Beitrag über die volle Breite */
@media (max-width: 559px) {
  .feed-videos,
  .feed-posts { grid-template-columns: 1fr; }
}

.feed-posts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

/* Instagram setzt eigene Inline-Styles (u. a. min-width: 326px) –
   die müssen wir überschreiben, sonst sprengen die Beiträge das Raster. */
.feed-posts .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.feed-more {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--pink-light);
  text-decoration: none;
}

.feed-more:hover { text-decoration: underline; }

/* Zwei-Klick-Lösung: Einwilligung vor dem Laden */
.feed-consent,
.feed-empty {
  background: rgba(43, 10, 30, 0.35);
  border: 1px dashed var(--glass-border);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  text-align: center;
}

.feed-consent-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--pink-light);
  margin-bottom: 0.6rem;
}

.feed-consent-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.feed-consent-text a { color: var(--pink-light); }

.feed-consent-btn { border: none; font-size: 0.95rem; }

.feed-consent-remember {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.feed-consent-remember input { accent-color: var(--red); cursor: pointer; }

.feed-consent-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-light);
  text-decoration: none;
}

.feed-consent-link:hover { text-decoration: underline; }

.feed-empty p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
}

.feed-footnote {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--pink-light);
  text-decoration: underline;
  cursor: pointer;
}

.link-btn:hover { color: var(--white); }

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-banner {
  height: 10px;
  background: linear-gradient(90deg, var(--pink-light), var(--white), var(--pink-light));
}

.post-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }

.post-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--pink-light);
  margin-bottom: 0.5rem;
}

.post-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; line-height: 1.35; }

.post-body p { flex: 1; color: rgba(255, 255, 255, 0.88); }

.post-link {
  margin-top: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
}

.post-link:hover { text-decoration: underline; color: var(--pink-light); }

/* ---------- Shop ---------- */

.shop-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  background: rgba(255, 255, 255, 0.22);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-image svg { width: 70%; height: 70%; transition: transform 0.3s ease; }

.product-card:hover .product-image svg { transform: scale(1.08) rotate(-2deg); }

.product-body { padding: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.product-body h3 { font-size: 1.05rem; }

.product-body .desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); flex: 1; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.price { font-family: var(--font-head); color: var(--white); font-size: 1.15rem; }

.add-to-cart {
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.add-to-cart:hover { background: var(--ink); color: var(--white); transform: scale(1.06); }

/* ---------- Warenkorb ---------- */

.cart-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(43, 10, 30, 0.4);
  z-index: 60;
  transition: transform 0.2s;
}

.cart-fab:hover { transform: scale(1.06) rotate(-2deg); }

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100%);
  background: rgba(43, 10, 30, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  box-shadow: -12px 0 40px rgba(43, 10, 30, 0.45);
  transform: translateX(105%);
  transition: transform 0.3s ease;
  z-index: 70;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.cart-panel.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(90deg, var(--pink), var(--red));
  color: var(--white);
}

.cart-header h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; }

.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.cart-item .qty-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-item button {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  width: 1.6rem;
  height: 1.6rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
}

.cart-item button:hover { background: rgba(255, 255, 255, 0.35); }

.cart-empty { color: rgba(255, 255, 255, 0.6); text-align: center; margin-top: 2rem; }

.cart-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.cart-footer .btn { width: 100%; text-align: center; }

.cart-note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.7rem; text-align: center; }

/* ---------- Newsletter / CTA ---------- */

.cta {
  text-align: center;
  padding: 4rem 0;
}

.cta .container {
  background: rgba(43, 10, 30, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 3rem 1.5rem;
}

.cta h2 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 0.8rem;
  text-shadow: 3px 3px 0 rgba(43, 10, 30, 0.25);
}

.cta p { max-width: 38rem; margin: 0 auto 1.6rem; color: rgba(255, 255, 255, 0.9); }

/* ---------- Footer ---------- */

.site-footer {
  background: rgba(43, 10, 30, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--pink-light);
  margin-bottom: 0.8rem;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.45rem; }

.footer-grid a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
}

.footer-grid a:hover { opacity: 1; color: var(--pink-light); }

.footer-motto { font-style: italic; opacity: 0.85; font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Blog-Artikel (Einzelseite) ---------- */

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.2rem, 4vw, 3rem);
}

.article h1 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 0.8rem;
  text-shadow: 3px 3px 0 rgba(43, 10, 30, 0.25);
}

.article .post-meta { margin-bottom: 1.6rem; }

.article p { margin-bottom: 1.1rem; color: rgba(255, 255, 255, 0.92); }

.article h2 {
  font-family: var(--font-head);
  color: var(--pink-light);
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
}

.back-link:hover { color: var(--pink-light); }

/* ---------- Galerie (This is us) ---------- */

.gallery-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-card svg,
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 1.1rem 1.3rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  flex: 1;
}

/* Durchlaufende Bildergalerie (Demos & Aktionen) */

.demo-gallery {
  margin-top: 1.8rem;
  overflow: hidden;
  border-radius: var(--radius);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.demo-gallery-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: demo-gallery-scroll 40s linear infinite;
}

.demo-gallery:hover .demo-gallery-track { animation-play-state: paused; }

.demo-gallery-track img {
  height: 220px;
  width: auto;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  flex-shrink: 0;
}

@keyframes demo-gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .demo-gallery-track { animation: none; }
}

/* ---------- Community-Angebote ---------- */

/* ---------- Kontakt ---------- */

/* Oben die E-Mail-Karte über die volle Breite, darunter die drei
   gleich großen Info-Karten. */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.8rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2.5rem;
}

.contact-card-text { flex: 1 1 20rem; }

.contact-card h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card p { color: rgba(255, 255, 255, 0.9); }

.contact-card-action {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
}

/* Die Adresse selbst ist anklickbar – und bricht auf schmalen Displays um */
.contact-mail {
  font-family: var(--font-head);
  font-size: clamp(1rem, 3.2vw, 1.35rem);
  color: var(--pink-light);
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
}

.contact-mail:hover { color: var(--white); text-decoration: underline; }

.contact-card .btn { text-align: center; border: none; }

.location-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.location-card { padding: 1.8rem; }

.location-card h3 {
  font-family: var(--font-head);
  color: var(--pink-light);
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.location-card p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item { overflow: hidden; }

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { background: rgba(255, 255, 255, 0.12); }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--pink-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  animation: fadeUp 0.35s ease;
}

/* ---------- Rechtliches ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal section {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-family: var(--font-head);
  color: var(--pink-light);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.legal h3 {
  font-family: var(--font-head);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 1.6rem 0 0.6rem;
}

.legal p { color: rgba(255, 255, 255, 0.9); margin-bottom: 0.8rem; }

.legal code {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0.1rem 0.4rem;
  font-size: 0.9em;
}

.legal a { color: var(--pink-light); }

.legal .placeholder {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .hero h1, .hero .motto, .hero .cities, .hero-actions { animation: none; }
  .hero-blobs span { animation: none; }
  .marquee-track { animation: none; }
  .btn-white { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
