
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


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

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(139,50,152,0.35); }
  70%  { box-shadow: 0 0 0 10px rgba(139,50,152,0); }
  100% { box-shadow: 0 0 0 0   rgba(139,50,152,0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}


.page-hero .eyebrow {
  animation: slideInLeft 500ms ease both;
}

.page-hero h1 {
  animation: fadeUp 560ms 80ms ease both;
}

.page-hero p:not(.eyebrow) {
  animation: fadeUp 560ms 160ms ease both;
}

/* Startseiten-Hero */
.hero .eyebrow  { animation: slideInLeft 500ms ease both; }
.hero h1        { animation: fadeUp 600ms 60ms ease both; }
.hero .claim    { animation: fadeUp 560ms 140ms ease both; }
.hero-actions   { animation: fadeUp 560ms 220ms ease both; }
.hero-media img {
  animation: scaleIn 700ms 100ms ease both;
}


.main-nav a {
  position: relative;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}


.btn {
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 200ms ease;
}

.btn:hover::after  { background: rgba(255,255,255,0.10); }
.btn:active::after { background: rgba(255,255,255,0.18); }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(98,33,115,0.28);
}

.btn:active {
  transform: translateY(0);
}

/* Pulsierender Effekt auf primärem CTA-Button */
.btn-primary {
  animation: pulse-ring 2.8s ease 2s 3;
}


/* Hinweis: Hover-Effekt für .service-item und .service-icon hier bewusst
   nicht übernommen - wurde auf Wunsch für die Startseite entfernt. */

/* Detail-Cards (Service-Seite) */
.detail-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(139,50,152,0.14);
  border-color: rgba(139,50,152,0.3);
}


.contact-method {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(28,18,34,0.10);
  border-color: var(--purple);
}

.method-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1);
}

.method-icon svg {
  width: 18px;
  height: 18px;
}

.contact-method:hover .method-icon {
  transform: scale(1.12) rotate(-6deg);
}

@media (min-width: 720px) {
  .method-icon {
    width: 42px;
    height: 42px;
  }
  .method-icon svg {
    width: 22px;
    height: 22px;
  }
}



.map-shell {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.map-shell:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(28,18,34,0.15);
}

.map-pin {
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1);
}

.map-shell:hover .map-pin {
  transform: translateX(-50%) translateY(-6px) scale(1.15);
}


/* Hinweis: Hover-/Active-Effekt für .social-card hier bewusst nicht
   übernommen - wurde auf Wunsch entfernt. */



.rental-media img {
  transition: transform 400ms ease, filter 400ms ease;
  filter: drop-shadow(0 14px 22px rgba(22,13,27,0.14));
}

.rental-media:hover img {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 24px 34px rgba(22,13,27,0.22));
}


.oh-row {
  transition: background 160ms ease;
}

.oh-row:hover {
  background: var(--soft);
}


.site-footer nav a {
  position: relative;
  transition: color 160ms ease;
}

.site-footer nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-footer nav a:hover { color: var(--purple-dark); }
.site-footer nav a:hover::after { transform: scaleX(1); }


.review-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(28,18,34,0.10);
}

/* Fact-Zahlen leuchten beim Laden */
.fact-number {
  transition: color 300ms ease;
}



.value-row {
  transition: border-left-color 200ms ease, padding-left 200ms ease, background 200ms ease;
}

.value-row:hover {
  border-left-color: var(--purple);
  padding-left: 26px;
  background: var(--soft);
}



.text-link {
  transition: color 160ms ease, gap 160ms ease;
}

.text-link:hover {
  color: var(--purple);
}



.cat-pill {
  transition: background 160ms ease, border-color 160ms ease,
              color 160ms ease, transform 160ms ease;
}

.cat-pill:hover {
  transform: translateY(-2px);
}

.cat-pill.is-active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139,50,152,0.25);
}



.finder-input {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.finder-input:focus {
  transform: translateY(-1px);
}



.campaign-empty {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.campaign-empty:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28,18,34,0.09);
}


.team-photo-img {
  transition: box-shadow 300ms ease;
}

.team-photo-img:hover {
  box-shadow: 0 28px 64px rgba(28,18,34,0.2);
}

.about-visual {
  transition: box-shadow 300ms ease;
}

.about-visual:hover {
  box-shadow: 0 32px 72px rgba(28,18,34,0.22);
}


/* Hinweis: .thanks-box ist jetzt offen gestaltet (kein Kasten mehr) -
   der Hover-Lift-Effekt wurde deshalb bewusst entfernt. */

.detail-grid .detail-card:nth-child(1) { transition-delay: 0ms; }
.detail-grid .detail-card:nth-child(2) { transition-delay: 60ms; }
.detail-grid .detail-card:nth-child(3) { transition-delay: 120ms; }
.detail-grid .detail-card:nth-child(4) { transition-delay: 180ms; }
.detail-grid .detail-card:nth-child(5) { transition-delay: 240ms; }
.detail-grid .detail-card:nth-child(6) { transition-delay: 300ms; }

.service-list .service-item:nth-child(1) { transition-delay: 0ms; }
.service-list .service-item:nth-child(2) { transition-delay: 80ms; }
.service-list .service-item:nth-child(3) { transition-delay: 160ms; }

.social-grid .social-card:nth-child(1) { transition-delay: 0ms; }
.social-grid .social-card:nth-child(2) { transition-delay: 60ms; }
.social-grid .social-card:nth-child(3) { transition-delay: 120ms; }
.social-grid .social-card:nth-child(4) { transition-delay: 180ms; }

.reviews-grid .review-card:nth-child(1) { transition-delay: 0ms; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 80ms; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 160ms; }

.values-list .value-row:nth-child(1) { transition-delay: 0ms; }
.values-list .value-row:nth-child(2) { transition-delay: 50ms; }
.values-list .value-row:nth-child(3) { transition-delay: 100ms; }
.values-list .value-row:nth-child(4) { transition-delay: 150ms; }
.values-list .value-row:nth-child(5) { transition-delay: 200ms; }
.values-list .value-row:nth-child(6) { transition-delay: 250ms; }
