@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

:root {
  --highlight: #b82e2e;
}

* {
  box-sizing: border-box;
}

#home {
  padding-top: 100px;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #fff;
}

/* Swiper (Gallery allgemein) */
.swiper {
  width: 100%;
  padding: 4rem 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 80vw;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--highlight, #b82e2e);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--highlight, #b82e2e);
}

.Logo {
  position: relative;
  top: 75px;
  left: 20px;
  width: 80px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-list li a {
  text-decoration: none;
  color: inherit;
}

.nav-list a.active {
  color: var(--highlight);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.navbar a:hover {
  color: var(--highlight);
}

.nav-list a:focus-visible,
.footer-links a:focus-visible,
.contact-btn:focus-visible {
  outline: 2px solid var(--highlight);
  outline-offset: 4px;
  border-radius: 6px;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
}

.left {
  margin-top: -100px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.left h1 {
  font-weight: 100;
}

.left h1 {
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
}

.left h1 span {
  color: var(--highlight);
}

.left h2 {
  font-weight: 100;
}

.left p {
  max-width: 400px;
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 1.5rem;
}

.right {
  margin-top: -400px;
  width: 55%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: calc(33.33% - 0.67rem);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  overflow: visible;
  position: relative;
}

/* langsamere, versetzte Dauer für jede Spalte */
.col-left {
  animation-name: floatDown;
  animation-duration: 35s;
}

.col-center {
  animation-name: floatUp;
  animation-duration: 40s;
}

.col-right {
  animation-name: floatDown;
  animation-duration: 38s;
}

.right img {
  width: 100%;
  max-width: 230px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.col-left {
  animation-name: floatDown;
}

.col-center {
  animation-name: floatUp;
}

.col-right {
  animation-name: floatDown;
}

/* Banner */
.banner-divider {
  width: 100%;
  background-color: var(--highlight);
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.scrolling-text {
  display: flex;
  white-space: nowrap;
  animation: scrollBanner 60s linear infinite;
}

.scrolling-text span {
  padding-right: 5rem;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.3rem;
  color: #fff;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .banner-divider {
    padding: 0.7rem 0;
  }

  .scrolling-text {
    animation-duration: 30s;
  }

  .scrolling-text span {
    font-size: 0.9rem;
    letter-spacing: 0.18rem;
    padding-right: 3rem;
  }
}

/* Sektionen */
.pricing-section,
.about-section,
.services-section {
  padding: 4rem 2rem;
  text-align: center;
}

.pricing-section,
.about-section {
  background-color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-box {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.services-section {
  background-color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-table,
.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.pricing-card,
.service-box,
.about-box {
  background: rgba(255,255,255,0.06);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
  width: 250px;
  text-align: left;
  color: #ddd;
}

.gallery-section {
  background: #111;
  height: auto;
  padding: 2rem 2rem;
}

.gallery-header {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  text-align: center;
  padding: 0 2rem;
}

.gallery-subtitle {
  margin-top: 0.6rem;
  color: #bdbdbd;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-tile {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.45);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.04);
}

.gallery-tile:hover .gallery-caption,
.gallery-tile:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile:focus-visible {
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 2px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-media {
  max-width: min(90vw, 1080px);
  text-align: center;
}

.lightbox-media img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.lightbox-caption {
  margin-top: 0.8rem;
  color: #e8e8e8;
  font-size: 1rem;
  opacity: 0.9;
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  height: 42px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.1rem;
}

.lightbox-nav {
  font-size: 1.6rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
}

.faq-section {
  background: #111;
  color: #fff;
  padding: 4.5rem 2rem 7.5rem;
  text-align: center;
}

.faq-section + .contact-section {
  padding-top: 5.5rem;
}

.faq-subtitle {
  color: #bdbdbd;
  margin: 0.5rem auto 2.5rem;
  max-width: 760px;
  font-size: 1.05rem;
  text-align: center;
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--highlight);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.1rem;
}

.faq-answer p {
  margin: 0 0 1rem;
  color: #d0d0d0;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

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

.mobile-gallery {
  display: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    display: none;
  }
  .mobile-gallery {
    display: block;
    width: min(92%, 520px);
    margin: 0 auto 1.5rem;
  }
  .mobile-gallery .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }
  .mobile-gallery .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
  }
  .mobile-gallery .swiper-pagination-bullet-active {
    background: #fff;
  }

  .gallery-lightbox {
    display: none;
  }
}

.pricing-card .price {
  color: var(--highlight);
  font-size: 1.5rem;
  font-weight: bold;
}

.about-title span {
  font-size: 2rem;
  color: #fff;
  display: block;
  margin-top: 0.5rem;
}

.about-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}

.about-highlight {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: #ccc;
}

/* Reveal / Animationen */
.about-box,
.service-box,
.pricing-card {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1.2s ease-out;
}

.reveal {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fly-in {
  transform: translateX(-100%);
  opacity: 0;
  animation: logoSlideIn 1.5s ease-out forwards;
}

@keyframes logoSlideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Basis-Layout */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
    padding: 2rem;
  }

  .right {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes floatDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(350px); }
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-350px); }
}

.contact-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.map-disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 800px;
  margin: 1rem auto 0;
  text-align: center;
}

.map-disclaimer a {
  color: #ccc;
  text-decoration: underline;
}

.map-disclaimer a:hover {
  color: var(--highlight);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--highlight);
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  line-height: 1.8;
}

.contact-info li strong {
  color: #fff;
  display: inline-block;
  width: 120px;
}

.contact-map {
  flex: 1 1 400px;
}

/* Logo Intro-Screen */
#logo-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOutScale 1.8s ease-out 1s forwards;
}

#logo-loader img {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  filter: drop-shadow(0 0 0 rgba(184, 46, 46, 0));
  animation: logoIntro 1.1s ease-out 0.1s forwards, logoFade 0.7s ease-out 1.1s forwards;
}

@keyframes fadeOutScale {
  to {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: drop-shadow(0 0 0 rgba(184, 46, 46, 0));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 12px 24px rgba(184, 46, 46, 0.35));
  }
}

@keyframes logoFade {
  to {
    opacity: 0;
  }
}

/* Optional: Verhindert Scrollen während der Ladeanimation */
body:not(.loaded) {
  overflow: hidden;
}

.owner-inline-box {
  display: flex;
  gap: 4rem;
  margin: 6rem auto;
  max-width: 1000px;
  align-items: center;
  flex-wrap: wrap;
}

.owner-inline-box img {
  width: 320px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  margin-right: 3rem;
}

.owner-inline-text {
  flex: 1;
  color: #ddd;
  margin-top: -20px;
}

.owner-inline-text h3 {
  color: var(--highlight);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.owner-inline-text .quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

.owner-inline-text span {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--highlight);
}

@media (max-width: 768px) {
  .owner-inline-box {
    flex-direction: column;
    text-align: center;
  }

  .owner-inline-text {
    text-align: center;
  }
}

.site-footer {
  background: #111;
  text-align: center;
  padding: 2rem 1rem;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  margin-top: 4rem;
}

.footer-credit {
  margin-top: 0.35rem;
  color: #777;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: #aaa;
  margin: 0 0.6rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--highlight);
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--highlight);
  color: #111;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  color: #fff;
  background: #000;
}

.contact-btn-outline {
  background: transparent;
  color: var(--highlight);
  border: 1px solid var(--highlight);
}

/* UI reveal animations (services / pricing / reviews) */
.ui-anim {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.ui-anim.ui-anim-fade-up {
  transform: translateY(18px);
}

.ui-anim.ui-anim-fade-left {
  transform: translateX(-18px);
}

.ui-anim.ui-anim-fade-right {
  transform: translateX(18px);
}

.ui-anim-in {
  opacity: 1;
  transform: translate(0, 0);
}

.impressum-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10,10,10,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 2rem;
}

.impressum-box {
  max-width: 600px;
  background-color: #111;
  padding: 2rem;
  border-radius: 12px;
  color: #ccc;
  font-size: 0.85rem;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.impressum-box h2 {
  color: var(--highlight);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.impressum-box strong {
  color: #fff;
}

.close-impressum {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
}

.close-impressum:hover {
  color: var(--highlight);
}

.reveal-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Navbar mobile (erste Variante, wird unten nochmal überschrieben/konkretisiert) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    position: fixed;
    background-color: rgba(0,0,0,0.95);
  }

  .navbar a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .right {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
  }

  .col {
    width: 100%;
    animation: none;
  }

  .right img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .about-columns,
  .services-grid,
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .service-box,
  .pricing-card,
  .about-box {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .swiper-slide img {
    width: 90vw;
  }

  .swiper-slide img {
    width: 80vw;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }

  .grid-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Standard-Navbar (Desktop) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  margin-right: 1.5rem;
  font-size: 1rem;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled a {
  color: #000;
}

.navbar a:hover {
  color: var(--highlight);
}

.lang-toggle {
  position: fixed;
  top: 1.1rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 1100;
  backdrop-filter: blur(8px);
}

.lang-toggle .lang-de,
.lang-toggle .lang-en {
  transition: opacity 0.2s ease;
}

.lang-toggle .lang-de {
  opacity: 1;
}

.lang-toggle .lang-en {
  opacity: 0.45;
}

.lang-toggle.is-en .lang-de {
  opacity: 0.45;
}

.lang-toggle.is-en .lang-en {
  opacity: 1;
}

.lang-toggle .lang-dot {
  opacity: 0.55;
}

/* Burger-Button: Standard versteckt */
.burger {
  display: none;
}

/* ============================
   Mobile Ansicht (Sidebar-Menü)
   ============================ */
@media (max-width: 768px) {
  .lang-toggle {
    right: auto;
    left: 1.2rem;
    top: 1.2rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
  }

  .burger {
    display: block;
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.4rem;
    background: rgba(17, 17, 17, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    color: white;
    z-index: 1100;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(12, 12, 12, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(78vw, 320px);
    padding: 5.5rem 1.5rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    z-index: 1000;
  }

  .navbar.show {
    transform: translateX(0);
    box-shadow: 12px 0 30px rgba(0, 0, 0, 0.4);
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
  }

  .navbar a {
    display: block;
    padding: 0.85rem 0.75rem;
    font-size: 1.05rem;
    width: 100%;
    border-radius: 10px;
    color: #e6e6e6;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .navbar a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(2px);
  }

  .nav-list a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: all;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Footer-Layout-Variation (wird aktuell nicht genutzt, aber ok) */
.site-footer-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #111;
  padding: 2rem 1rem;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-left {
  align-items: flex-end;
}

.footer-right {
  align-items: flex-start;
}

.social-links a {
  color: #aaa;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--highlight);
}

.footer-links a {
  color: #aaa;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--highlight);
}

/* Bilder im rechten Bereich auf mobilen Geräten ausblenden */
@media (max-width: 1230px) {
  .right img {
    display: none !important;
  }
}

@media (max-width: 523px) {
  .left h1 {
    font-size: clamp(1.3rem, 5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  #home {
    height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .container {
    flex-direction: column;
    height: auto;
  }
}

#privacyContent a {
  color: white;
  text-decoration: underline;
}

#privacyContent a:hover {
  color: #ccc;
}

/* Nur sichtbar bei kleiner Breite */
.home-slider {
  display: none;
}

@media (max-width: 600px) {
  .home-slider {
    display: block;
    width: 100%;
    max-width: 90%;
    margin: 2rem auto;
    height: 350px;
  }

  .home-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }

  .home-slider .swiper-slide img {
    width: 85%;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .swiper-slide-active img {
    transform: scale(1);
    filter: none;
    opacity: 1;
  }

  .swiper-slide-prev img,
  .swiper-slide-next img {
    transform: scale(0.9);
    filter: blur(3px);
    opacity: 0.6;
  }

  .right {
    display: none;
  }
}

/* Mobile Headline */
.mobile-headline {
  display: none;
}

@media (max-width: 600px) {
  .mobile-headline {
    display: block;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    z-index: 10;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
  }

  .mobile-headline span {
    color: #c79a3f;
  }

  #home {
    position: relative;
  }
}

/* Mobile Image Fade */
@media (max-width: 600px) {
  .mobile-image-fade {
    display: block;
    width: 90%;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: opacity 1.6s ease-in-out;
  }
}

.mobile-image-fade {
  display: none;
  width: 90%;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: opacity 1.6s ease-in-out;
}

@media (max-width: 600px) {
  .mobile-image-fade {
    display: block;
  }
}

@media (max-width: 600px) {
  .left h2 {
    margin-top: 1rem;
    text-align: center;
    padding: 0 1rem;
    font-size: 1.2rem;
  }
}

/* Haupt-Headline */
.main-headline {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 2rem;
  letter-spacing: 1px;
}

.main-headline span {
  color: var(--highlight);
}

@media (max-width: 600px) {
  .main-headline {
    font-size: 2.7rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0rem !important;
    padding: 0 1rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .mobile-image-fade {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: opacity 1s ease-in-out;
  }
}

.main-headline,
.mobile-headline-overlay {
  font-family: 'PT Serif', serif;
}

.contact-info a {
  color: #fff !important;
  text-decoration: none !important;
}

.contact-info a:hover {
  color: var(--highlight) !important;
  text-decoration: underline !important;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-box {
  background-color: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  width: 250px;
  text-align: left;
  color: #ddd;
}

#impressumContent a,
#privacyContent a {
  color: #fff;
  text-decoration: underline;
}


/* --- Testimonials (alte Sektion, aktuell nicht auf der Seite) --- */
.testimonials {
  background: #000;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.testimonial-title {
  font-size: 34px;
  color: #50b9ff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 0 30px;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  width: 330px;
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote {
  font-size: 45px;
  margin: 0;
  color: #47b1ff;
  line-height: 0.7;
}

.testimonial-card h3 {
  font-size: 20px;
  margin-top: 5px;
}

.testimonial-card .role {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-card .text {
  line-height: 1.5;
  font-size: 15px;
  margin-bottom: 25px;
}

.user-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.user-footer img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #50b9ff;
}

.user-footer strong {
  font-size: 15px;
}

.user-footer span {
  font-size: 13px;
  opacity: 0.7;
}

.stars {
  margin-left: auto;
  font-size: 17px;
  color: #ffd700;
}

@media (max-width: 900px) {
  .testimonial-card {
    width: 280px;
  }
}

@media (max-width: 600px) {
  .testimonial-slide {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    width: 90%;
  }
}

/* Review Section (Swiper mit 3 Karten) */
.reviews-section {
  padding: 5rem 1rem;
  background: #111;
  color: #fff;
  text-align: center;
}

.reviews-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

/* Swiper Container für Reviews */
.reviews-swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

/* Ein Slide enthält 3 Karten nebeneinander */
.reviews-swiper .swiper-slide {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
}

/* Glassy Card */
.review-card {
  padding: 1.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  max-width: 320px;
  flex: 1;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review-card h3 {
  margin: 0 0 0.3rem;
}

.stars {
  color: #ffdd55;
  font-size: 1.1rem;
  margin: 0.5rem 0 1rem;
}

.review-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Pagination Dots */
.reviews-pagination .swiper-pagination-bullet {
  background: #666;
  opacity: 1;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--highlight, #b82e2e);
}

/* Mobile: Karten untereinander */
@media (max-width: 900px) {
  .reviews-swiper .swiper-slide {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    max-width: 90%;
  }
}

/* ===== Allgemeine H2-Regel (gilt jetzt für Services / Pricing / Gallery / Contact / Reviews usw.) ===== */
h2 {
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}
.fly-in {
  text-align: center;
  font-weight: 300;          /* dünner */
  font-size: 1.3rem;         /* angenehm lesbar */
  letter-spacing: 1px;       /* leichter spacing, wirkt hochwertig */
  margin-top: 1rem;          /* kleiner Abstand nach oben */
}
.review-card h3 {
  font-weight: 400;    /* dünner */
  font-size: 1.2rem;   /* optional: etwas kleiner */
}
.stars {
  color: #ffdd55;
  font-size: 0.8rem;  /* kleiner */
  margin: 0.3rem 0 0.8rem;
}
/* Reviews bleiben auch auf Mobile sichtbar */
/* ================================
   ABOUT CARDS – PREMIUM DESIGN
   ================================ */

.about-cards {
  padding: 7rem 2rem;
  background: #111;
  color: #fff;
  text-align: center;
}

.about-cards-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-cards-sub {
  opacity: 0.6;
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

.about-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.about-card {
  background: #181818;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease-out;
}

.card-label {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #b82e2e;
  margin-bottom: 0.5rem;
}

.card-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-caption {
  font-style: italic;
  opacity: 0.7;
}

.card-name {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: -0.5rem;
}

.card-content p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.card-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-facts li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.card-facts li span {
  font-weight: 700;
  color: #fff;
}

/* AWWARDS ANIMATIONS */
.fade-in-left { transform: translateX(-60px); }
.fade-in-right { transform: translateX(60px); }
.fade-in-up { transform: translateY(60px); }

.show {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
}
/* VIDEO CARD */
.about-card-video {
  position: relative;
  overflow: hidden;
}

.about-card-video .video-wrapper {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.about-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  border-radius: 18px;
}

/* TEXT OVER THE VIDEO (OPTIONAL) */
.about-card-video .card-facts {
  position: relative;
  z-index: 2;
}

/* Fade animations */
.fade-in-right {
  opacity: 0;
  transform: translateX(70px);
  transition: 0.8s ease-out;
}

.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile video */
@media (max-width: 768px) {
  .about-card-video .video-wrapper {
    height: 180px;
  }
}
#videoPlayer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 1s ease; /* weicher Übergang */
  opacity: 1;
}
.map-consent-box {
  background: #111;
  color: #eee;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 2rem auto;
  border: 1px solid #333;
}

.map-consent-box button {
  background: #b8875d;
  padding: 10px 20px;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 1rem;
}

.map-consent-box button:hover {
  background: #a06e4b;
}
.map-consent-box {
  background: #111;
  color: #eee;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 2rem auto;
  border: 1px solid #333;
}

.map-consent-box button {
  background: #b8875d;
  padding: 10px 20px;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 1rem;
}

.map-consent-box button:hover {
  background: #a06e4b;
}
.hero-logo {
  width: 140px;          /* Größe anpassen wie du willst */
  margin: 0 auto 20px;   /* Abstand zur Headline */
  display: block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo {
    width: 180px;       /* feste sichtbare Größe */
    display: block;
    margin: 0 auto 20px;
    z-index: 50;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.9));
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
