* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff7fb;
  line-height: 1.6;
}

.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #c75b9b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #c75b9b;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(255, 220, 238, 0.7), rgba(255, 220, 238, 0.7)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 52px;
  color: #8a2f67;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #c75b9b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #a84380;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 90px 20px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  color: #8a2f67;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  width: 33%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: #c75b9b;
  margin-bottom: 15px;
}

.prices {
  background: #fff;
  border-radius: 20px;
}

.price-list {
  max-width: 600px;
  margin: auto;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid #f0cde0;
  font-size: 18px;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  max-width: 600px;
  margin: 30px auto 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

footer {
  background: #8a2f67;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Responsive für Handy */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .price-list div {
    flex-direction: column;
    gap: 5px;
  }
}

.about-box,
.location-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  max-width: 750px;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-box p {
  margin-bottom: 15px;
}

.location {
  background: #fff0f7;
  border-radius: 20px;
}

.location-image {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-image {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.about-box {
  flex: 1;
  text-align: left;
}

.logo img {
  height: 75px;
}

.contact-form {
   max-width: 650px;
  margin: 15px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #f0cde0;
  border-radius: 14px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c75b9b;
}

.contact-form button {
  background: #c75b9b;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #a84380;
}

@media (max-width: 768px) {

  .header {
    position: relative;
    padding: 5px 0;
  }

  .navbar {
    flex-direction: column;
    padding: 10px 20px;
  }

  .logo img {
    height: 80px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .hero {
    height: 65vh;
    margin-top: 0;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 18px;
  }
}