@charset "UTF-8";
.wp-block-buttons {
  position: relative;
  z-index: 100;
}
.wp-block-buttons .wp-block-button__link {
  padding: 0.8rem 1rem;
  border: 2px solid var(--rh--color--ci--secondary);
  background: transparent;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
}
.wp-block-buttons .wp-block-button__link:hover {
  background: transparent;
  border: 2px solid var(--rh--color--ci--secondary);
}
.wp-block-buttons .wp-block-button__link:hover::after {
  width: 100%;
}
.wp-block-buttons .wp-block-button__link::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--rh--color--ci--secondary);
}
@media (min-width: 1024px) {
  .wp-block-buttons .wp-block-button__link {
    padding: 1rem 2rem;
    font-size: 1.7rem;
  }
}
@media (min-width: 1250px) {
  .wp-block-buttons .wp-block-button__link {
    padding: 1.2rem 3rem;
    font-size: 1.9rem;
  }
}

/* CSS Fly-in-Animation für alle Elemente */
.fly-in-element {
  opacity: 0;
}
.fly-in-element.visible {
  animation: fly-in 1s ease-in-out;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .fly-in-element.visible {
    animation: none;
    opacity: 1;
  }
}
@media all and (-ms-high-contrast: none) {
  .fly-in-element {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes fly-in {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header .header-widget {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  line-height: 1.4;
}
.header .header-widget .widget:nth-child(-n+2) {
  white-space: nowrap;
}
.header .header-widget .wp-block-columns {
  gap: 0.2rem;
}
.header .header-widget .wp-block-columns #oeffnungszeiten {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  position: absolute !important;
  overflow: hidden;
  transition: none;
  width: 1px;
}
@media (min-width: 350px) {
  .header .header-widget .wp-block-columns {
    gap: 1rem;
  }
}
.header .header-widget .rh-opening-hours__item--term {
  font-weight: 700;
  width: auto;
}
@media (min-width: 500px) {
  .header .header-widget {
    font-size: 1.5rem;
  }
  .header .header-widget .widget:nth-child(1) {
    position: absolute;
    left: 2rem;
    top: 1rem;
  }
  .header .header-widget .widget:nth-child(2) {
    position: absolute;
    right: 2rem;
    left: auto;
    top: 1rem;
  }
}
@media (min-width: 840px) {
  .header .header-widget .widget:nth-child(-n+2) {
    top: 2rem;
  }
}

.site-footer {
  margin-block-start: 0;
}