/*
 Theme Name:     A-DUR Child-Theme
 Theme URI:      http://www.a-dur.at
 Description:    Divi Child-Theme
 Author:         A-DUR
 Author URI:     http://www.a-dur.at
 Template:       Divi
 Version:        1.0.0
*/

html {
  font-size: 16px;
  /* 1rem = 16px */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body:not(.et-fb) .animation,
body:not(.et-fb) .animation-2,
body:not(.et-fb) .animation-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* <- Wichtig! */
}

.animation.animate {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.animation-2.animate {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition-delay: 0.3s !important;
}

.animation-3.animate {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition-delay: 0.6s !important;
}


@media only screen and (max-width: 900px) {
  .animation-2.animate {
    transition-delay: 0s !important;
  }

  .animation-3.animate {
    transition-delay: 0s !important;
  }
}

.page-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.page-fade-in.fade-in-active {
  opacity: 1;
}

a:focus-visible {
  outline: 2px solid white !important;
  box-shadow: 0 0 0 4px black !important;
}

@font-face {
  font-family: 'Montserrat-ExtraBold';
  src: url('fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Medium';
  src: url('fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DancingScript-Regular';
  src: url('fonts/DancingScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.first {
  padding-top: 180px !important;
  margin-top: 0 !important;
}

@media only screen and (max-width: 900px) {
  .first {
    padding-top: 130px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }
}

@media only screen and (min-width: 900px) {
  .first {
    padding-top: 110px !important;
    margin-top: 0 !important;
  }
}

#main-content img {
  background-color: rgba(255, 255, 255, 0);
}

.has-outline {
  outline: 1px solid white;
  outline-offset: -7px;
  z-index: 2;
}

.et_pb_equal_columns>.et_pb_column {
  min-height: 100% !important;
}

.header-background {
  transition: background-color 0.4s ease;
  background-color: transparent;
}

.header-background.scrolled {
  background-color: white;
}

/* RESPONSIVE */
@media only screen and (max-width: 1250px) {
  div.nav-desktop {
    display: none;
  }

  div.nav-mobile {
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
border-radius: 0 0 30px 30px;
    background-color: rgba(253, 245, 231,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #fff;
  }
}

@media only screen and (min-width: 1250px) {
  div.nav-mobile {
    display: none;
  }

  div.nav-desktop {
    padding: 1px 0;
    border-radius: 0 0 30px 30px;
    display: flex;
    background-color: rgba(253, 245, 231,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #fff;
  }
}


.nav-desktop,
.nav-mobile {

  transition: transform 0.4s ease, background-color 0.3s;
  z-index: 9999;
}

/* Wenn versteckt → nach oben rausgeschoben */
.nav-hidden {
  transform: translateY(-140%);
}

.skip-link {
  position: absolute;
  /* aus dem Layout nehmen */
  left: -10000px;
  /* weit außerhalb des Viewports */
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  /* neuere Variante zu clip */
  white-space: nowrap;
  /* Einzeilige Darstellung */
}

/* … und nur auf Tastaturfokus anzeigen */
.skip-link:focus,
.skip-link:focus-visible {
  background-color: white !important;
  position: absolute;
  /* an fixe Stelle bringen */
  left: 0;
  top: 0;
  /* ggf. mit margin-top bei fixed Header verschieben */
  width: auto;
  height: auto;
  color: #000;
  text-decoration: none;
  clip-path: none;
  /* zeigt das Element wieder an */
  z-index: 1000;
  /* überlagert alles */
}

/* LAYOUT */
.nav-desktop-left,
.nav-desktop-middle,
.nav-desktop-right {
  display: flex;
  align-items: center;
}

.nav-desktop-left {
  width: 25%;
  display: flex;
  justify-content: left;
  align-items: center;
}

.nav-desktop-right {
  width: 75%;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: -5px;
}

.nav-desktop-left img {
  margin: 5px 10px -5px 50px;
  max-width: 240px;
}

.nav-desktop-right a {
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: #000;
  gap: 7px;
  text-transform: uppercase;
  font-size: clamp(17px, 2.5vw, 20px);
  transition: transform 0.15s ease;
  font-family: 'Montserrat-Medium' !important;
}

.nav-desktop-right .primary {
  border-radius: 5px;
  padding: 4px 15px;
  font-family: 'Montserrat-ExtraBold' !important;
  background-color: #e22a61!important;

}

.nav-desktop-right .primary:hover {
  background-color: #e6537f!important;
    transform: scale(1);
}

.nav-desktop-right a:hover {
  transform: scale(1.03);
}

.nav-desktop-right button {
  width: 45px;
  height: 45px;
  margin-right: 30px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
      
}


.sprache img {
  transition: opacity 0.2s ease;
}

.sprache:hover img {
  content: url("https://www.asap-log.com/wp-content/uploads/2025/11/dictionary_100dp_AC4108_FILL0_wght200_GRAD0_opsz48.png");
}

.nav-desktop-right a img {
  max-width: clamp(20px, 2.5vw, 25px) !important;
}

/* SUBMENU TOGGLE BUTTON */
.submenu-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
}

.nav-item {
  position: relative;
}

/* Pfeil */
.arrow {
  display: inline-block;
  width: 30px;
  transition: transform 0.3s ease;
}

.submenu-trigger[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

/* Submenü animiert */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #bdf8c9;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
  border-radius: 0 0 20px 20px;
  width: 400px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
}

.submenu.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) {
  .nav-desktop .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Links im Submenü */
.submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px !important;
  border-radius: 0;
  background-color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #bdf8c9;
  transition: background-color 0.3s;
}

.submenu a:last-child {
  border-bottom: none;
}

.submenu a:hover {
  background-color: #bdf8c9;
}

.submenu a img {
  width: 22px;
}

/* Struktur */
.nav-mobile-left {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-mobile-left img {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: -10px;
  width: 160px;
}

.nav-mobile-right {
  padding-top: 5px;
  width: 50%;
  gap: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-mobile-right img {
  width: 40px;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Fokus sichtbar machen */
:focus-visible {
  outline: 2px solid white !important;
  box-shadow: 0 0 0 4px black !important;
}

/* Visually Hidden für Screenreader */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Popup-Grundstruktur */
.nav-popup {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;

  background-color: #f2ead8;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: #f2ead8;

  padding-bottom: 90px;
}

.nav-popup.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition: opacity 0.3s ease;
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
    /* Startposition etwas nach oben verschoben */
  }

  to {
    opacity: 1;
    transform: translateY(0);
    /* Endposition normale Position */
  }
}

.nav-popup-content {
  background-color: #fbf7ed;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  justify-content: center;
  width: 90%;
  text-align: left;
  font-size: clamp(20px, 2vw, 24px);
  display: inline;
  overflow: hidden;
}

.nav-popup-links {
  background-color: #fbf7ed;
}

.nav-popup-content a {
  text-decoration: none !important;
  background-color: #fbf7ed;
  border: none;
  color: black;
  display: block;
  font-size: clamp(20px, 2vw, 24px);
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid black;
}

.nav-popup-content a:nth-child(odd) {
  background-color: #fbf7ed;
}


.nav-popup-content button {
  text-decoration: none !important;
  border: none;
  color: black;
  display: block;
  text-align: left;
  padding: 4px 10px;
  border-radius: 5px;
}

.nav-popup-close {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 5px 0;
  font-size: clamp(20px, 2.5vw, 29px);
}

.logout-mobile div a {
  display: flex;
  justify-content: center;
  align-items: center !important;
  gap: 10px !important;
}

.logout-mobile img {
  width: 30px;
}

.nav-popup-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-popup-links a,
.nav-popup-links button {
  padding: 10px;
  text-align: center;
}

.nav-popup-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-popup-action a {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px;
  background-color: #cda952;
  transition: background-color 0.3s;
  color: rgb(0, 0, 0);
  font-size: clamp(16px, 2.5vw, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-popup-action img {
  max-width: 30px;
  margin-right: 10px;
}

.nav-popup-action:hover {
  background-color: #ffffff;
}

div.button-nav {
  display: flex;
  gap: 20px;
}

.primary {
  border: 0;
  background-color: #007bff !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  font-size: clamp(16px, 2.5vw, 20px) !important;

  color: white !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
    border-radius: 5px;
}

.primary-alt {
  border: 0;
  background-color: #f5692d !important;
  border-radius: 5px;
  color: white !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  font-size: clamp(16px, 2.5vw, 20px) !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

.primary-alt-2 {
  border: 0;
  color: #e32f69 !important;
  font-size: clamp(16px, 2.5vw, 20px) !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

.primary-alt-3 {
  border: 0;
  background-color: #e22a61 !important;
  border-radius: 5px;
  color: white !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  font-size: clamp(16px, 2.5vw, 20px) !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

.primary img {
  max-width: clamp(20px, 2.5vw, 25px) !important;
}

.primary-alt img {
  max-width: clamp(20px, 2.5vw, 25px) !important;
}

.primary-alt-2 img {
  max-width: clamp(20px, 2.5vw, 25px) !important;
}

.primary:hover {
  background-color: #3695fc !important;
}

.primary-alt:hover {
  background-color: #f88e61 !important;
}

.primary-alt-3:hover {
  background-color: #ff1c67 !important;
}

.secondary {
  border: 0;
  background-color: #000 !important;
  color: white !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  border-radius: 5px;
  font-size: clamp(16px, 2.5vw, 20px) !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, margin 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-ExtraBold' !important;
}

.secondary:hover {
  background-color: #6e3105 !important;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
}

.secondary img {
  max-width: clamp(20px, 2.5vw, 25px) !important;
  margin-right: -5px;
}

select:hover,
option:hover {
  border: 1px solid #0d4761 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.wpforms-submit:focus {
  outline: none !important;
}

.wpforms-confirmation-container-full {
  color: #0d4761 !important;
  background-color: #e2f0d9 !important;
}

.et_pb_button {
  text-decoration: none;
}

.et_pb_row {
  width: 90%;
  margin: 0 auto;
  max-width: 1800px;
}

.et_pb_row:first-of-type {
}

.ueber-uns img {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.autor {
  display: flex;
  justify-content: left;
}

.autor .left {
  width: 30%;
  max-width: 200px;
  margin: 0 40px 0 0;
}

.autor img {

  border-radius: 100px;
}

* {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  font-family: 'Montserrat-Medium';
  font-weight: 350;
  color: #000;
}

p,
li,
h5,
span {
  font-size: clamp(15px, 2.5vw, 18px);
  color: #000;
  line-height: 1.6;
  font-family: 'Montserrat-Medium' !important;
}

p.big {
  font-family: 'Montserrat-ExtraBold' !important;
  color: #fff;
  font-size: clamp(22px, 5vw, 33px) !important;
}

p.big-2 {
  font-family: 'Montserrat-ExtraBold' !important;
  color: #fff;
  font-size: clamp(24px, 4vw, 32px) !important;
}



li {
  padding: 5px 0;
}

a {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #000;
  line-height: 1.6;
  text-decoration: underline 1px solid #000;
}

.wp-block-list {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #000 !important;
  line-height: 1.6;
}

.wp-block-list li {
  margin: 10px 0;
}

/* Pfeil-Container rechts */
.arrow-down-2 {
  position: absolute;
  /* wichtig, sonst wirkt right:0 nicht */
  right: -30px;
  /* Abstand vom rechten Rand */
  width: 140px;
  height: auto;
  text-align: right;
  animation: bounce 3s ease-in-out infinite;
}

/* Sanfte Bounce-Animation */
@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 20px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

h1 {
  font-size: clamp(22px, 5vw, 35px) !important;
  color: #fff;
  line-height: 1.3;
  font-family: 'Montserrat-Medium' !important;
  text-transform: uppercase;
}

h1.alt {
  font-size: clamp(28px, 5vw, 40px) !important;
  color: #000;
  line-height: 1.3;
  font-family: 'Montserrat-ExtraBold' !important;
}

h2 {
  font-size: clamp(24px, 4vw, 32px) !important;
  color: #000 !important;
  line-height: 1.4;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(21px, 4vw, 28px) !important;
  color: #000 !important;
  line-height: 1.4;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

h4 {
  font-size: clamp(18px, 3vw, 24px) !important;
  color: #000 !important;
  font-weight: 100;
  font-family: 'Montserrat-ExtraBold' !important;
}

p img {
  width: 23px;
  margin-right: 10px;
  vertical-align: -3px;
}

.productbox,
.productbox-2,
.productbox-3 {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid white;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
}

.productbox .background {
  background: #fff1f3;
  padding: 20px 20px;
}

.productbox-2 .background {
  background: #f7f1fb;
  padding: 20px 20px;
}

.productbox-3 .background {
  background: #fdf8ef;
  padding: 20px 20px;
}

.productbox .hero {
  min-height: 300px;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0.55) 100%),
    url("https://farbrausch-events.at/wp-content/uploads/2026/05/Events-Zentral-in-Wien.jpg");

  background-size: cover;
  background-position: center;
  padding-bottom: 20px;
  position: relative;
}


div.time {
  position: absolute;
  padding: 3px 13px 3px 10px;
  background-color: #ebe0fa;
  border-radius: 0 0 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.productbox .hero div.time {
    background-color: #fde2e9;
}

.productbox-3 .hero div.time {
    background-color: #fdf8ef;
}

div.time img {
  max-width: 25px;
}

.productbox-2 .hero {
    min-height: 300px;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0.55) 100%),
    url("https://farbrausch-events.at/wp-content/uploads/2026/05/Erlebnis-Kreativitaet-ohne-Druck.jpg");

  background-size: cover;
  background-position: center;
  padding-bottom: 20px;
  position: relative;
}

.productbox-3 .hero {
    min-height: 300px;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0.55) 100%),
    url("https://farbrausch-events.at/wp-content/uploads/2026/05/farbrausch-gutschein.webp");

  background-size: cover;
  background-position: center;
  padding-bottom: 20px;
  position: relative;
}



.corner-image {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 200px; /* anpassen */
  height: auto;
  z-index: 2;
}

.productbox p.big
{
  font-size: clamp(24px, 4vw, 28px) !important;
  margin-bottom: -10px!important;
  text-align: center;
  color: #fd2a70 !important;
  font-family: 'Montserrat-ExtraBold' !important;
    text-shadow: none;
    text-transform: uppercase;
}

.productbox-2 p.big {
  font-size: clamp(24px, 4vw, 28px) !important;
    margin-bottom: -10px!important;
  text-align: center;
  color: #432395 !important;
  font-family: 'Montserrat-ExtraBold' !important;
    text-shadow: none;
    text-transform: uppercase;
}

.productbox-3 p.big {
  font-size: clamp(24px, 4vw, 28px) !important;
    margin-bottom: -10px!important;
  text-align: center;
  color: #efa602 !important;
  font-family: 'Montserrat-ExtraBold' !important;
    text-shadow: none;
    text-transform: uppercase;
}

.productbox p,
.productbox-2 p,
.productbox-3 p  {
  text-align: center;
  font-size: clamp(15px, 2.5vw, 18px);
}

.productbox p.slogan-2,
.productbox-2 p.slogan-2,
.productbox-3 p.slogan-2 {
  font-size: clamp(20px, 4vw, 22px) !important;
  color: #000 !important;
  line-height: 1.4;
  text-align: center;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
  margin-bottom: -15px;
  padding-top: 16px;
  margin-top: -6px;
  border-top: 1px solid #dda713;
}

.features {
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;

}

@media (max-width: 600px) {
  .features {
    flex-direction: column;
  }

  .feature {
    flex: 1 1 100%;
  }
}

.feature img {
  width: 50px;
  padding: 5px;
  border-radius: 50px;
  background-color: #fde2e9 !important;
}

.productbox-2 .feature img {
  background-color: #ebe0fa !important;
}

.productbox-3 .feature img {
  background-color: #fbeed5 !important;
}

.feature {
  font-size: clamp(14px, 4vw, 16px) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}


.productbutton a {
  border: 0;
  background-color: #fa4d88 !important;
  padding: 8px 15px;
  font-size: clamp(16px, 2.5vw, 20px) !important;
  width: 100%;
  color: white !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

.productbutton a:hover {
  background-color: #ff1c67 !important;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
}

.productbutton a img {
  max-width: clamp(20px, 2.5vw, 25px) !important;
}

.productbox-2 .productbutton a {
  background-color: #5238a0 !important;
  color: white !important;
}

.productbox-2 .productbutton a:hover {
  background-color: #6339e2 !important;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
}

.productbox-3 .productbutton a {
  background-color: #efa602 !important;
  color: white !important;
}

.productbox-3 .productbutton a:hover {
  background-color: #ffba18 !important;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.card {
  perspective: 1200px;
  height: 340px;
  outline: none;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.card:hover .card-inner,
.card:focus-within .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
}

.card-front {
  background-size: cover;
  background-position: center;
  align-items: flex-end;
}

.card-overlay {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.25),
      transparent);
  color: #fff;
}

.card-overlay h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  color: white !important;
  text-align: center;
}

.card-overlay p {
  margin: 0;
  font-size: 0.95rem;
}

.card-back {
  background: url("https://farbrausch-events.at/wp-content/uploads/2026/02/12.jpeg");
  color: #000!important;
  transform: rotateY(180deg);
  padding: 1.5rem;
  flex-direction: column;
  justify-content: center;
}

.card-back h3 {
  margin-bottom: 0.55rem;
}

.card-back p {
  line-height: 1.5;
  font-size: 1.7rem;
  color: #084474 !important;
  text-align: center;
  font-family: "DancingScript-Regular"!important;
}

/* =========================
   SLIDER CONTAINER
========================= */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

/* =========================
   SLIDER TRACK
========================= */
div.slider {
  display: flex;
  transition: transform 0.5s ease;
  transform: translateX(0);
}

/* =========================
   SLIDE BOX (schmaler)
========================= */
.slide {
  flex: 0 0 40%;
  margin-right: 40px;
  box-sizing: border-box;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
  border: 1px solid white;
}

/* Farbe 1 */
.slide:nth-child(3n + 1) {
  background-color: #fff1f3;
}

/* Farbe 2 */
.slide:nth-child(3n + 2) {
  background-color: #f7f1fb;
}

/* Farbe 3 */
.slide:nth-child(3n) {
  background-color: #fcf7ef;
}
/* =========================
   HEADER (Bild + Name)
========================= */
.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-right: 15px;
}

/* =========================
   TEXT
========================= */
.slide-text {
  padding: 30px;
}

.slide-text p {
  margin: 0;
  line-height: 1.6;
}

/* =========================
   NAVIGATION
========================= */
.navigation {
  margin: 50px auto 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}


button.slider img {
  width: clamp(35px, 5vw, 50px) !important;
  height: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .slide {
    flex: 0 0 80%;
  }

}

@media (max-width: 600px) {
  .slide {
    flex: 0 0 calc(100% - 16px);
    margin-right: 16px;
  }

  .slider {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.review-stars {
  padding: 10px 20px;
  display: flex;
  gap: 0.25rem;
  border-radius: 0 0 10px 0;
}

/* Farbe 1 */
.slide:nth-child(3n + 1) .review-stars {
  background-color: #fdd7e3;
}

/* Farbe 2 */
.slide:nth-child(3n + 2) .review-stars {
  background-color: #e5daf8;
}

/* Farbe 3 */
.slide:nth-child(3n) .review-stars {
  background-color: #fbebcf;
}

.review-stars img {
  width: 24px;
  height: 24px;
}

.wpforms-field-label,
.wpforms-field-medium,
.wpforms-field-large,
.wpforms-field-date-time-time,
.wpforms-field-date-time-date {
  font-size: clamp(0.875rem, 2vw, 1.125rem) !important;
  color: #000000 !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;

}

.wpforms-field-medium,
.wpforms-field-large {
  border: 1px solid black;

}

.wpforms-field-medium:focus,
.wpforms-field-large:focus,
select:focus,
option:focus {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
}

.wpforms-submit {
  color: #ffffff !important;

  background-color: #e22a61 !important;
  padding: 15px 25px !important;
  font-size: clamp(0.875rem, 2vw, 1.125rem) !important;
  margin: 20px auto 0 auto;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background-color 0.3s !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  outline: none !important;
  border-radius: 5px !important;
    font-family: 'Montserrat-ExtraBold' !important;
  text-transform: uppercase;
}

select:hover,
option:hover {
  border: 1px solid #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.wpforms-submit:focus {
  outline: none !important;
}

.wpforms-confirmation-container-full,
.wpforms-submit:hover {
  color: #000000 !important;
}

.hours-container,
.location-container {
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
  background-color: #fbf7ed;
}

.hours-container .title,
.location-container .title {
  display: inline-flex;
  width: fit-content;
  background-color: #084474 !important;
  border-radius: 0 0 10px 0;
  padding: 10px 15px 10px 10px;
}

.location-container .title {
  background-color: #8b0000 !important;
}

.hours-container .title h3,
.location-container .title h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: clamp(18px, 3vw, 24px) !important;
  color: #fff !important;
}

.hours-container .title h3 img,
.location-container .title h3 img {
  width: clamp(24px, 4vw, 32px) !important;
}

.hours-container .text,
.location-container .text {
  padding: 20px 30px;
}

.hours-container .text p,
.location-container .text p {
  line-height: 1;

}

#bm-wrap {
  display: inline-block !important;
  position: relative !important;
  overflow: visible !important;
  line-height: 1.3 !important;
}
#bm-wrap-1 {
  display: inline-block !important;
  position: relative !important;
  overflow: visible !important;
  line-height: 1.3 !important;
}
.bm-base {
  display: block !important;
  position: relative !important;
  z-index: 2 !important;
  text-transform: uppercase;
  font-family: 'Montserrat-ExtraBold' !important;
  font-size: clamp(25px, 5vw, 45px) !important;
  color: #000 !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}
.bm-layer {
  display: block !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  margin: 0 !important; padding: 0 !important;
  text-transform: uppercase;
  font-family: 'Montserrat-ExtraBold' !important;
  font-size: clamp(25px, 5vw, 45px) !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
  pointer-events: none !important;
  overflow: visible !important;
}
#bm-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 100px;
  overflow: visible !important;
}

.faq-accordion {
  border-top: 1px solid #000;
}

.faq-item {
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0 0 0;
  font-family: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000000;
}

.faq-question:focus-visible {
  outline: 2px solid white !important;
  box-shadow: 0 0 0 4px black !important;
}

.faq-icon {
  transition: transform 0.3s ease;
  display: inline-block;
  width: clamp(20px, 3vw, 30px) !important;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  padding: 0 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.faq-answer.open {
  opacity: 1;
  padding: 10px 0 30px 0;
}

.schatten {
  box-shadow: 2px 2px 20px rgba(129, 129, 129, 0.1);
}

.headerbild:first-of-type {
  position: relative;
  overflow: hidden;
}

.headerbild:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.headerbild:first-of-type .et_pb_row {
  position: relative;
  z-index: 2;
}

.anfahrtbox {
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-bottom: 28px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .icon {
        color: #c93b4a;
        width: 50px;
        flex-shrink: 0;
    }

    .content h3 {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 700;
        color: #000;
        text-transform: uppercase;
    }

    .content p {
        margin: 0;
        color: #000;
        line-height: 1.5;
    }

    .badge {
            display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 33px;
    height: 33px;

    font-weight: bold;
    border-radius: 4px;
    color: white;
    margin-right: 4px;
    margin-bottom: 4px;
    }

    .u2 { background: #a25e9d; }
    .u3 { background: #e37500; }

    .booking-detail-box {
        max-width: 700px;
        margin: auto;
        border-top: 1px solid #f1d3cd;
        border-bottom: 1px solid #f1d3cd;
        padding: 25px 0;
        font-family: Arial, sans-serif;
    }

.booking-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 40px;
}

@media (max-width: 768px) {
    .booking-detail-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .booking-detail-box {
        padding: 20px 15px;
    }
}

    .booking-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .booking-detail-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border: 1px solid #f1d3cd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f1d3cd;
        font-size: 16px;
    }

    .booking-detail-text {
        font-size: 15px;
        line-height: 1.4;
        color: #333;
    }

    .booking-detail-text strong {
        display: block;
        font-weight: 600;
    }