/* ===============================
   Hero Section für Hochzeits-Website
=================================*/
.hero-section {
  position: relative;
  min-height: 70vh;
  height: auto;
  padding: 3rem 1rem;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  border: solid 2px #D99C5B;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
	margin-bottom: 2rem;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
  pointer-events: none;
}

.hero-inner-container {
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem 2rem;
  border-radius: 1rem;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section__headline,
.hero-section__subline {
  position: relative;
  z-index: 2;
  color: #1F2937;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-section__headline {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section__subline {
  font-size: 1.25rem;
  text-decoration: underline;
}

.hero-kurz-erklärung {
  display: block;
  font-style: italic;
  border-left: 4px solid #D99C5B;
  padding: 1rem 1rem 1rem 1.5rem;
  color: #1F2937;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  border: solid 1px #D99C5B;
  max-width: 650px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.hero-cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.hero-cta-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.hero-cta-btn--primary {
  background: #D99C5B;
  color: #fff;
}

.hero-cta-btn--primary:hover {
  background: #FCCC70;
  color: #1F2937;
}

.hero-cta-btn--secondary {
  background: #FFFFFF;
  color: #D99C5B;
  border: 2px solid #D99C5B;
}

.hero-cta-btn--secondary:hover {
  background: #F5EBDD;
  color: #D99C5B;
}

/* ===============================
   Section Titles
=================================*/
.leistungen-section__title,
.preise-section__title,
.kontakt-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #1F2937;
}

.leistungen-section__title {
  color: #ffffff;
  text-shadow: 2px 2px 2px black;
}

/* ===============================
   Features / Leistungen
=================================*/
.arround-container-leistungen {
  background: rgba(255, 255, 255, 0.75);
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  border: solid 2px #D99C5B;
}

.leistungen-section__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.leistungen-section__card {
  background: linear-gradient(135deg, #FFFFFF, #EEEEEE);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid #D99C5B;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistungen-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.leistungen-section__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.leistungen-section__card-text {
  color: #6B7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.leistungen-section__cta {
  text-align: center;
  margin-top: 2rem;
}

.leistungen-section__btn {
  background: #D99C5B;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.leistungen-section__btn:hover {
  background: #FCCC70;
  color: #1F2937;
}

/* ===============================
   Preise / Pakete
=================================*/
.preise-section__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.preise-section__card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid #D99C5B;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preise-section__card--highlight {
  border-color: #FF6B81;
}

.preise-section__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.preise-section__card-subtitle {
  color: #6B7280;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.preise-section__card-price {
  font-size: 2rem;
  font-weight: bold;
  color: #D99C5B;
  margin: 1rem 0;
}

.preise-section__card-text {
  font-size: 0.95rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

.preise-section__card-btn {
  background: #D99C5B;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.preise-section__card-btn:hover {
  background: #FCCC70;
  color: #1F2937;
}

.preise-section.alt-bg {
  background: #F9FAFB;
  padding: 4rem 1rem;
}

/* ===============================
   Kontakt Section
=================================*/
.kontakt-section {
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem 1rem;
  margin: 2rem auto;
  border-radius: 1rem;
  border: 2px solid #D99C5B;
  max-width: 700px;
  text-align: center;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.kontakt-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1F2937;
}

.kontakt-section__text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.kontakt-section__cta {
  text-align: center;
}

.kontakt-section__btn {
  background: #D99C5B;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.kontakt-section__btn:hover {
  background: #FCCC70;
  color: #1F2937;
}

/* ===============================
   Responsive Anpassungen
=================================*/
@media (max-width: 768px) {
  .hero-section__headline {
    font-size: 2.25rem;
  }
  .hero-section__subline {
    font-size: 1.1rem;
  }
  .hero-kurz-erklärung {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    max-width: 90%;
  }
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-cta-btn {
    width: 90%;
    max-width: 300px;
  }
  .leistungen-section__features,
  .preise-section__cards {
    grid-template-columns: 1fr;
  }
  .preise-section__card-price {
    font-size: 1.75rem;
  }
  .kontakt-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
  }
  .kontakt-section__title {
    font-size: 1.75rem;
  }
  .kontakt-section__text {
    font-size: 0.95rem;
  }
  .kontakt-section__btn {
    padding: 0.6rem 1.2rem;
  }
}
