
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #fffdf8;
  color: #4a4a4a;
}

header {
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 2rem;
}

.main-logo {
  width: 120px;
  margin-bottom: 1rem;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #bfa15a;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #fffdf8, #fdf6ec);
}

.button {
  display: inline-block;
  background: #bfa15a;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 20px;
  font-size: 1.1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
}

.card {
  background: white;
  border: 1px solid #e0d6c2;
  padding: 1.5rem;
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(191, 161, 90, 0.15);
}

.about-text {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

footer {
  text-align: center;
  background: #fff6e2;
  padding: 1rem;
  color: #a0823a;
}

.background-logo {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('logo_gold_big.png');
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1;
}

.elegant {
  background-image: url('hero_background_fullpage.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: white;
}

.hero-header {
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  text-align: right;
}

.hero-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  margin: 0.5rem;
  color: #fff;
}

.hero-content p {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fdf6e6;
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  nav a {
    font-size: 0.9rem;
    margin-left: 10px;
  }
  .center-box {
    width: 90%;
    padding: 1.5rem;
  }
  .leistung {
    padding: 1rem;
  }
  body {
    padding: 1rem;
  }
  .gallery img {
    width: 100%;
    height: auto;
  }
}
