/* ==== GLOBAL ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
html {
  scroll-behavior: smooth;
}

/* ==== CONTAINER-GRID ==== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==== HEADER / NAVBAR ==== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: auto;
  width: 200px;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #111;
  font-weight: bold;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #00caff;
}

/* ==== BURGER-MENÜ ==== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.burger span {
  width: 25px;
  height: 3px;
  background-color: #111;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-links.active {
  display: block;
  flex-direction: column;
  gap: 10px;
}

/* ==== SLIDER ==== */
#slider {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
  transition: background-image 1s ease-in-out;
}
.slider-content {
  background: none;
  color: #fff;
  padding: 0;
  max-width: 700px;
}
.slider-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.slider-content p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.cta-button {
  font-size: 1.2rem;
  padding: 14px 30px;
  background-color: #00caff;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.cta-button:hover {
  background-color: #00a3d1;
}

/* ==== SEKTIONEN ==== */
section {
  padding: 100px 40px;
  scroll-margin-top: 120px;
}

/* ==== LEISTUNGEN ==== */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: center;
}
.service-item img {
  width: 240px;
  transition: transform 0.3s ease;
  box-shadow: none; /* Schatten entfernt */
}
.service-item img:hover {
  transform: scale(1.08) translateY(-6px);
}
.service-item h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ==== SPECIALS ==== */
.specials-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.special-item img {
  width: 160px;
  margin-bottom: 20px;
}
.special-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}
.specials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.special-box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 500px;
  flex: 1 1 400px;
}
.special-box h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 10px;
}
.special-box ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}
.special-box img.special-banner {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.special-box img.special-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.special-description {
  font-weight: 500;
  margin-bottom: 20px;
}
.special-details p {
  margin-bottom: 15px;
}
.special-details ul {
  margin: 10px 0 20px;
  padding-left: 20px;
  list-style: disc;
}
.highlight {
  color: #00caff;
  font-weight: bold;
}
.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}
.price .new {
  color: #00caff;
}
.savings {
  font-size: 0.95rem;
  color: #d10055;
  margin-bottom: 20px;
  text-align: center;
}
.specials-cta {
  text-align: center;
  margin-top: 60px;
}
.specials-cta .cta-button {
  font-size: 1.2rem;
  padding: 14px 30px;
  background-color: #00caff;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.specials-cta .cta-button:hover {
  background-color: #0099cc;
}

/* ==== ABOUT / TIMELINE ==== */
.timeline {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding-left: 20px;
  border-left: 3px solid #00caff;
}
.timeline-item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: #00caff;
  border-radius: 50%;
}
.event-bilanz {
  text-align: center;
  margin-top: 60px;
}
.event-bilanz h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.counters {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.counters div {
  text-align: center;
}
.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00caff;
  display: block;
  margin-bottom: 10px;
}

/* ==== FOOTER ==== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
  font-size: 14px;
}
footer a {
  color: #00caff;
}

/* ==== MEDIA QUERIES ==== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 80px;
    right: 40px;
    width: auto;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  section {
    padding: 80px 20px;
  }

  .slider-content h1 {
    font-size: 2.2rem;
  }

  .slider-content p {
    font-size: 1.1rem;
  }

  .special-box {
    max-width: 100%;
  }

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

  .counters {
    gap: 30px;
  }

  .services-grid {
    flex-direction: column;
    gap: 40px;
  }

  .service-item img {
    width: 180px;
  }

  .parallax-break,
  .parallax-break-2,
  .parallax-break-3 {
    background-attachment: scroll;
  }
}

/* ==== PARALLAX BREAKS ==== */
.parallax-break,
.parallax-break-2,
.parallax-break-3 {
  height: 400px;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.parallax-break {
  background-image: url('../img/break1.jpg');
}

.parallax-break-2 {
  background-image: url('../img/break2.jpg');
}

.parallax-break-3 {
  background-image: url('../img/break3.jpg');
}
