@charset "UTF-8";
html .site-title {
  font-family: "Allerta Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 42px;
  text-decoration: none;
  color: #FFF500 !important;
}
html .site-title a {
  font-family: "Allerta Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 42px;
  text-decoration: none;
  color: #FFF500 !important;
}
html .site-main {
  padding: 0 !important;
}

html * {
  box-sizing: border-box;
}
html .widget-area, html .pagination, html .comments-pagination, html .post-navigation, html .site-footer, html .site-header, html .alignwide, html .wide-max-width {
  max-width: 100%;
}
html header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  padding: 50px !important;
  position: absolute;
  z-index: 123;
  width: 100%;
}
html header.site-header:after, html header.site-header:before {
  display: none !important;
}
html header.site-header #site-navigation {
  top: unset !important;
  margin-left: unset !important;
}
html header.site-header #site-navigation ul li a {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 16px;
}
html header.site-header .header-buttons {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}
html header.site-header .header-buttons .header-buchen {
  padding: 7px 18px;
  border-radius: 4px;
  background: #FFF500;
  margin-right: 17px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}
html header.site-header .header-buttons .header-login {
  padding: 7px 18px;
  border-radius: 4px;
  background: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

html {
  /* ───── GELBER BAR ───── */
  /* TAB MIT HALBKREIS */
  /* PFEIL */
  /* TEXT LABEL */
  /* Hover Effekte */
  /* ───── SLIDE PANEL ───── */
}
html #kurs-trigger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #ffdd00;
  transition: 0.3s ease;
  z-index: 9999;
}
html #kurs-trigger:hover {
  height: 28px;
}
html #kurs-trigger .tab {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 70px;
  height: 40px;
  background: #ffdd00;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
}
html #kurs-trigger .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  margin-top: 10px;
  transition: 0.3s;
}
html #kurs-trigger .label {
  position: absolute;
  top: 6px;
  font-size: 14px;
  opacity: 0;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}
html #kurs-trigger:hover .label {
  opacity: 1;
  top: -2px;
}
html #kurs-panel {
  position: fixed;
  top: -720px;
  left: 0;
  width: 100%;
  height: 700px;
  background: #222;
  transition: 0.5s ease;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
}
html #kurs-panel.open {
  top: 0;
}

html .kletterfelsen-form input, html .kletterfelsen-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  line-height: 33px;
  outline: none;
}
html .kletterfelsen-form .four-parts-form p {
  display: flex;
}
html .kletterfelsen-form .four-parts-form p span {
  width: calc(25% - 25px);
  margin-right: 25px;
}
html .kletterfelsen-form .four-parts-form p span:last-child {
  margin-right: 0;
  width: 25%;
}
html .kletterfelsen-form .four-parts-form p input::placeholder {
  color: #000;
  opacity: 1;
  font-weight: 600;
}
@media (max-width: 1024px) {
  html .kletterfelsen-form .four-parts-form p {
    flex-direction: column;
  }
  html .kletterfelsen-form .four-parts-form p span {
    width: 100%;
    margin-right: 0;
  }
  html .kletterfelsen-form .four-parts-form p span:last-child {
    width: 100%;
  }
}
html .kletterfelsen-form .one-part-form {
  margin-top: 35px;
}
html .kletterfelsen-form .one-part-form textarea {
  height: 150px;
}
html .kletterfelsen-form .one-part-form textarea::placeholder {
  color: #000;
  opacity: 1;
  font-weight: 600;
}
html .kletterfelsen-form .form-send {
  margin-top: 35px;
  text-align: center;
}
html .kletterfelsen-form .form-send input[type=submit] {
  background: #000;
  color: #fff;
  border: none !important;
  padding: 15px 75px;
  font-size: 16px;
  line-height: 16px;
}

/* ===================== MOBIL OPTIMIERUNG ===================== */
@media (max-width: 1024px) {
  header.site-header {
    flex-wrap: wrap;
    padding: 20px !important;
    position: relative;
  }
  /* Logo & Title kleiner */
  .site-title,
  .site-title a {
    font-size: 30px !important;
  }
  /* Navigation Vollbreit unter Header */
  html header.site-header #site-navigation {
    width: 100%;
    order: 3;
    margin-top: 15px;
    top: -17px !important;
  }
  #site-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0;
  }
  #site-navigation ul li a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
  }
  /* Buttons unter Navigation */
  .header-buttons {
    order: 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
  }
  .header-buttons a {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 12px;
  }
  .header-buchen {
    margin-right: 0 !important;
  }
}
/* Noch kleinere Geräte */
@media (max-width: 600px) {
  header.site-header {
    padding: 15px !important;
  }
  header .primary-navigation > .primary-menu-container {
    padding-top: 34px;
    height: unset;
  }
  header .primary-navigation > .primary-menu-container #primary-menu-list .menu-item a {
    color: #000;
  }
  .site-title,
  .site-title a {
    font-size: 26px !important;
  }
  .header-buttons a {
    font-size: 14px;
    padding: 5px 18px !important;
  }
  .site-header:not(.has-logo).has-title-and-tagline .site-branding {
    display: block;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
