/* Shared UI Styles (Buttons etc.)
   Scope: Scroll-to-Top Button – einheitlich auf allen Seiten
*/

#scroll-to-top {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(201,169,106,0.35);
  background-image: linear-gradient(145deg, rgba(201,169,106,0.9), rgba(230,126,34,0.85));
  box-shadow: 0 10px 24px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.12) inset;
  width: 3.25rem; height: 3.25rem;
}
#scroll-to-top i { transition: transform 200ms ease; }
#scroll-to-top:hover i { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  #scroll-to-top i { transition: none; }
}

/* Hero-Bereich "aus dem Holzofen" CTA */
.hero-claim {
  position: relative;
  display: inline-block;
  border-radius: 9999px;
  isolation: isolate;
  transform-style: preserve-3d;
  animation: heroBob 7s ease-in-out infinite;
}

.hero-claim__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.5rem;
  border-radius: inherit;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(87,60,38,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16), 0 0 0 2px rgba(255,255,255,0.25) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.hero-claim__label {
  color: #5b3b27;
  letter-spacing: 0.01em;
}


.hero-claim:hover,
.hero-claim:focus-within {
  animation-play-state: paused;
}

@keyframes heroBob {
  0% { transform: translateY(0); }
  25% { transform: translateY(-2px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

/* Icon & Text Effekte */
.woodfire-icon { color: #D4AF37; }

.woodfire-highlight {
  background: linear-gradient(135deg, #D4AF37 0%, #B8892D 40%, #8A6B1F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

@keyframes woodfirePulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

.woodfire-badge {
  animation: woodfirePulse 2.2s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(230,126,34,0.25));
}

@media (prefers-reduced-motion: reduce) {
  .hero-claim { animation: none; }
  .woodfire-badge { animation: none; }
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.route-item {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  padding: 1.2rem 1.3rem 1.25rem;
}

.route-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 169, 106, 0.22), rgba(233, 138, 59, 0.18));
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: -1;
}

.route-item:hover::before,
.route-item:focus-within::before {
  opacity: 1;
}



.route-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.route-item__title {
  font-size: 1.4rem;
  color: #fdfbf5;
  letter-spacing: 0.01em;
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fefcf7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.route-link:hover,
.route-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(233, 180, 104, 0.92);
  border-color: rgba(233, 180, 104, 0.95);
  color: #14231d;
}

.route-meta {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.route-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(158deg, rgba(17, 31, 26, 0.92), rgba(28, 48, 40, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fdfdfb;
  font-size: 0.84rem;
  letter-spacing: 0.012em;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 200ms ease;
}

.route-meta-row:hover,
.route-meta-row:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.23);
}

.route-meta-row i {
  font-size: 0.95rem;
  color: rgba(233, 180, 104, 0.98);
}

.route-meta-row span {
  font-weight: 600;
  color: #fdfdfb;
}
{{ ... }}

@media (max-width: 767px) {
  .route-grid {
    grid-template-columns: 1fr;
{{ ... }}

  .route-item {
    padding: 1rem 1.05rem 1.1rem;
  }
}
