/* Globale Einstellungen */
body {
  margin: 0;
  padding: 0;
  font-family: 'Didonesque Roman', serif;
  line-height: 1.6;
  background-color: #fffdf5; /* Warmes Beige */
  color: #333;
  scroll-behavior: smooth; /* Sanftes Scrollen */
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header / Hero-Bereich */
.hero {
  position: relative;
  background: url('../bilder/garten.jpeg') center/cover no-repeat;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Dunkles Overlay für Lesbarkeit */
  z-index: 1;
  border-radius: 0 0 20px 20px;
}

.hero-content {
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin: 0 0 10px 0;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
  background-color: #fffdf5;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.3rem;
  color: #e76f51;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

/* Hauptseiten-Inhalte */
main {
  padding-top: 100px; /* Platz für feste Navigation */
}

section {
  margin-bottom: 60px;
}

h2 {
  color: #e76f51;
  margin-bottom: 20px;
  text-align: center;
}

/* Galerie-Vorschau */
.gallery-preview {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.gallery-preview a {
  text-decoration: none;
  color: #333;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.gallery-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-preview img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-preview p {
  margin-top: 12px;
  font-weight: bold;
  color: #e76f51;
  font-size: 1.1rem;
}

/* Buchung Buttons */
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

.btn {
  background: #f4a261;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: #e76f51;
  transform: translateY(-2px);
}

.btn i {
  margin-right: 8px;
}

/* Karte */
.map {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Footer */
footer {
  background-color: #eee;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}

footer .socials a {
  color: #e76f51;
  margin: 0 12px;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #f4a261;
}

footer p {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.9rem;
  }

  .gallery-preview {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .gallery-preview img {
    height: 180px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}