@charset "UTF-8";
/*
Theme Name: Bauer Theme 2025
Description: Theme zugeschnitten auf das Architekturbüro Bauer in Weikersheim
Author: Moritz Mair und Max Ploner
Author URI: https://www.moritzmair.de
Version: 1.2
*/
/* All fonts */
@font-face {
  font-family: "Source Sans 3";
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/source_sans_pro/WOFF2/TTF/SourceSans3-ExtraLight.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/source_sans_pro/WOFF2/TTF/SourceSans3-Light.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/source_sans_pro/WOFF2/TTF/SourceSans3-Regular.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/source_sans_pro/WOFF2/TTF/SourceSans3-It.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/source_sans_pro/WOFF2/TTF/SourceSans3-Semibold.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/source_sans_pro/WOFF2/TTF/SourceSans3-Bold.ttf.woff2") format("woff2");
}
/* Reserve space for scrollbar to prevent layout shift */
html {
  scrollbar-gutter: stable;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Contact page */
.contact-form {
  padding: 40px 0 60px 0;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form .message-section {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.contact-form .contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #333;
  border-radius: 0;
  background: transparent;
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 300;
}

.contact-form textarea {
  resize: none;
  min-height: 450px;
  line-height: 1.6;
  padding-top: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
  font-weight: 300;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #000;
  border-bottom-width: 2px;
}

.contact-form label {
  display: none;
}

.contact-form .section-title {
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #333;
}

.contact-form .consent-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 15px 0 25px 0;
  color: #333;
  font-weight: 300;
}

.contact-form .consent-text a {
  color: #000;
  text-decoration: underline;
  font-weight: 400;
}

.contact-form .wpcf7-submit {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 14px 50px;
  font-size: 16px;
  cursor: pointer;
  align-self: flex-end;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.contact-form .wpcf7-submit:hover {
  background-color: #000;
  color: #fff;
}

/* Contact Form 7 - Spinner */
.contact-form .wpcf7-spinner {
  background-color: #000;
  opacity: 0.8;
  margin: 10px 0 0 15px;
  vertical-align: middle;
}

.contact-form .wpcf7-spinner::before {
  background-color: #fff;
}

.contact-form .wpcf7-form p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-form .wpcf7-checkbox {
  display: none;
}

/* Contact Form 7 - Response Messages */
.contact-form .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 300;
  text-align: left;
  border: 1px solid #333;
  background-color: transparent;
  color: #333;
}

.contact-form form.sent .wpcf7-response-output {
  border-color: #000;
  color: #000;
}

.contact-form form.failed .wpcf7-response-output,
.contact-form form.aborted .wpcf7-response-output,
.contact-form form.spam .wpcf7-response-output,
.contact-form form.invalid .wpcf7-response-output,
.contact-form form.unaccepted .wpcf7-response-output,
.contact-form form.payment-required .wpcf7-response-output {
  border-color: #e00024;
  color: #e00024;
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e00024;
  margin-top: 5px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .contact-form {
    flex-direction: column;
    gap: 40px;
    padding: 20px 0 40px 0;
  }
  
  .contact-form .message-section,
  .contact-form .contact-details {
    flex: 1;
    width: 100%;
  }
  
  .contact-form textarea {
    min-height: 350px;
  }
  
  .contact-form .wpcf7-submit {
    width: 100%;
  }
}
/* Job Application Form */
.job-application-form {
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.job-application-form .section-title {
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
}

.job-application-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.job-application-form input,
.job-application-form textarea,
.job-application-form select {
  width: 100%;
  padding: 2px 0;
  border: none;
  border-bottom: 1px solid #333;
  border-radius: 0;
  background: transparent;
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
}

.job-application-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 20px;
  padding-right: 30px;
}

.job-application-form textarea {
  resize: none;
  min-height: 200px;
  line-height: 1.6;
  padding-top: 20px;
}

.job-application-form input::placeholder,
.job-application-form textarea::placeholder,
.job-application-form select::placeholder {
  color: #888;
  font-weight: 300;
  font-size: 16px;
}

.job-application-form input:focus,
.job-application-form textarea:focus,
.job-application-form select:focus {
  outline: none;
  border-bottom-color: #000;
  border-bottom-width: 2px;
}

.job-application-form label {
  display: none;
}

.job-application-form .file-upload-section {
  padding: 15px 0;
}

.job-application-form .file-label {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #333;
}

.job-application-form .file-label small {
  font-size: 13px;
  color: #888;
}

.job-application-form .required-note {
  font-size: 13px;
  color: #888;
  font-weight: 300;
  margin: 0;
}

.job-application-form .wpcf7-submit {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 14px 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.03em;
  align-self: flex-end;
}

.job-application-form .wpcf7-submit:hover {
  background-color: #000;
  color: #fff;
}

.job-application-form .wpcf7-spinner {
  background-color: #000;
  opacity: 0.8;
  margin: 10px 0 0 15px;
  vertical-align: middle;
}

.job-application-form .wpcf7-spinner::before {
  background-color: #fff;
}

.job-application-form .wpcf7-form p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.job-application-form .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 300;
  text-align: left;
  border: 1px solid #333;
  background-color: transparent;
  color: #333;
}

.job-application-form form.sent .wpcf7-response-output {
  border-color: #000;
  color: #000;
}

.job-application-form form.failed .wpcf7-response-output,
.job-application-form form.invalid .wpcf7-response-output {
  border-color: #e00024;
  color: #e00024;
}

.job-application-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e00024;
  margin-top: 5px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .job-application-form {
    padding: 20px 0;
  }
  
  .job-application-form textarea {
    min-height: 150px;
  }
  
  .job-application-form .wpcf7-submit {
    width: 100%;
  }
}


.contact-map {
  padding-bottom: 100px;
}

/* Navbar */
.header-whiteBackground {
  background: white none repeat scroll 0% 0%;
  padding-bottom: 1em;
}

nav.header {
  transition: padding-bottom 0.2s ease, padding-top 0.2s ease;
  padding: 35px 0 35px 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  overflow: visible;
}

nav.header .navbar-header {
  position: relative;
  width: 100%;
  height: 35px;
  overflow: visible;
}

nav.header .navbar-header .navbar-brand {
  width: 300px;
  padding: 0;
  position: absolute;
  bottom: 1px;
  right: calc(50vw - 150px);
  height: 35px;
  max-width: 50vw;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

nav.header .navbar-header .navbar-brand img {
  max-height: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Burger Menu Button */
.burger-menu-toggle {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 1002;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  will-change: transform;
}

.burger-menu-toggle .burger-line {
  width: 30px;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  overflow: visible;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-content {
  width: 100%;
  max-width: 800px;
  padding: 0 50px;
}

/* Overlay Menu Items */
.overlay-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50%;
  transform: translateX(-50%);
}

.overlay-menu-items li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-overlay.active .overlay-menu-items li {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.active .overlay-menu-items li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .overlay-menu-items li:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .overlay-menu-items li:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .overlay-menu-items li:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .overlay-menu-items li:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.active .overlay-menu-items li:nth-child(6) { transition-delay: 0.35s; }

.overlay-menu-items li a {
  font-family: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: black;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
  text-align: center;
}

.overlay-menu-items li a:hover {
  color: #e00024;
  text-decoration: none;
}

ul.overlay-menu-items .current-menu-item a,
ul.overlay-menu-items .current-page-ancestor a {
  color: #e00024;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .burger-menu-toggle {
    right: 20px;
  }

  nav.header .navbar-header .navbar-brand {
    right: 25vw;
  }

  .menu-overlay-content {
    padding: 0 40px;
  }

  .overlay-menu-items {
    margin-left: 0;
    transform: none;
    align-items: center;
  }

  .overlay-menu-items li a {
    font-size: 28px;
  }
}
/* Privacy policy panel */
.privacy-policy-panel {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  width: 90vw;
  z-index: 10;
  left: 5vw;
}
.privacy-policy-panel p {
  float: left;
}
.privacy-policy-panel button#accept-privacy-policy {
  float: right;
  color: #000;
  background-color: #fff;
  border-color: #000;
}
.privacy-policy-panel button#accept-privacy-policy:hover, .privacy-policy-panel button#accept-privacy-policy:active, .privacy-policy-panel button#accept-privacy-policy:focus {
  color: #000;
  background-color: #eee;
  border-color: #000;
}
.privacy-policy-panel.conditions_accepted {
  display: none;
}

/* Referenzen Overview */
.coverimage {
  position: relative;
}
.coverimage a img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.category-selection {
  text-align: center;
  margin: 50px 0;
  position: fixed;
  top: 45px;
  left: 0;
  min-height: 80px;
  width: 100%;
  z-index: 1000;
  background-color: white;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding-bottom: 12px;
}

.category-selection.hidden-above {
  transform: translateY(calc(-100% - 105px));
}

.category-selection ul {
  padding: 12px 20px !important;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 25px;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.category-selection ul li {
  font-weight: 300;
  font-size: 1.1em;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-selection ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.category-selection ul li a:hover {
  color: #e00024;
  text-decoration: none;
}

.category-selection ul li.active a {
  color: #e00024;
  text-decoration: none;
}

@media (max-width: 768px) { 
  .category-selection.hidden-above {
    transform: translateY(calc(-100% - 70px));
  }
  
  .category-selection ul {
    gap: 6px 15px;
  }
  
  .category-selection ul li {
    font-size: 0.95em;
  }
}

.projekte-section {
  margin-top: 160px;
}

.scroll-down-hint {
  display: none;
  font-size: large;
  text-shadow: black 1px 1px 2px;
  opacity: 1;
  width: 100%;
  color: white;
  text-align: center;
  position: fixed;
  position: absolute;
  bottom: 25px;
  text-align: center;
}
.scroll-down-hint p {
  font-size: 1.3em;
}
.scroll-down-hint .arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  right: auto;
  height: 2.5em;
}
.scroll-down-hint .pulse {
  opacity: 0;
  animation: pulse 3s ease-in-out;
  animation-iteration-count: infinite;
}

/* Referenzen Detail */
#snap-sections-wrapper {
  margin-top: 81px;
  overflow-y: scroll;
  bottom: 0;
  top: 0;
  position: fixed;
  scroll-snap-type: y proximity;
  width: 100vw;
  transition: margin-top linear 0.2s;
}
#snap-sections-wrapper.snapDisabled {
  scroll-snap-type: unset;
}

.snap-start {
  scroll-snap-align: start;
}

.snap-center {
  scroll-snap-align: center;
}

.snap-end {
  scroll-snap-align: end;
}

/* Neues Referenzen Detail Layout */
#referenzen-detail-wrapper {
  padding-top: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.referenzen-gallery {
  width: 100%;
  padding: 0px 80px 50px;
  position: relative;
  overflow: hidden;
}

.referenzen-gallery::after {
  content: "";
  display: table;
  clear: both;
}

.gallery-item {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

/* Erstes Bild - mittig */
.gallery-item.first-center {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item.first-center .image-container {
  width: 100% !important;
}

/* Ab dem zweiten Bild: 2-Spalten-Layout */
.gallery-item.column-left {
  width: 48%;
  float: left;
  clear: left;
}

.gallery-item.column-right {
  width: 48%;
  float: right;
  clear: right;
}

.image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Überschrift und Info Container über erstem Bild */
.project-header-wrapper {
  position: relative;
  width: 80%;
  margin: 40px auto 10px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-main-title {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0;
  color: #000;
  flex: 0 0 60%;
}

.project-info-box {
  text-align: right;
  flex: 0 0 40%;
}

@media (max-width: 1100px) {
  .project-main-title {
    flex: 0 0 auto;
  }
  
  .project-info-box {
    flex: 0 0 auto;
  }
}

.project-info-box p {
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

.project-info-box a {
  color: inherit;
  text-decoration: underline;
}

.project-info-box a:hover {
  color: inherit;
  text-decoration: underline;
}

.image-caption {
  margin-top: 15px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  font-family: "Source Sans 3", sans-serif;
}

.caption-description {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.5;
}

.caption-text {
  font-style: italic;
  font-size: 14px;
  color: #666;
}

.projekt-beschreibung {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.5;
}

.projekt-beschreibung > p {
  font-weight: 600;
}

/* Projekt Navigation Buttons Desktop */
.project-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100;
}

.nav-btn {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  width: 54px;
  background: transparent;
  color: #000;
  padding: 100px 15px;
  text-decoration: none;
  transition: background 0.3s;
  pointer-events: all;
  z-index: 101;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  text-decoration: none;
}

.nav-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Source Sans 3", sans-serif;
}

.nav-btn.prev-project {
  left: 0;
  transform: rotate(180deg);
}

.nav-btn.prev-project span {
  transform: rotate(180deg);
}

.nav-btn.next-project {
  right: 0;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}


.info-label {
  font-weight: 700;
}

/* Karriere Seiten Layout */
#karriere-wrapper {
  padding-top: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

/* Karriere Header */
.karriere-header {
  width: 80%;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0;
}

.karriere-main-title {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0 0 30px;
  color: #000;
}

.karriere-intro {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.karriere-intro p {
  margin-bottom: 1em;
}

/* Job Grid Section */
.karriere-jobs-section {
  width: 80%;
  max-width: 1200px;
  margin: 60px auto;
}

.section-title {
  font-size: 2em;
  font-weight: 300;
  margin: 0 0 40px;
  color: #000;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.job-card {
  display: block;
  background: #fff;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.job-card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
}

.job-card-content {
  padding: 25px;
}

.job-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 0 0 15px;
  color: #000;
}

.job-card-excerpt {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
  margin: 0 0 15px;
}

.job-card-arrow {
  display: inline-block;
  font-size: 0.95em;
  color: #000;
  font-weight: 600;
  transition: transform 0.3s;
}

.job-card:hover .job-card-arrow {
  transform: translateX(5px);
}

/* Keine Jobs Meldung */
.karriere-no-jobs {
  width: 80%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}

.karriere-no-jobs p {
  font-size: 1.1em;
  line-height: 1.8;
  margin: 10px 0;
}

/* Bewerbungsinfo Section */
.karriere-application-info {
  width: 80%;
  max-width: 1200px;
  margin: 80px auto 60px;
}

.karriere-application-info p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.application-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.method-card {
  padding: 30px;
  background: #f9f9f9;
  border-left: 3px solid #000;
}

.method-card h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin: 0 0 15px;
}

.method-card p {
  line-height: 1.8;
  margin: 0;
}

.method-card strong {
  font-weight: 700;
}

.method-card a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}

.method-card a:hover {
  color: #333;
}

/* Online-Formular */
.karriere-online-form {
  width: 80%;
  max-width: 1200px;
  margin: 80px auto 100px;
}

.scroll-anchor {
  display: block;
  position: relative;
  top: -130px;
  visibility: hidden;
}

/* Karriere Detail Seite */
#karriere-detail-wrapper {
  padding-top: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.job-detail-content {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 100px;
}

/* Job Header */
.job-header-wrapper {
  position: relative;
  width: 100%;
  margin: 40px 0 50px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.job-main-title {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0;
  color: #000;
  flex: 1;
}

.job-info-box {
  text-align: right;
  flex: 0 0 auto;
  min-width: 250px;
}

.job-info-box p {
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

/* Job Bild */
.job-featured-image {
  width: 100%;
  margin: 40px 0;
}

.job-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Job Beschreibung */
.job-description {
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
}

.job-description h2,
.job-description h3 {
  font-weight: 600;
  margin: 40px 0 20px;
}

.job-description h2 {
  font-size: 1.8em;
}

.job-description h3 {
  font-size: 1.4em;
}

.job-description ul,
.job-description ol {
  margin: 20px 0;
  padding-left: 30px;
}

.job-description li {
  margin-bottom: 10px;
}

/* CTA Button */
.job-cta {
  margin: 60px 0 40px;
  text-align: center;
}

.btn-apply {
  display: inline-block;
  padding: 18px 50px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  border: 2px solid #000;
}

.btn-apply:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Job Navigation */
.job-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100;
}

.job-nav .nav-btn {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  width: 54px;
  background: transparent;
  color: #000;
  padding: 100px 15px;
  text-decoration: none;
  transition: background 0.3s;
  pointer-events: all;
  z-index: 101;
}

.job-nav .nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  text-decoration: none;
}

.job-nav .nav-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Source Sans 3", sans-serif;
}

.job-nav .nav-btn.back-to-overview {
  left: 0;
  transform: rotate(180deg);
}

.job-nav .nav-btn.back-to-overview span {
  transform: rotate(180deg);
}

.job-nav .nav-btn.prev-job {
  left: 54px;
  transform: rotate(180deg);
}

.job-nav .nav-btn.prev-job span {
  transform: rotate(180deg);
}

.job-nav .nav-btn.next-job {
  right: 0;
}

/* Standard Seiten Layout (index.php) */
#default-page-wrapper {
  padding-top: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.default-page-content {
  width: 100%;
  padding: 100px 100px 150px;
  position: relative;
}

.page-header-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto 60px;
  padding: 0;
}

.page-main-title {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0;
  color: #000;
}

.page-featured-image {
  width: 80%;
  margin: 40px auto;
}

/* Leistungen Seiten Layout */
#leistungen-wrapper {
  padding-top: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

/* Leistungen Header */
.leistungen-header {
  width: 80%;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.leistungen-featured-image {
  flex: 1;
  max-width: 50%;
}

.leistungen-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.leistungen-main-title {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0 0 30px;
  color: #000;
}

.leistungen-intro {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.leistungen-intro p {
  margin-bottom: 1em;
}

/* Services Grid Section */
.leistungen-services-section {
  width: 80%;
  max-width: 1200px;
  margin: 60px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.service-card {
  display: block;
  background: transparent;
  border: none;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.service-card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
}

.service-card-content {
  padding: 25px;
}

.service-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 0 0 15px;
  color: #000;
}

.service-card-excerpt {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
  margin: 0 0 15px;
}

.service-card-arrow {
  display: none;
}

/* Keine Leistungen Meldung */
.leistungen-no-services {
  width: 80%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}

.leistungen-no-services p {
  font-size: 1.1em;
  line-height: 1.8;
  margin: 10px 0;
}

/* Kontakt CTA Section */
.leistungen-contact-cta {
  width: 80%;
  max-width: 1200px;
  margin: 80px auto 60px;
}

.leistungen-contact-cta p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.contact-option-card {
  padding: 30px;
  background: #f9f9f9;
  border-left: 3px solid #000;
  text-align: center;
}

.contact-option-card h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin: 0 0 15px;
}

.contact-option-card p {
  line-height: 1.8;
  margin: 10px 0;
  font-size: 1em;
}

.contact-option-card strong {
  font-weight: 700;
}

.cta-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.btn-contact-large {
  display: inline-block;
  padding: 20px 60px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  border: 2px solid #000;
}

.btn-contact-large:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Leistungen Detail Seite */
#leistungen-detail-wrapper {
  padding-top: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.service-detail-content {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 100px;
}

/* Service Header */
.service-header-wrapper {
  position: relative;
  width: 100%;
  margin: 40px 0 50px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.service-main-title {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0;
  color: #000;
  flex: 1;
}

.service-info-box {
  text-align: right;
  flex: 0 0 auto;
  min-width: 250px;
}

.service-info-box p {
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

/* Service Bild */
.service-featured-image {
  width: 100%;
  margin: 40px 0;
}

.service-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Beschreibung */
.service-description {
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
}

.service-description h2,
.service-description h3 {
  font-weight: 600;
  margin: 40px 0 20px;
}

.service-description h2 {
  font-size: 1.8em;
}

.service-description h3 {
  font-size: 1.4em;
}

.service-description ul,
.service-description ol {
  margin: 20px 0;
  padding-left: 30px;
}

.service-description li {
  margin-bottom: 10px;
}

/* Service CTA */
.service-cta {
  margin: 60px 0 40px;
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
  border-left: 3px solid #000;
}

.service-cta-content h2 {
  font-size: 1.8em;
  font-weight: 600;
  margin: 0 0 15px;
}

.service-cta-content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0 0 30px;
  color: #333;
}

.btn-contact {
  display: inline-block;
  padding: 18px 50px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  border: 2px solid #000;
}

.btn-contact:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Service Navigation */
.service-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100;
}

.service-nav .nav-btn {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  width: 54px;
  background: transparent;
  color: #000;
  padding: 100px 15px;
  text-decoration: none;
  transition: background 0.3s;
  pointer-events: all;
  z-index: 101;
}

.service-nav .nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  text-decoration: none;
}

.service-nav .nav-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Source Sans 3", sans-serif;
}

.service-nav .nav-btn.back-to-overview {
  left: 0;
  transform: rotate(180deg);
}

.service-nav .nav-btn.back-to-overview span {
  transform: rotate(180deg);
}

.service-nav .nav-btn.prev-service {
  left: 54px;
  transform: rotate(180deg);
}

.service-nav .nav-btn.prev-service span {
  transform: rotate(180deg);
}

.service-nav .nav-btn.next-service {
  right: 0;
}

.page-detail-content {
  width: 80%;
  margin: 0 auto 60px;
  position: relative;
}

.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content-text {
  width: 80%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.page-content-text p {
  margin-bottom: 1.5em;
}

.page-content-text h1,
.page-content-text h2,
.page-content-text h3,
.page-content-text h4 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.page-content-text ul,
.page-content-text ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}

.page-content-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
}

/* Responsive Design für Standard Seiten */
@media only screen and (max-width: 1100px) {
  .page-header-wrapper {
    width: 90%;
  }

  .page-featured-image {
    width: 90%;
  }

  .page-content-text {
    width: 90%;
  }
}

@media only screen and (max-width: 768px) {
  .default-page-content {
    padding: 60px 40px 100px;
  }

  .page-main-title {
    font-size: 2em;
  }

  .page-header-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .page-featured-image {
    width: 100%;
    margin-bottom: 40px;
  }

  .page-content-text {
    width: 100%;
    font-size: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .default-page-content {
    padding: 60px 20px 80px;
  }

  .page-main-title {
    font-size: 1.75em;
  }
}

/* Büro page */
#buero_page {
  padding-bottom: 0;
  margin-bottom: -90px;
}
#buero_page .positioned-content {
  position: relative;
  font-size: 1.2vw;
  line-height: 2.5vw;
  width: 100vw;
}
#buero_page .positioned-content > div {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
  width: 75vw;
  color: #3d3d3d;
  left: 50vw;
}
#buero_page .positioned-content > div h2 {
  font-size: 4.5em;
  color: #3AC151;
  margin-bottom: 1.5em;
}
#buero_page .positioned-content > div p {
  margin-left: auto;
  margin-right: auto;
}
#buero_page .positioned-content > div.large-text, #buero_page .positioned-content > div .large-text {
  font-size: 2.5em;
  line-height: 1.25;
}
#buero_page .positioned-content > div.person {
  width: 40vw;
  left: 32vw;
}
#buero_page .positioned-content > div.person h3 {
  text-transform: uppercase;
  font-size: 2.5em;
  color: #ca1d28;
  margin-bottom: 2.5em;
}
#buero_page .positioned-content > div.person p {
  font-size: 1.5em;
  margin-bottom: 2em;
  line-height: 1.5;
}
#buero_page .positioned-content .jump-to-top-btn {
  padding: 20px;
  cursor: pointer;
}
#buero_page img.big_pic {
  width: 100vw;
  max-width: 100vw;
}

.infobox {
  text-align: center;
  padding-top: 2em;
}
.infobox.infobox_interest {
  margin-top: 5em;
}
.infobox.infobox_top {
  margin-bottom: 5em;
}
.infobox h2 {
  padding-bottom: 1em;
}

#job_list.job_list-empty p {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}
#job_list .panel {
  border-radius: 0;
  border: none;
}
#job_list .panel .panel-collapse {
  position: relative;
}
#job_list .panel .panel-collapse.collapsing {
  z-index: 10;
}
#job_list .panel .panel-collapse .panel-body {
  background-color: white;
}
#job_list .job-heading {
  position: relative;
  background-color: #333333;
  border-radius: 0;
  height: 36em;
}
#job_list .job-heading.has_bg {
  background-size: cover;
  background-position: center;
}
#job_list .job-heading a.job-toggle {
  z-index: 2;
  position: relative;
  display: block;
  height: 100%;
}
#job_list .job-heading a.job-toggle .job-title {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 2.5em;
  color: black;
  text-shadow: 0px 0px 15px white;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
@media only screen and (max-width: 540px) {
  #job_list .job-heading a.job-toggle .job-title {
    font-size: 2em;
    padding: 120px 20px;
  }
}
@media only screen and (max-width: 460px) {
  #job_list .job-heading a.job-toggle .job-title {
    font-size: 1.5em;
    padding: 100px 20px;
  }
}
@media only screen and (max-width: 360px) {
  #job_list .job-heading a.job-toggle .job-title {
    font-size: 1.25em;
    padding: 40px 10px;
  }
}
@media only screen and (max-width: 300px) {
  #job_list .job-heading a.job-toggle .job-title {
    font-size: 1em;
    padding: 20px 10px;
  }
}
#job_list .job-heading a.job-toggle:hover, #job_list .job-heading a.job-toggle:active, #job_list .job-heading a.job-toggle:focus {
  text-decoration: none;
  outline: 0;
}
#job_list .job-heading .panel-heading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.4s ease;
  background-color: rgba(255, 255, 255, 0.2);
}
#job_list .job-heading:hover .panel-heading-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}
#job_list .job-footer {
  border-radius: 0;
  text-align: center;
  margin-top: 2em;
}
#job_list .job-footer a {
  font-weight: bold;
}
#job_list .panel-col {
  padding: 2px;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #job_list .panel-col {
    width: 50%;
  }
  #job_list .grid-sizer {
    width: 50%;
  }
  #job_list .gutter-sizer {
    width: 0;
  }
}

/* Footer */
.main-content-wrapper {
  min-height: 100%;
}

.footer {
  background-color: #fff;
  padding-top: 20px;
}
.footer .social-media-links {
  width: 100%;
  text-align: center;
  margin-top: 3em;
  margin-bottom: 3em;
  padding-inline-start: 0;
}
.footer .social-media-links li {
  display: inline;
}
.footer .social-media-links li a {
  padding-left: 1em;
  padding-right: 1em;
  text-decoration: none;
}
.footer .social-media-links li a i.fa {
  font-size: 2em;
}
.footer .menu-footer-container ul li {
  list-style-type: none;
}
.footer .footer-container {
  padding-top: 20px;
}
.footer .menu-footer-container {
  padding-left: 0;
  padding-right: 0;
}
.footer .menu-item-has-children {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .footer .menu-footer-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer a {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
}

ul#menu-footer_menu {
  padding-inline-start: 0;
}

.footer .menu-item {
  float: left;
  position: relative;
  min-height: 1px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.footer .menu-item-wrapper {
  line-height: 15px;
  padding: 14px;
  display: block;
  position: relative;
  border-bottom: 1px solid #333;
}

.footer .sub-menu {
  padding: 0;
}

.footer .sub-menu a {
  font-weight: 300;
}

.footer .sub-menu .menu-item {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.footer .sub-menu .menu-item:last-child .menu-item-wrapper {
  border-bottom: none;
}

.footer .sub-menu .menu-item-wrapper {
  border-bottom: 1px solid #CCC;
}

@media (min-width: 768px) {
  .footer .menu-item {
    width: 33.33333333%;
  }
}
.footer .jump-to-top-btn {
  border-radius: 0;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  height: auto;
  font-weight: 400;
  letter-spacing: 2px;
  padding-bottom: 15px;
  padding-top: 15px;
  max-width: 364px;
  width: 100%;
  background: #333;
  color: #fff;
}
.footer .footer-note {
  padding: 10px;
  width: 100%;
  text-align: center;
}

/* General */
body, html {
  height: 100%;
}

body {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #ffffff;
  font-weight: 200;
  font-size: 16px;
  color: #000;
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
}

select {
  height: 42px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, body, p {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 200;
}

.h1, h1 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

.h2, h2, .h3, h3, .h4, h4 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
}

.content, .content-container {
  padding-top: 130px;
}
/* Styling für Unterseiten (page.php) */
.infobox_top h1 {
  font-size: 2.5em;
  font-weight: 300;
  margin-bottom: 0.5em;
  color: #000;
}

.infobox_top img {
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.infobox_top p {
  line-height: 1.8;
  margin-bottom: 1.2em;
  font-size: 1.05em;
}

.infobox_top ul,
.infobox_top ol {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 1.5em;
  padding-left: 2em;
  line-height: 1.8;
}

.infobox_top h2 {
  font-size: 1.8em;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #000;
}

.infobox_top h3 {
  font-size: 1.4em;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  color: #000;
}

@media (max-width: 768px) {
  .infobox_top h1 {
    font-size: 2em;
  }
  
  .infobox_top h2 {
    font-size: 1.5em;
  }
  
  .infobox_top h3 {
    font-size: 1.2em;
  }
  
  .infobox_top {
    padding: 2em 1em;
  }
}


.content {
  padding-bottom: 40px;
  line-height: 2em;
}

/* Responsive Design für Leistungen Seiten */
@media only screen and (max-width: 1100px) {
  .leistungen-header,
  .leistungen-services-section,
  .leistungen-contact-cta {
    width: 90%;
  }

  .service-detail-content {
    width: 90%;
  }

  .service-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-main-title {
    margin-bottom: 20px;
  }

  .service-info-box {
    text-align: left;
    min-width: auto;
  }
}

@media only screen and (max-width: 768px) {
  #leistungen-wrapper,
  #leistungen-detail-wrapper {
    padding-top: 100px;
  }

  .leistungen-header {
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .leistungen-featured-image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .leistungen-services-section,
  .leistungen-contact-cta,
  .service-detail-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .leistungen-main-title,
  .service-main-title {
    font-size: 1.8em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-option-card {
    padding: 25px;
  }

  .btn-contact-large,
  .btn-contact {
    width: 100%;
    padding: 16px 30px;
  }

  .service-description {
    font-size: 1em;
  }

  .service-cta {
    padding: 30px 20px;
  }

  /* Mobile Navigation für Leistungen */
  .desktop-only.service-nav {
    display: none;
  }

  .mobile-only.service-nav {
    display: block;
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    pointer-events: auto;
  }

  .mobile-only.service-nav .nav-btn {
    position: static;
    width: 100%;
    height: auto;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
  }

  .mobile-only.service-nav .nav-btn:hover {
    background: rgba(255, 255, 255, 1);
  }

  .mobile-only.service-nav .nav-btn .btn-text {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 14px;
    transform: none;
    font-weight: 600;
  }

  .mobile-only.service-nav .nav-btn i.fa {
    font-size: 16px;
    line-height: 1;
  }

  .mobile-only.service-nav .back-to-overview {
    order: -1;
  }
}

.content img {
  max-width: 100%;
  height: auto;
}
.content a:hover {
  color: #000;
  text-decoration: underline;
}

a {
  font-family: "Source Sans 3", sans-serif;
  text-decoration: none;
  color: #6E6E6E;
}
a:hover {
  text-decoration: underline;
}

hr {
  height: 1px;
  background-color: black;
  border: 0;
}

.alignleft {
  float: left;
  padding: 5px 30px 5px 0;
}

.alignright {
  float: right;
  padding: 5px 0 5px 30px;
}

.wp-post-image {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  margin-bottom: 10px;
}

.post-headline {
  margin-bottom: 20px;
}

.pt-cv-wrapper img {
  width: 100%;
}

.pt-cv-scrollable .pt-cv-cap-w-img, .pt-cv-carousel-caption {
  position: static !important;
  color: inherit !important;
  background-color: transparent !important;
  text-shadow: none !important;
}

.pt-cv-scrollable .pt-cv-cap-w-img h4.pt-cv-title a {
  color: inherit !important;
}
.pt-cv-scrollable .pt-cv-cap-w-img div.pt-cv-content, .pt-cv-scrollable .pt-cv-cap-w-img div.pt-cv-content p {
  color: inherit !important;
}
.pt-cv-scrollable .pt-cv-cap-w-img div.pt-cv-content p a {
  text-decoration: none !important;
  color: #6E6E6E !important;
}
.pt-cv-scrollable .pt-cv-cap-w-img div.pt-cv-content p a:hover {
  color: #000 !important;
  text-decoration: underline !important;
}

.pt-cv-wrapper {
  max-width: 1000px !important;
  margin-left: auto;
  margin-right: auto;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
}
/* Adjustments for small screens in lanscape format */
#logo-for-mobile {
  display: none;
  height: 3em;
  margin-left: 2em;
  margin-top: 2em;
  margin-bottom: 2em;
}

@media only screen and (max-height: 500px) {
  .logo {
    display: none;
  }

  nav.header {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-whiteBackground {
    background: none;
  }

  .navbar-header .navbar-toggle {
    background-color: white;
  }

  .sections-wrapper {
    margin-top: 0;
  }

  #myNavbar {
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 5;
    background: white;
    max-height: 100vh;
    overflow-y: scroll;
  }

  #logo-for-mobile {
    display: inline-block;
  }

  #snap-sections-wrapper {
    margin-top: 0;
  }

  .section.referenz_section.first {
    padding-top: 0;
  }
}
@media only screen and (max-width: 576px), only screen and (max-width: 768px) and (max-height: 576px) {
  #snap-sections-wrapper {
    scroll-snap-type: none;
  }
}
@media only screen and (max-width: 500px) {
  .section.referenz_section {
    height: auto;
  }
}

/* Responsive Design für Referenzen Detail */
@media only screen and (max-width: 1100px) {
  .project-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-main-title {
    margin-bottom: 20px;
  }

  .project-info-box {
    text-align: left;
  }
}

@media only screen and (max-width: 768px) {
  .referenzen-gallery {
    padding: 0px 20px 0px;
  }

  /* Alle Bilder untereinander, geordnet, volle Breite */
  .gallery-item.first-center,
  .gallery-item.column-left,
  .gallery-item.column-right {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    float: none !important;
    clear: both !important;
    margin-bottom: 60px !important;
  }

  /* Image-Container in mobiler Ansicht: mittig mit Padding */
  .gallery-item .image-container {
    width: 100% !important;
    left: 0 !important;
    padding: 0 0px;
    box-sizing: border-box;
  }

  .project-header-wrapper {
    margin: 20px auto 10px;
    width: 100%;
  }

  .project-main-title {
    font-size: 1.8em;
  }

  .image-caption {
    font-size: 14px;
    margin-top: 10px;
  }

  /* Navigation ausblenden auf Mobil */
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  /* Mobile Navigation zwischen Logo und Überschrift */
  .mobile-only.project-nav {
    position: static;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    margin-top: -10px;
    pointer-events: auto;
  }

  .mobile-only.project-nav .next-project {
    text-align: right;
  }

  .mobile-only .nav-btn {
    position: static;
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .mobile-only .nav-btn:hover {
    background: rgba(255, 255, 255, 1);
  }

  .mobile-only .nav-btn .btn-text {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 14px;
    transform: none;
  }

  .mobile-only .nav-btn i.fa {
    font-size: 16px;
    line-height: 1;
  }

/* Responsive Design für Karriere Seiten */
@media only screen and (max-width: 1100px) {
  .karriere-header,
  .karriere-jobs-section,
  .karriere-application-info,
  .karriere-online-form {
    width: 90%;
  }

  .job-detail-content {
    width: 90%;
  }

  .job-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-main-title {
    margin-bottom: 20px;
  }

  .job-info-box {
    text-align: left;
    min-width: auto;
  }
}

@media only screen and (max-width: 768px) {
  #karriere-wrapper,
  #karriere-detail-wrapper {
    padding-top: 100px;
  }

  .karriere-header,
  .karriere-jobs-section,
  .karriere-application-info,
  .karriere-online-form,
  .job-detail-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .karriere-main-title,
  .job-main-title {
    font-size: 1.8em;
  }

  .section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .application-methods {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .method-card {
    padding: 25px;
  }

  .job-description {
    font-size: 1em;
  }

  .btn-apply {
    width: 100%;
    padding: 16px 30px;
  }

  /* Mobile Navigation für Karriere */
  .desktop-only.job-nav {
    display: none;
  }

  .mobile-only.job-nav {
    display: block;
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    pointer-events: auto;
  }

  .mobile-only.job-nav .nav-btn {
    position: static;
    width: 100%;
    height: auto;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
  }

  .mobile-only.job-nav .nav-btn:hover {
    background: rgba(255, 255, 255, 1);
  }

  .mobile-only.job-nav .nav-btn .btn-text {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 14px;
    transform: none;
    font-weight: 600;
  }

  .mobile-only.job-nav .nav-btn i.fa {
    font-size: 16px;
    line-height: 1;
  }

  .mobile-only.job-nav .back-to-overview {
    order: -1;
  }
}
}
.cc-banner.cc-window {
  font-family: "Source Sans 3", sans-serif;
}

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


/* ================================================
   Referenzen Overview (ehemals Plugin)
   ================================================ */

/* Default styles for page-list */
.page-list .current_page_item > a {
	font-weight: bold;
}

.page-list-ext {
	clear: both;
}

.page-list-ext:after {
	clear: both;
}
.page-list-ext .page-list-ext-item {
	clear: both;
	margin: 10px 0 30px 0;
}
.page-list-ext .page-list-ext-item:hover {
	color: #4f4f4f;
}
.page-list-ext .page-list-ext-title {
	clear: none;
	margin:0;
}

.page-list-ext .news_overview_title_box {
  margin-bottom:10px;
}

.page-list-ext .post_date_news {
  font-size:10px;
  line-height:10px;
}

.project-gallery {
    position: relative;
    width: 100%;
    min-height: 800px;
    padding: 50px 50px;
}

@media (max-width: 1200px) {
    .project-gallery {
        padding: 10px 10px;
    }
}

@media (max-width: 767px) {
    .project-gallery {
        position: static !important;
        padding: 20px;
        min-height: auto;
        height: auto !important;
    }
}

.project-gallery::before {
    display: none !important;
}

.project-gallery-item {
    position: absolute;
    transition: all 0.3s ease;
}

.project-gallery-item .grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid {
		margin-left: 40px;
		margin-right: 40px;
		display: grid;
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 20px 0;
}

/* Mobile: 1 Spalte */
@media (max-width: 767px) {
		.grid {
		  grid-template-columns: 1fr;
		  gap: 30px;
		  margin-left: 20px;
		  margin-right: 20px;
		}
}

/* Tablet: 2 Spalten */
@media (min-width: 768px) {
		.grid {
		  grid-template-columns: repeat(2, 1fr);
		  gap: 40px;
		}
}

/* Desktop: 3 Spalten */
@media (min-width: 1200px) {
		.grid {
		  grid-template-columns: repeat(3, 1fr);
		  gap: 50px;
		}
}


.grid-item-content-wrapper {
		position: relative;
		width: 100%;
		transition: all 0.3s ease;
		transform-origin: center;
}

.grid-item-image {
		position: relative;
		width: 100%;
		overflow: hidden;
}

.grid-item-image img {
		width: 100%;
		height: auto;
		display: block;
		transition: filter 0.3s ease;
}

/* Lazy Loading Hintergrundbilder */
.grid-item-image.lazy-bg {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color: #f5f5f5;
		transition: filter 0.3s ease;
}

.grid-item-image.lazy-bg.loaded {
}

/* Desktop: Text über Bild bei Hover */
@media (min-width: 768px) {
		.referenz_text {
		  position: absolute;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%);
		  width: 90%;
		  text-align: center;
		  color: #000;
		  font-size: 15px;
		  text-transform: uppercase;
		  opacity: 0;
		  transition: opacity 0.3s ease;
		  z-index: 10;
		  pointer-events: none;
		}
		
		.referenz-pictogram {
		  display: block;
		  width: 40px;
		  height: auto;
		  margin: 0 auto 15px;
		}
		
		.grid-item-image::after {
		  content: '';
		  position: absolute;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: 100%;
		  background: rgba(255, 255, 255, 0.85);
		  opacity: 0;
		  transition: opacity 0.3s ease;
		  pointer-events: none;
		}
		
		.grid-item-content-wrapper:hover .referenz_text {
		  opacity: 1;
		}
		
		.grid-item-content-wrapper:hover .grid-item-image::after {
		  opacity: 1;
		}
		
		.grid-item-content-wrapper:hover .grid-item-image img,
		.grid-item-content-wrapper:hover .grid-item-image.lazy-bg {
		  filter: blur(3px);
		}
		
		.grid-item-content-wrapper:hover {
		  transform: scale(1.02) !important;
		}
}

/* Mobile: Text unter Bild */
@media (max-width: 767px) {
		.project-gallery-item {
		  position: static !important;
		  width: 100% !important;
		  height: auto !important;
		  margin: 0 0 30px 0 !important;
		  left: auto !important;
		  top: auto !important;
		  transform: none !important;
		}
		
		.grid-item {
		  transform: none !important;
		}
		
		.grid-item-content-wrapper {
		  transform: none !important;
		}
		
		.grid-item-image img {
		  width: 100%;
		  max-width: 100%;
		}
		
		.referenz_text {
		  position: relative;
		  display: block;
		  width: 100%;
		  text-align: left;
		  color: #000;
		  font-size: 15px;
		  text-transform: uppercase;
		  opacity: 1;
		  margin-top: 10px;
		}
		
		.referenz-pictogram {
		  display: none;
		}
}

.referenz_text h2 {
		font-size: 17px;
		margin: 10px 0;
		font-weight: 600;
}

.referenz_text h3 {
		font-size: 12px;
		margin: 5px 0;
		font-weight: 400;
}
/* Ältere Projekte Liste */
.older-projects-section {
	margin-top: 80px;
	padding: 40px 20px;
	background-color: #fff;
}

.older-projects-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
	color: #333;
	font-family: "Source Sans 3", sans-serif;
}

.older-projects-list {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.list-project-item {
	margin-bottom: 12px;
	line-height: 1.6;
	font-size: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #CCC;
}

.list-project-item:last-child {
	border-bottom: none;
}

.list-project-item a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-family: "Source Sans 3", sans-serif;
	transition: color 0.2s ease;
}

.list-project-item a:hover {
	color: #666;
}

.list-project-title {
	font-weight: 600;
}

.list-project-meta {
	color: #666;
	font-weight: 300;
}

.list-project-architekt {
	display: block;
	color: #a03030;
	font-weight: 300;
	font-size: 12px;
	margin-top: 4px;
	opacity: 0.85;
}


.content {
		text-align: center;
		width: 100vw;
}

.grid-sizer,
.gutter-sizer {
		display: none;
}
