/* ===================================================
   leistungen.css – Styles nur für die Leistungen-Seite
   Golden Glanz Service
   =================================================== */

/* ── Nav aktiv ───────────────────────────────────── */
.nav-active {
  color: var(--gold-light) !important;
  font-weight: 700 !important;
}

/* ── Hero ────────────────────────────────────────── */
.l-hero {
  min-height: 52vh;
  background: linear-gradient(160deg, #faf9f6 0%, #f5f0e8 50%, #f0ebe0 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
  text-align: center;
}
.l-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,164,74,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.l-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.l-hero-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.l-hero-inner .badge { margin-bottom: 16px; }
.l-hero-inner h1 { color: #1a1a1a; margin-bottom: 16px; }
.l-hero-inner h1 em { color: var(--gold-dark); font-style: italic; }
.l-hero-inner > p {
  color: rgba(0,0,0,0.6);
  font-size: 1.05rem; margin-bottom: 40px;
}
.l-hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(200,164,74,0.3);
}
.l-hero-stat { text-align: center; }
.l-hero-stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--gold-dark); line-height: 1;
}
.l-hero-stat-lbl {
  display: block;
  font-size: 0.78rem; color: rgba(0,0,0,0.5);
  margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── Filter ──────────────────────────────────────── */
.l-filter {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.l-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}
.l-filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
}
.l-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ── Grid ────────────────────────────────────────── */
.l-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

/* ── Karte ───────────────────────────────────────── */
.l-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.l-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(200,164,74,0.08);
}
.l-card.open {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200,164,74,0.15);
}

/* Oberer Bereich (immer sichtbar) */
.l-card-main {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
}
.l-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(200,164,74,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.l-card-body { flex: 1; min-width: 0; }
.l-card-body h3 {
  font-size: 1.05rem; color: #1a1a1a;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif; font-weight: 700;
}
.l-card-body p {
  font-size: 0.87rem; color: #555550;
  line-height: 1.65; margin-bottom: 12px;
}
.l-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}

/* Toggle-Button */
.l-card-toggle {
  flex-shrink: 0; align-self: flex-start;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(200,164,74,0.08);
  color: var(--gold-light);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  margin-top: 2px;
}
.l-card-toggle:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.l-card.open .l-card-toggle {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.l-toggle-icon {
  font-size: 1.3rem; line-height: 1; font-weight: 300;
  display: block;
}

/* Details (aufklappbar) */
.l-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  border-top: 0px solid transparent;
}
.l-card.open .l-card-details {
  max-height: 500px;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

/* Detail-Inhalt */
.l-detail-list {
  list-style: none; padding: 0; margin: 16px 0 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.l-detail-list li {
  font-size: 0.88rem; color: #444440;
  padding-left: 20px; position: relative;
}
.l-detail-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700; font-size: 0.85rem;
}
.l-detail-ideal {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(200,164,74,0.06);
  border: 1px solid rgba(200,164,74,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.l-detail-ideal strong { color: var(--gold-dark); }
.l-detail-cta {
  display: inline-flex;
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ── CTA Banner ──────────────────────────────────── */
.l-cta-banner {
  background: linear-gradient(135deg, #f8f5ef 0%, #f2ece0 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.l-cta-banner .badge { margin-bottom: 16px; }
.l-cta-banner h2 { color: #1a1a1a; margin-bottom: 14px; }
.l-cta-banner p {
  color: rgba(0,0,0,0.55);
  max-width: 520px; margin: 0 auto 32px;
  font-size: 1rem;
}
.l-cta-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .l-grid { grid-template-columns: 1fr; }
  .l-hero { padding: 120px 0 60px; }
  .l-hero-stats { gap: 28px; }
  .l-cta-banner { padding: 36px 20px; }
  .l-cta-btns { flex-direction: column; align-items: center; }
}
