@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:wght@500;700&display=swap');

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #444;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

/* HERO EFFEKTE */
.relative.bg-cover.bg-center {
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .relative.bg-cover.bg-center {
    background-attachment: fixed;
  }
}

/* Swiper Anpassungen */
.swiper {
  padding-bottom: 3rem;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px !important;
}

@media (max-width: 640px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: lime !important;
  opacity: 0.25;
  transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}