/*
 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;
}

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

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


.et_pb_section {
  background-color: rgba(255, 255, 255, 0);
}

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

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

@font-face {
  font-family: 'LibreCaslonDisplay';
  src: url('fonts/LibreCaslonDisplay-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: 120px !important;
    padding-bottom: 0 !important;
    margin-top: -20px !important;
  }
  .user-logged-in .first {
    padding-top: 180px !important;
    margin-top: 40px!important;
  }
}

@media only screen and (min-width: 900px) {
  .first {
    padding-top: 180px !important;
    margin-top: -20px !important;
  }
  .user-logged-in .first {
    padding-top: 180px !important;
    margin-top: 40px!important;
  }
}

.et-db #et-boc .et-l .et_pb_row_0_tb_header {
  width: 100%!important;
  max-width: 2000px!important;

}

.et-db #et-boc .et-l .et_pb_section_0_tb_header  {
  padding: 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-container {}

.header-balken {
  display: flex;
  justify-content: space-between;
  background-color: rgba(19, 16, 37, 0.8);
  backdrop-filter: blur(10px);
  max-height: 60px;
  overflow: visible;
  box-shadow: 0 2px 44px rgba(0, 0, 0, 0.06);
}

.header-balken .logo {
  padding: 10px 15px 3px 15px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  position: relative;
  height: 120px;
  box-shadow: 0 2px 44px rgba(0, 0, 0, 0.06);

  background: linear-gradient(to top,
      rgba(19, 16, 37, 0.9) 0px,
      rgba(19, 16, 37, 0.9) 60px,
      rgba(19, 16, 37, 0.5) 60px,
      rgba(19, 16, 37, 0.5) 60px);
}

.header-balken .logo img {
  width: 100px;
  z-index: 1001;
}

@media only screen and (max-width: 900px) {
  .header-balken .logo {
    height: 90px;
    background: #131025;
  }

  .header-balken .logo img {
    width: 70px;
    z-index: 1001;
  }

}

/* --- Overlay --- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #131025;
  /* dunkelblau */
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1000;
  overflow: hidden;
  /* Overlay selbst bleibt fixiert */
}

/* zentriertes Hintergrundbild */
.nav-overlay-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  /* dezente Transparenz */
  pointer-events: none;
  z-index: 0;
  outline: none !important;
}

.nav-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

/* --- Schließen-Button --- */
#nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  width: 50px;
  color: white;
  cursor: pointer;
  z-index: 1002;
}

/* --- Hauptnavigation --- */
.nav-overlay-content {
  display: flex;
  flex-direction: row;
  align-items: space-between !important;
  justify-content: space-between !important;
  gap: 20px;
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  overflow-y: auto;
  /* scrollbarer Bereich */
  max-height: 80vh;
  /* verhindert, dass es zu groß wird */
  scrollbar-width: thin;
  /* für moderne Browser */
  scrollbar-color: #fff #131025;
  /* optional: Gold-Akzent für Scrollbar */
}

.nav-item {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: nowrap !important;

}

@media only screen and (max-width: 1400px) {
  .nav-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px;
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
  }

  .nav-overlay {
    align-items: center;
  }

  .nav-item {
    width: 100%;
  }
}



.nav-main {
  background: none;
  border: none;
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: 10px;
  /* Abstand zwischen Text und Pfeil */
}

.nav-arrow {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

/* Pfeil dreht sich beim Öffnen */
.nav-item.active .nav-arrow {
  transform: rotate(180deg);
}

.nav-main:hover {
  color: #ae9962;
}

.nav-main:hover {
  color: #ebd880;
}

/* Untermenüs */
.nav-submenu {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  animation: fadeIn 0.4s ease forwards;
}

.nav-submenu a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-submenu a:hover {
  color: #ebd880;
}

/* Sichtbares Untermenü */
.nav-item.active .nav-submenu {
  display: flex;
}

/* kleine Einblendanimation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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


/* 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;
    background-color: rgba(216, 216, 216, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  }
}

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

  div.nav-desktop {
    padding: 5px 0;
    display: flex;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 5px;
  }
}

div.nav-desktop:hover {
  background-color: white;
}

.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 {
  position: absolute;
  background-color: white !important;
  /* an fixe Stelle bringen */
  left: 0;
  top: 0;
  /* ggf. mit margin-top bei fixed Header verschieben */
  width: auto;
  height: auto;
  color: #353535;
  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;
}

.nav-desktop-left img {
  margin-top: 15px;
  margin-left: 20px;
  max-width: 130px;
}

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

.nav-desktop-right button {
  width: 47px;
  padding: 2px;
  height: 50px;
  border-radius: 5px;
  margin-right: 24px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-desktop-right button:hover {
  background-color: #ecb68f;
  color: white !important;
}

.nav-desktop-right a.special {
  padding: 2px 10px;
  border-radius: 5px;
  background-color: #353535;
  color: #fff !important;

  margin-left: 4px;
  font-family: 'LibreCaslonText' !important;

}

.nav-desktop-right a:hover {
  color: #914108 !important;
}

.nav-desktop-right a.special:hover {
  background-color: rgb(110, 49, 5) !important;
  color: #fff !important;
}

.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: 10px;
  width: 120px;
}

.header-balken .left {
  width: 20%;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  width: 20%;
}

.nav-mobile-right {
  padding-top: 5px;

  width: 50%;
  gap: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: top;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4);
}

.nav-popup.visible {
  visibility: visible;
  animation: slideIn 0.5s 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: #ffffff;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  justify-content: center;
  width: 100%;
  text-align: left;
  font-size: clamp(20px, 2.5vw, 29px);

  overflow: hidden;
}

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

.nav-popup-content a {
  text-decoration: none !important;
  background-color: #ffffff;
  border: none;
  color: black;
  display: block;
  font-size: clamp(20px, 2.5vw, 29px);
  text-align: left;
  padding: 20px 0;
}

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

.header-nav-login {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav-login a {
  color: white;
}

.nav-popup-content button {
  text-decoration: none !important;
  background-color: #e9e9e9;
  border: none;
  color: black;
  display: block;
  font-size: clamp(20px, 2.5vw, 29px);
  text-align: left;
  padding: 4px 10px;
  border-radius: 5px;
}

.nav-popup-close {
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 20px 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(20px, 2.5vw, 29px);
  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 {
  color: #353535;
  border: 0;
  background-color: #ead77f !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  border-radius: 55px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: 'LibreCaslonText' !important;
}

.karten-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.primary img,
.karten-button img {
  max-width: clamp(20px, 3vw, 30px) !important;
  margin-right: -5px;
}

.primary:hover {
  color: #353535;
  background-color: #f1e6b1 !important;
}

.primary-blue {
  color: #ebd880;
  border: 0;
  background-color: #131025 !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  border-radius: 55px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: 'LibreCaslonText' !important;
}

.primary-blue img {
  max-width: clamp(20px, 3vw, 30px) !important;
  margin-right: -5px;
}

.primary-blue:hover {
  color: #ebd880;
  background-color: #424051 !important;
}

.secondary {
  border: 0;
  color: #131025 !important;
  padding: 4px 15px 4px 15px;
  border-radius: 50px;
  margin-top: -8px;
  cursor: pointer;
  border: 1px solid #7c6935;
  text-decoration: none;
  transition: background-color 0.3s, margin 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: 'LibreCaslonText' !important;
}

.secondary:hover {
  background-color: #f1e6b1 !important;
}

.secondary img {
  max-width: clamp(20px, 3vw, 30px) !important;
}

.tertiary {
  border: 0;
  color: #7c6935 !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, margin 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: 'LibreCaslonText' !important;
}

.tertiary:hover {}

.tertiary img {
  max-width: clamp(20px, 3vw, 30px) !important;
}

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: 1400px;
}

.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(14px, 2vw, 17px);
  line-height: 1.6;
  font-family: 'LibreCaslonText';
  font-weight: 350;
  color: #131025;
}

p,
li,
h5 {
  font-size: clamp(14px, 2vw, 17px);
  color: #131025;
  line-height: 1.6;
  font-family: 'LibreCaslonText' !important;
}

p.header {
  font-family: 'LibreCaslonDisplay' !important;
  color: #fff;
  font-size: clamp(28px, 5vw, 40px) !important;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-top: -40px;
}

@media (max-width: 900px) {
  p.header {
    letter-spacing: 0;
    margin-top: -20px;
  }
}

li {
  padding: 5px 0;
}

a {
  font-size: clamp(14px, 2vw, 17px);
  color: #786610;
  line-height: 1.6;
  transition: color 0.3s;
}

a:hover {
  color: rgb(206, 182, 63);
}

h1 {
  font-size: clamp(33px, 5vw, 45px) !important;
  color: #131025;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
}

h1.white {
  color: #fff !important;
}

h1.gold {
  color: #EBD880;
}

h1.header {
  font-size: clamp(50px, 6vw, 90px) !important;
  color: #fff;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
  text-align: center;
  margin-top: 30vh;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  color: #131025;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
}

h2 a {
  font-size: clamp(28px, 4.5vw, 40px) !important;
  color: #131025;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
}

.post-meta a,
.post-content p {
  color: #131025 !important;
}

h2.white {
  font-size: clamp(28px, 4.5vw, 40px) !important;
  color: white;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
}

.startseite-konzert h2 {
  font-size: clamp(28px, 4.5vw, 40px) !important;
  color: #fff;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
  transition: color 0.3s;
}

h3 {
  font-size: clamp(22px, 4vw, 28px) !important;
  color: #131025;
  line-height: 1.4;
  font-weight: 100 !important;
  font-family: 'LibreCaslonDisplay' !important;
}

h3 a {
  font-size: clamp(22px, 4vw, 28px) !important;
}

h4 {
  font-size: clamp(20px, 3vw, 28px) !important;
  color: #131025;
  font-weight: 100;
  font-family: 'LibreCaslonText' !important;
}

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

ul li {
  margin-left: 10px;
}



.rounded span img {
  border-radius: 30px !important;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #fff;
  font-family: sans-serif;
}

.link-item {
  display: flex;
  justify-content: space-between;
  /* Text links, Pfeil rechts */
  align-items: center;
  /* alles auf einer Linie */
  text-decoration: none;
  color: inherit;
  padding: 1.5rem 0;
  /* mehr Abstand, da Titel in Border sitzt */
  border-top: 2px solid #353535;
  position: relative;
}

.link-item-2 {
  display: flex;
  justify-content: space-between;
  /* Text links, Pfeil rechts */
  align-items: center;
  /* alles auf einer Linie */
  text-decoration: none;
  color: inherit;
  padding: 0;
  /* mehr Abstand, da Titel in Border sitzt */
  position: relative;
}


.link-content {
  flex: 1;
  /* nimmt den Platz links ein */
  max-width: 80%;
}

/* Titel im Border "drin" */
.link-title {
  margin: 0;
  padding-right: 20px;
  display: inline-block;
  position: relative;
  top: -2.9rem;
  /* zieht die Überschrift in die Border */
  color: #353535 !important;
  background-color: #e9e9e9;
}

.link-text {
  margin: -35px 0 20px 0;
  color: #353535 !important;
}

.link-text-2 {
  padding: 5px 0 0 0;
  color: #353535 !important;
  font-family: 'LibreCaslonDisplay' !important;
}

.link-arrow {
  padding-top: 10px;
  max-width: 80px;
  transition: transform 0.3s ease;
}

/* Hover + Fokus-Effekt */
.link-item-2:hover .link-arrow,
.link-item-2:focus .link-arrow,
.link-item:hover .link-arrow,
.link-item:focus .link-arrow {
  transform: translateX(8px);
}

/* Fokus sichtbar */
.link-item:focus-visible {
  outline: 2px solid #353535;
  outline-offset: 4px;
}

.tags {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.tags div {
  background-color: rgba(255, 255, 255, 0.8);
  color: #353535 !important;
  padding: 1px 10px;
  border-radius: 5px;
  font-family: 'LibreCaslonDisplay' !important;
}

.heading-line {
  position: relative;
  display: block;
  margin: 20px 0;
}

.heading-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px solid #fff;
  /* garantiert weiße Linie */
  transform: translateY(-50%);
  z-index: 1;
}

.heading-line h3 {
  display: inline-block;
  margin: 0;
  position: relative;
  background: #000;
  /* gleiche Hintergrundfarbe wie span */
  padding-right: 20px;
  padding-top: 10px;
  font-family: 'LibreCaslonDisplay' !important;
  z-index: 2;
  color: white;
  line-height: 1.2;
  /* verhindert, dass Text höher wirkt als nötig */
}

.heading-line-alt {
  position: relative;
  display: block;
  margin: 0 0 -20px 0;
}

.heading-line-alt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px solid #0e213a;
  /* garantiert weiße Linie */
  transform: translateY(-50%);
  z-index: 1;
}

.heading-line-alt h3 {
  display: inline-block;
  margin: 0;
  position: relative;
  background: #fff;
  /* gleiche Hintergrundfarbe wie span */
  padding-right: 20px;
  padding-top: 10px;
  font-family: 'LibreCaslonDisplay' !important;
  z-index: 2;
  color: white;
  line-height: 1.2;
  /* verhindert, dass Text höher wirkt als nötig */
}

hr {
  max-width: 250px;
  background: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(235, 216, 128, 0) 100%);
  height: 1px;
  border: none;
  margin: 0 0 40px 0;
  display: block;
  transition: background 0.3s;
}

hr.blue {
  max-width: 100px;
  background: rgba(126, 107, 56, 0.5);
  ;
  height: 1px;
  border: none;
  margin: 40px auto;
  display: block;
  transition: background 0.3s;
}

hr.active {
  background: #EBD880;
  background: linear-gradient(90deg, rgba(235, 216, 128, 1) 0%, rgba(235, 216, 128, 0) 100%);
}

div.startseite-konzert {
  display: flex;
  align-items: center;
  color: #fff !important;

}

div.startseite-konzert * {
  color: #fff;
}

div.startseite-konzert .left {
  width: 10%;
  align-self: center;
  height: 100%;
  display: flex;
  align-items: center;
}

div.startseite-konzert .left img {
  padding-top: 10px;
  width: 60px;
  cursor: pointer;
}

div.startseite-konzert .right {
  width: 90%;
  padding-bottom: 20px;
}

.startseite-konzert .titel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Standard: Alles zu außer Titel */
.startseite-konzert .right div.info {
  display: none;
}

/* Nur der Titel bleibt sichtbar */
.startseite-konzert .right h2 {
  cursor: pointer;
}

/* Geöffnetes Element zeigt alles */
.startseite-konzert.active .right div.daten {
  display: block;
  font-size: clamp(16px, 2.5vw, 24px);
}

/* Pfeil-Standard (eingeklappt) */
.startseite-konzert .left img {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

/* Pfeil bei aktivem Element gedreht */
.startseite-konzert.active .left img {
  transform: rotate(180deg);
}

.startseite-konzert.active div.info {
  display: flex !important;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

div.daten {
  display: flex !important;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

div.daten {
  color: #fff;
}

div.daten img {
  width: 30px;
}

div.datum,
div.ort {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.startseite-konzert.active h2 {
  color: #ebd880;
}

a.karten-button {
  background-color: #ebd880;
  border: 1px solid #ebd880;
  padding: 3px 18px;
  border-radius: 50px;
  color: #131025 !important;
  transition: background-color 0.3s;
}

a.karten-button:hover {
  background-color: #f1e6b1;
}

div.infoseite-konzert {
  display: flex;
  align-items: center;
  color: #fff;
  padding-bottom: 20px;
}


div.infoseite-konzert * {
  color: #fff;
}

div.infoseite-konzert a {
  color: #ebd880;
}


.infoseite-konzert h2 {
  color: #ebd880;
}


div.infoseite-konzert .right {
  padding-bottom: 0;
  margin: 0;
  width: 100%;
}

div.zusatzinfos {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

div.zusatzinfos div {
  width: 40%;
}

@media only screen and (max-width: 900px) {
  div.zusatzinfos div {
    width: 100%;
  }
}

div.zusatzinfos p {
  padding-bottom: 10px;
}

div.zusatzinfos ul {
  padding-bottom: 10px;
}

.infoseite-konzert div.info {
  display: flex !important;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.infoseite-konzert div.daten {
  width: 60%;
  gap: 20px;
}

@media (max-width: 900px) {
  .infoseite-konzert div.daten {
    margin-top: 20px;
    width: 100%;
    gap: 20px;
  }

  .infoseite-konzert div.info {
    gap: 40px;
  }

}

.break-slogan {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  min-height: 250px;
}

.break-slogan .background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background-image: url('https://aov.a-dur.com/wp-content/uploads/2023/01/Logo-Gold-Small.png');
  background-size: contain;
  /* alles sichtbar */
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  /* dezent im Hintergrund */
  z-index: -1;
}

.break-slogan p {
  color: #131025;
  font-size: clamp(28px, 4.5vw, 36px) !important;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
  text-align: center;
}

.break-slogan-2 p {
  color: #131025;
  font-size: clamp(28px, 4.5vw, 36px) !important;
  line-height: 1.3;
  font-family: 'LibreCaslonDisplay' !important;
  text-align: center;
}


.break-slogan .blur {
  backdrop-filter: blur(2px);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.bg-left {
  background-color: #F6F6F6;
  background: linear-gradient(90deg, #F6F6F6 0%, rgba(255, 255, 255, 1) 100%);
}

.bg-right {
  background-color: #FFFFFF;
  background: linear-gradient(270deg, #F6F6F6 0%, rgba(255, 255, 255, 1) 100%);
}

hr.first-bar {
  background: #786610;
  margin: -1px auto 0 auto;
  height: 1px;
  z-index: 5;
  position: relative;
  width: 100%;
  max-width: none;
}

.schatten {
  box-shadow: 0 0 44px rgba(0, 0, 0, 0.06);
  position: relative;
}

.corner>.corner-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Linien */
.corner>.corner-svg path {
  fill: none;
  stroke: rgba(126, 107, 56, 0.5);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.entry-content ul.ccchildpages_list li::marker {
  color: #b8b8b8;
}

.em-locations-list {
  line-height: 2.5;
}

div.kurzportrait {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

div.kurportrait figure {
  flex-shrink: 0;
  /* verhindert, dass das Bild verkleinert wird */
}


.kurzportrait img {
  height: auto;
  max-width: 173px;
  /* oder die tatsächliche Bildbreite */
  width: auto;
  /* sicherstellen, dass kein Stretch passiert */
  display: block;
}

/* Text soll flexibel Platz nutzen */
.kurzportrait>div {
  flex: 1 1 300px;
  /* kann sich anpassen, bricht bei wenig Platz */
  min-width: 250px;
  /* sorgt dafür, dass er bei zu wenig Platz umbrecht */
}

.footer-nav * {
  color: #131025;
}

.footer-nav-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* statt space-between */
  gap: 20px;
  /* kleineres, gleichmäßiges Gap */
  margin: 0 auto;
}

.footer-item {
  flex: 1 1 150px;
  /* kleinere Basisbreite */
  min-width: 150px;
  max-width: 250px;
  /* optional, um zu breite Spalten zu vermeiden */
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .footer-nav-content {
    flex-direction: column;
    gap: 10px;
    /* kompaktere Abstände */
  }

  .footer-item {
    width: 100%;
    flex: none;
  }
}

.footer-main {
  display: block;
  color: #131025;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 1.3rem;
}

.footer-main:hover {
  color: #ae9962;
  /* Deine Logofarbe */
}

.footer-submenu {
  gap: 5px;
}

.footer-submenu a {
  display: block;
  color: #131025;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-submenu a:hover {
  color: #ae9962;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .footer-nav-content {
    flex-direction: column;
    gap: 30px;
  }
}

footer .quick-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

@media (max-width: 900px) {
  footer .quick-links {
    margin-top: -20px;
    justify-content: center;
  }
}

footer .quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .quick-links a img {
  width: 30px;
}

.content-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 5px;
  padding: 4px 20px;
  border: 1px solid #c2b9a1;
  box-shadow: 0 0 44px rgba(0, 0, 0, 0.06);
  background-color: white;
}

.content-nav a {
  padding: 4px 13px;
}

.content-nav a.active {
  color: #131025 !important;
}

.probenplan h2 {
  padding: 20px 0 10px 0;
}

table {
  margin: 10px 0 !important;
}

.entry-content table:not(.variations) {
  border: none !important;
}

.entry-content tr td {
  border-top: 1px solid #ebe4d1;
}

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

.faq-item {
  border-bottom: 1px solid #131025;
  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: #131025;
}

.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;
}

h3.yotu-video-title {
  font-size: clamp(13px, 2vw, 16px) !important;
  color: #131025 !important;
  line-height: 1.6 !important;
  font-family: 'LibreCaslonText' !important;
}

.yotu-pagination-next,
.yotu-button-prs {
  background-color: white !important;
  color: #131025 !important;
  padding: 4px 10px 4px 10px !important;
  border-radius: 50px !important;
  margin-top: -8px !important;
  cursor: pointer !important;
  border: 1px solid #7c6935 !important;
  border-color: #7c6935 !important;
  text-decoration: none !important;
  transition: background-color 0.3s, margin 0.3s !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  font-family: 'LibreCaslonText' !important;
  font-size: clamp(16px, 2.5vw, 20px) !important;
}

.yotu-button-prs:hover {
  background-color: #f1e6b1 !important;
}

.yotu-pagination {
  font-size: clamp(16px, 2.5vw, 20px) !important;
}

.yotu-wrapper-player {
  margin-bottom: 40px !important;
}


.yotu-videos {
  margin-top: 40px !important;
}

.igsv-table th,
.igsv-table td {
  padding: 4px 10px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left !important;
}

.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap input {
  width: 100% !important;
  border-color: #e5e5e5;
}

.wpcf7-submit {
  color: #353535;
  border: 0;
  background-color: #ead77f !important;
  padding: 4px 15px;
  margin: 4px 0 0 0;
  border-radius: 55px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: 'LibreCaslonText' !important;
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 5px;
}

.em-events-list .wp-block-columns {
  padding-bottom: 60px !important;
}

.tabcontent {
  border-color: #e5e5e5 !important;
}

.tabcontent {
  margin-top: 10px !important;
}

.responsive-tabs__list__item {
  color: #131025 !important;
  padding: 9px !important;
}

.responsive-tabs__list__item--active {
  border: 1px solid #7c6935 !important;
  border-radius: 50px !important;
  padding: 9px !important;

}

.aovcard {
  background-color: white !important;
  box-shadow: none !important;
}

input {
  margin: 2px 0 !important;
  border: 1px solid #c2b9a1 !important;
}

textarea {
  border: 1px solid #c2b9a1 !important;
}

/* Eingeloggt */
.user-logged-in .not-loggedin {
  display: none !important;
}

/* Ausgeloggt */
.user-logged-out .loggedin {
  display: none !important;
}




.et_pb_search {
  padding: 20px;
}

.et_pb_searchform {
  position: relative;
}

.et_pb_searchform .et_pb_s {
  border: 2px solid #ff6600;
  border-radius: 30px;
  padding: 10px 40px 10px 15px;
  /* Platz rechts für Icon */
  width: 100%;
}

.et_pb_searchsubmit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 30px;

  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;

  cursor: pointer;

  /* Text verstecken */
  color: transparent !important;
  text-indent: -9999px;
  overflow: hidden;

  /* ICON */
  background-image: url('https://aov.a-dur.com/wp-content/uploads/2026/04/search_100dp_131025_FILL0_wght300_GRAD0_opsz48.png');
  background-size: 20px 20px;
  /* FIX */
  background-repeat: no-repeat;
  background-position: center;

  z-index: 10;
  /* WICHTIG */
}

.pagination {
  text-align: center;
  margin-top: 40px;
}

/* Container etwas luftiger */
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  text-decoration: none;
  font-size: 14px;
}

/* Standard Seitenzahlen (Kreise) */
.pagination .page-numbers:not(.next):not(.prev):not(.dots) {
  width: 40px;
  height: 40px;
  border: 1px solid #7c6935;
  border-radius: 50%;
  color: #131025;
  transition: all 0.2s ease;
}

/* Hover Effekt */
.pagination .page-numbers:not(.current):not(.dots):hover {
  background: #f1e6b1;
}

/* Aktive Seite */
.pagination .current {
  background: #f1e6b1;
}

/* Punkte (...) */
.pagination .dots {
  border: none;
  width: auto;
}

/* Weiter / Zurück Button */
.pagination .next,
.pagination .prev {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #7c6935;
  background: transparent;
  color: #131025;
}

/* Hover für Weiter */
.pagination .next:hover,
.pagination .prev:hover {
  background: #f1e6b1;
}

div.corner {
  padding: 40px!important;
}

@media (max-width: 900px) {
  div.corner {
    padding: 0 !important;
    box-shadow: none !important;
  }
  div.schatten {
    padding: 0 !important;
    box-shadow: none !important;
  }
  .corner>.corner-svg {
    width: 0;
    height: 0;
  }
  .corner>.corner-svg path { 
    stroke: white;
  }
}

.startseite-beitraege h3,
.archiv-beitraege h3 {
  margin-bottom: 50px !important;
  font-size: clamp(28px, 4.5vw, 40px) !important;
  text-align: center;
}

.startseite-beitraege .wp-block-columns {
  align-items: center!important;
}

.startseite-beitraege h3 span.title {
    font-weight: 100!important;
}

.startseite-beitraege h2,
.archiv-beitraege h2 {
  text-align: center;
}

.startseite-beitraege hr {
  display: none;
}

.startseite-beitraege a.primary, .startseite-beitraege a.secondary {
  margin: 15px 0;
}

.startseite-beitraege div.content,
.archiv-beitraege .post-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

td:first-child {
  padding-right: 10px;
}

.brlbs-cmpnt-cb-btn {
  background-color: #ead77f!important;
}

.brlbs-cmpnt-cb-btn:hover {
  color: #131025!important;
  background-color: #f1e6b1!important;
}

.borlabs-cookie-open-dialog-preferences a {
  color: #131025!important;
}

/* ==================================================
   CONTACT FORM 7 – KOMBINIERTER STABILER MASTER CSS
   Für Ticketformular + Mitgliederformular
================================================== */

/* =========================
   Grundfelder
========================= */

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  margin: 2px 0 !important;
  border: 1px solid #c2b9a1 !important;
  padding: 6px !important;
  box-sizing: border-box !important;
  max-width: 100%;
}

.wpcf7 textarea {
  resize: vertical;
}

/* =========================
   Größenklassen
========================= */

.cf7onethird {
  width: 30% !important;
  display: inline-block !important;
  vertical-align: top !important;
}

.cf7twothird {
  width: 68% !important;
  display: inline-block !important;
  vertical-align: top !important;
}

.cf7fourty {
  width: 40% !important;
  display: inline-block !important;
  vertical-align: top !important;
}

.cf7twenty {
  width: 20% !important;
  display: inline-block !important;
  vertical-align: top !important;
}

.cf7fullsize {
  width: 100% !important;
  display: block !important;
}

/* =========================
   Absätze allgemein
========================= */

.wpcf7-form p {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  margin-bottom: 12px !important;
}

/* Wrapper */
.wpcf7-form-control-wrap {
  padding-left: 0 !important;
  vertical-align: middle !important;
}

/* =========================
   Radio Buttons allgemein
========================= */

.wpcf7-radio {
  padding-left: 15px !important;
}

.wpcf7-list-item {
  display: inline-block !important;
  margin: 0 15px 0 0 !important;
  padding-top: 0 !important;
}

.wpcf7-list-item-label {
  display: inline-block !important;
  vertical-align: middle !important;
  margin-left: 5px !important;
}

input[type="radio"] {
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

/* =========================
   Acceptance Checkbox
========================= */

.wpcf7-acceptance label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.wpcf7-acceptance input[type="checkbox"] {
  width: auto !important;
  margin-top: 4px !important;
  flex-shrink: 0 !important;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

/* ==================================================
   MITGLIEDERERHEBUNG
   Formular ID 5624
================================================== */

#wpcf7-f5624-o1 p {
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  clear: both !important;
}

#wpcf7-f5624-o1 ul {
  margin: 0 !important;
  padding-left: 22px !important;
}

#wpcf7-f5624-o1 li {
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
}

#wpcf7-f5624-o1 li p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

#wpcf7-f5624-o1 .wpcf7-list-item {
  margin: 0 14px 0 10px !important;
}

/* ==================================================
   TICKETFORMULAR
   Formular ID 2475
================================================== */

#wpcf7-f2475-o1 table {
  width: 100%;
  border-collapse: collapse;
}

#wpcf7-f2475-o1 td {
  padding: 6px 0 !important;
  vertical-align: top;
}

#wpcf7-f2475-o1 td p {
  margin: 0 0 6px 0 !important;
}

#wpcf7-f2475-o1 tr {
  border-bottom: 1px solid #eee;
}

#wpcf7-f2475-o1 tr:last-child {
  border-bottom: none;
}

#wpcf7-f2475-o1 input[type="number"] {
  width: 70px !important;
  margin-right: 8px !important;
}

#wpcf7-f2475-o1 td input[type="text"] {
  width: 320px !important;
}