/* ============================================================
   YES! YOUR EVENT SCOUT – MESSEHOSTESSEN.COM.DE
   EINHEITLICHES STYLESHEET – v3.0
   Autoren: YES! Your Event Scout SEO-Team
   Stand: 2025
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Farben */
  --pink:           #F77B9B;
  --pink-dark:      #e55c80;
  --pink-light:     rgba(247,123,155,0.12);
  --pink-border:    rgba(247,123,155,0.3);

  /* Dunkel-Theme */
  --dark:           #111111;
  --dark-card:      #181818;
  --dark-2:         #1a1a1a;
  --dark-border:    #222222;
  --dark-border-2:  #2a2a2a;

  /* Hell-Theme */
  --white:          #ffffff;
  --gray-light:     #f9f9f9;
  --gray-mid:       #f4f4f4;
  --border-light:   #eeeeee;
  --border-mid:     #e8e8e8;

  /* Text */
  --text-dark:      #111111;
  --text-body:      #333333;
  --text-muted:     #666666;
  --text-faint:     #999999;
  --text-white:     rgba(255,255,255,0.85);
  --text-white-mid: rgba(255,255,255,0.6);
  --text-white-low: rgba(255,255,255,0.4);

  /* Typografie */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  /* Abstände */
  --section-pad:    80px 0;

  /* Schatten */
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.08);
  --shadow-pink:    0 8px 30px rgba(247,123,155,0.25);
  --shadow-pink-lg: 0 16px 40px rgba(247,123,155,0.15);

  /* Radien */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      10px;
  --radius-xl:      12px;

  /* Übergänge */
  --trans:          all 0.3s ease;
  --trans-fast:     all 0.15s ease;
}

/* ============================================================
   2. RESET & BASIS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pink);
  text-decoration: none;
  transition: var(--trans-fast);
}

a:hover {
  color: var(--pink-dark);
}

ul, ol {
  list-style: none;
}

section {
  padding: var(--section-pad);
}

/* ============================================================
   3. TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p:last-child { margin-bottom: 0; }

/* ============================================================
   4. UTILITY KLASSEN
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
  display: block;
}

.section-label--white {
  color: var(--text-white-low);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.sec-title--white {
  color: var(--white);
}

.sec-title--pink {
  color: var(--pink);
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-pink {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--trans);
  box-shadow: var(--shadow-pink);
  cursor: pointer;
}

.btn-pink:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(247,123,155,0.4);
}

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-white);
  padding: 15px 30px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--trans);
  background: transparent;
}

.btn-outline-white:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  border: none;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--trans);
  font-size: 0.95rem;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  color: var(--pink-dark);
}

.btn-gold {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.93rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 6px 20px rgba(247,123,155,0.3);
}

.btn-gold:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--trans);
}

.navbar-custom .logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-custom .logo span {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-item > a,
.nav-links > a {
  color: #222;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

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

.nav-item > a i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.nav-item:hover > a i {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 16px 0 8px;
  z-index: 200;
  margin-top: 0;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: #fef2f5;
  color: var(--pink);
}

.nav-dropdown .dropdown-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 0;
}

.nav-dropdown .dropdown-all {
  font-weight: 700;
  color: var(--pink) !important;
}

.nav-btn {
  background: var(--pink) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  margin-left: 8px;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.nav-btn:hover {
  background: var(--pink-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  color: #333;
  padding: 6px 10px;
  cursor: pointer;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 65% 40%, rgba(247,123,155,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(247,123,155,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink-border);
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-white-mid);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.25s ease both;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-checks li i {
  color: var(--pink);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-white-low);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.jobs-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  animation: fadeUp 0.6s 0.45s ease both;
}

.jobs-link:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   8. SEDCARD / PROFILE GRID
   ============================================================ */
.profiles-section {
  background: var(--gray-light);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1.25rem;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(247,123,155,0.15);
  border-color: var(--pink-border);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.profile-info {
  padding: 0.9rem;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.profile-sub {
  font-size: 0.78rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.profile-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  height: 3.2rem;
  overflow: hidden;
}

.btn-sedcard {
  display: block;
  text-align: center;
  background: var(--pink-light);
  color: var(--pink);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px;
  text-decoration: none;
  transition: var(--trans);
}

.btn-sedcard:hover {
  background: var(--pink);
  color: var(--white);
}

/* ============================================================
   9. LEISTUNGEN CARDS
   ============================================================ */
.leistungen-section {
  background: var(--white);
}

.leistung-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.leistung-card:hover {
  border-color: rgba(247,123,155,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink-lg);
}

.leistung-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.leistung-card:hover::after {
  transform: scaleX(1);
}

.leistung-icon {
  width: 56px;
  height: 56px;
  background: var(--pink-light);
  border: 1px solid rgba(247,123,155,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.leistung-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.leistung-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.leistung-link {
  font-size: 0.84rem;
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.leistung-link:hover {
  color: var(--pink-dark);
}

/* ============================================================
   10. BUCHUNGSPROZESS
   ============================================================ */
.prozess-section {
  background: var(--dark-card);
}

.prozess-step {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--dark-2);
  border: 1px solid var(--dark-border-2);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: var(--trans);
}

.prozess-step:hover {
  border-color: var(--pink-border);
  transform: translateY(-3px);
}

.prozess-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(247,123,155,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prozess-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.prozess-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.prozess-step span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   11. STÄDTE GRID
   ============================================================ */
.staedte-section {
  background: var(--gray-light);
}

.stadt-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.stadt-card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(247,123,155,0.12);
}

.stadt-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.stadt-card:hover::before {
  transform: scaleX(1);
}

.stadt-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stadt-sub {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.stadt-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--pink);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.stadt-card:hover .stadt-arrow {
  opacity: 1;
}

/* ============================================================
   12. MESSEN SECTION (DUNKEL)
   ============================================================ */
.messen-section {
  background: var(--dark);
}

.messe-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border-2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
}

.messe-card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(247,123,155,0.15);
}

.messe-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.messe-card:hover::before {
  transform: scaleX(1);
}

.messe-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.messe-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.messe-card-sub {
  font-size: 0.82rem;
  color: #666;
}

.messe-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--pink);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.messe-card:hover .messe-card-arrow {
  opacity: 1;
}

/* ============================================================
   13. 5 GRÜNDE / VORTEILE
   ============================================================ */
.gruende-section {
  background: var(--gray-light);
}

.gruende-list {
  list-style: none;
  padding: 0;
}

.gruende-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.gruende-list li:last-child {
  border-bottom: none;
}

.gruende-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  min-width: 32px;
  margin-top: 2px;
}

.gruende-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.gruende-text span {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ============================================================
   14. VORAUSSETZUNGEN
   ============================================================ */
.voraus-section {
  background: var(--white);
}

.voraus-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--trans);
  margin-bottom: 1rem;
}

.voraus-item:hover {
  border-color: var(--pink-border);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(247,123,155,0.08);
}

.voraus-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.voraus-body strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.voraus-body span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   15. SEO TEXTSEKTIONEN
   ============================================================ */
.seo-section       { background: var(--dark-card); }
.seo-section-light { background: var(--white); }
.seo-section-gray  { background: var(--gray-light); }

.seo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
}

.seo-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--dark-border), transparent);
}

.seo-divider-light {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* Dark variant */
.seo-text h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.seo-text h2:first-child { margin-top: 0; }

.seo-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.75rem;
  margin-top: 1.75rem;
}
.seo-text h3:first-child { margin-top: 0; }

.seo-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.seo-text a {
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(247,123,155,0.4);
  transition: color 0.2s;
}
.seo-text a:hover { color: var(--white); border-color: var(--pink); }

.seo-text ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
}
.seo-text ul li {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.65;
}
.seo-text ul li i { color: var(--pink); flex-shrink: 0; margin-top: 4px; }

/* Light variant */
.seo-text-light h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.seo-text-light h2:first-child { margin-top: 0; }

.seo-text-light h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.75rem;
  margin-top: 1.75rem;
}
.seo-text-light h3:first-child { margin-top: 0; }

.seo-text-light p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.seo-text-light a {
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(247,123,155,0.4);
}
.seo-text-light a:hover { color: var(--pink-dark); }

.seo-text-light ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
}
.seo-text-light ul li {
  font-size: 0.93rem;
  color: #555;
  padding: 5px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.65;
}
.seo-text-light ul li i { color: var(--pink); flex-shrink: 0; margin-top: 4px; }

/* ============================================================
   16. FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--white);
}

.faq-accordion .faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.faq-accordion .faq-header {
  background: #e8f4f4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  transition: background 0.2s;
}

.faq-accordion .faq-header:hover {
  background: #d9ebeb;
}

.faq-accordion .faq-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2c6d6d;
  font-family: var(--font-body);
}

.faq-accordion .faq-header .faq-icon {
  color: #2c6d6d;
  transition: transform 0.3s;
}

.faq-accordion .faq-header.open .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion .faq-body {
  display: none;
  padding: 20px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
}

.faq-accordion .faq-body.show {
  display: block;
}

/* ============================================================
   17. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--pink);
  padding: 60px 0;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

/* ============================================================
   18. STADTLINKS
   ============================================================ */
.stadtlinks-section {
  background: var(--gray-light);
}

.stadtlink-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: #444;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.stadtlink-item:hover {
  color: var(--pink);
}

.stadtlink-item i {
  color: var(--pink);
  font-size: 0.8rem;
}

/* ============================================================
   19. TIMELINE
   ============================================================ */
.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--pink);
  min-width: 48px;
  line-height: 1;
  margin-top: 3px;
}

.timeline-text strong {
  display: block;
  font-size: 0.97rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.timeline-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 60px 0 30px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}

.footer-logo span {
  color: var(--white);
}

.footer-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #444;
}

.footer-bottom a {
  color: #444;
  text-decoration: none;
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: var(--pink);
}

/* ============================================================
   21. BREADCRUMB
   ============================================================ */
.breadcrumb-wrap {
  background: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  margin-top: 60px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-list a:hover { color: var(--pink); }

.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 6px;
  color: #ccc;
}

.breadcrumb-list li:last-child {
  color: var(--pink);
  font-weight: 600;
}

/* ============================================================
   22. STORY / ÜBER UNS SECTION
   ============================================================ */
.story-section {
  background: var(--white);
}

.story-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--pink-light);
  border: 1px solid var(--pink-border);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  text-align: center;
  flex-shrink: 0;
}

.story-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.story-badge .badge-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

.story-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}


/* ============================================================
   23. ANIMATIONEN
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}