:root {
  /* single source of truth for the brand color - update these two and everything below follows */
  --brand: #B00149;
  --brand-hover: #96013E;
  --brand-tint-20: rgba(176, 1, 73, 0.2);
  --brand-hover-shadow: rgba(150, 1, 62, 0.3);
}

.hero_footer-svg, .figure-svg, .about-svg, .service__background_pattern, .animate-pattern, .svg-img { display: none; }

/* navbar logo: constrain to a fixed display height regardless of the source file's own resolution */
.navbar-brand img { height: 96px !important; width: auto !important; max-width: none !important; }

/* footer logo: same fix as the navbar logo */
.contact__widget_logo img { height: 130px !important; width: auto !important; max-width: none !important; }

/* gallery page */
.gallery-page .contact__cta { display: none !important; }
.gallery-section { padding-top: 120px; }
.gallery-title { font-family: 'Yeseva One', serif; color: #1b2031; margin-bottom: 16px; }
.gallery-subtitle { font-size: 18px; color: #7e7e8a; }
.gallery-grid {
  columns: 3 280px;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 32, 49, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item-overlay i { font-size: 32px; color: #fff; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-modal-content {
  background: #1b2031;
  border: none;
  border-radius: 16px;
  padding: 8px;
  position: relative;
}
.gallery-modal-content img { width: 100%; border-radius: 12px; display: block; }
.gallery-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.hero { padding-bottom: 0 !important; }
#welcome { padding-top: 0 !important; padding-bottom: 80px !important; }
#welcome .about_header { margin-bottom: 80px !important; }
.paragraph-section { padding-top: 40px !important; padding-bottom: 0 !important; }
.reasons__intro { margin-bottom: 30px !important; }
.section.service { padding-top: 0; padding-bottom: 0 !important; }
#about { padding-top: 70px !important; }
.service__slider { grid-template-columns: 1fr !important; }
.service__slider_item { min-width: 0; }
.service__slider_item .reason__header h4 { min-width: 0; overflow-wrap: break-word; }
.service__slider_item .collapse, .service__slider_item .collapsing { padding-top: 20px; }
.service__slider_item .collapse p, .service__slider_item .collapsing p { margin-top: 0; }
@media (max-width: 575px) {
  .service__slider_item .reason__header { flex-direction: column !important; align-items: flex-start !important; }
  .service__slider_item .service__slider_item-icon { width: 70px !important; height: 62px !important; margin-bottom: 0 !important; }
  .service__slider_item .reason__header h4 { width: 100%; }
}
.section.testimonial { padding-top: 80px; padding-bottom: 20px !important; background: #F9F1F6 !important; }
.testimonial__header span { font-weight: 700; color: #1b2031 !important; }
.testimonial__header h1 { font-size: 32px; }
#carousel-testimonials .carousel-inner { min-height: 460px; }

.reasons__intro {
  background: #F9F1F6;
  border-radius: 16px;
  padding: 28px 36px;
  margin-bottom: 100px;
}

.reasons__intro p {
  margin: 0 0 1em 0;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a5a;
}

.reasons__intro p:last-child {
  margin-bottom: 0;
}

/* icon blob color */
.icon-background path { fill: var(--brand-tint-20); }

/* cta button */
.cta-button {
  display: inline-block;
  padding: 28px 80px;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  background: var(--brand);
  color: #ffffff;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: var(--brand-hover);
  box-shadow: 0 8px 20px var(--brand-hover-shadow);
  transform: scale(1.03);
  color: #ffffff;
}

/* navbar + footer CTA buttons: match .cta-button's hover instead of the theme's default blue */
.hire_button:hover {
  background: var(--brand-hover) !important;
  box-shadow: 0 8px 20px var(--brand-hover-shadow) !important;
}
.contact__cta_action a:hover {
  background: #ffffff !important;
  color: var(--brand) !important;
  transform: scale(1.03);
}

.whatyouget-section { padding-top: 0px; overflow-x: hidden; }
.whatyouget-figure { width: 102% !important; height: 100% !important; }
.whatyouget-figure > img { object-fit: cover; }

/* whatyouget dark box: tilted shape (bottom-left deeper than bottom-right), same technique as the photo's mask */
.whatyouget-box {
  position: relative;
  padding: 50px 60px;
  color: #ffffff;
  height: 100%;
  box-sizing: border-box;
  z-index: 0;
}
.whatyouget-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #1b2031;
  mask: url('../images/whatyouget-box-mask.svg') no-repeat center / 100% 100%;
  -webkit-mask: url('../images/whatyouget-box-mask.svg') no-repeat center / 100% 100%;
}
.whatyouget-box h3 {
  color: #ffffff;
  margin-bottom: 30px;
  font-family: 'Yeseva One', serif;
}
.whatyouget-box ul {
  margin: 0;
  padding: 0;
}
.whatyouget-box ul li {
  list-style: none;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
  line-height: 1.6;
}
.whatyouget-box ul li:last-child {
  border-bottom: none;
}
.whatyouget-box ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
}

/* address multi-line alignment */
.contact__widget_address li p { position: relative; padding-left: 1.6em; }
.contact__widget_address li p > i { position: absolute; left: 0; top: 0.15em; }

/* CTA banner: span on its own row, h1 and button on the same row (desktop only, see below 992px keeps the theme's stacked mobile layout) */
.contact__cta_label { font-family: 'Poppins', sans-serif; color: #fff; font-size: 20px; display: inline-block; line-height: 1; margin: 0 0 20px 40px; position: relative; }
.contact__cta_label::before { position: absolute; content: ""; height: 2px; width: 20px; left: -40px; top: 50%; transform: translateY(-50%); background: #fff; }
@media (min-width: 992px) {
  .contact__cta { align-items: flex-end !important; flex-wrap: wrap !important; }
  .contact__cta_content { width: 75% !important; }
  .contact__cta_content h1 { font-size: 42px !important; }
  .contact__cta_action { width: 25% !important; display: flex !important; justify-content: flex-end !important; align-items: flex-end !important; }
}

/* lineicon size in reason tiles */
.service__slider_item-icon .icon i { font-size: 64px; color: var(--brand); }

/* about image: replace slanted mask with plain rounded corners */
.about_content-thumb-image { border-radius: 16px; overflow: hidden; }
.about_content-thumb-image img { mask: none !important; width: 100%; display: block; }

/* buchung page: intro text above the booking form */
.buchung-intro { margin-bottom: 40px; }
.buchung-intro p { font-family: 'Poppins', sans-serif; font-size: 20px; line-height: 30px; color: #282f49; }
.buchung-intro p:last-child { margin-bottom: 0; }

/* preise section: pricing boxes before "5 Gründe" */
.preise-section { padding-top: 30px; }
.preise-box {
  background: var(--brand);
  color: #ffffff;
  border-radius: 63% 37% 54% 46% / 43% 37% 63% 57%;
  padding: 80px 85px;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.preise-box h3 {
  color: #ffffff;
  margin-bottom: 24px;
  font-family: 'Yeseva One', serif;
}
.preise-box ul {
  margin: 0;
  padding: 0;
}
.preise-box ul li {
  list-style: none;
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.preise-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.preise-note {
  text-align: center;
  margin-top: 20px;
}
.preise-note p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a5a;
  margin-bottom: 1.5em;
}
.preise-note p:last-child {
  margin-bottom: 0;
}
