/* Reset / Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
}
.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Navigation & Header / Hero */
.hero {
  background: url('header.png') no-repeat center center;
  background-size: contain;
  color: white;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 600px;
}
.hero .inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}
.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero-content {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
}
.btn-primary:hover {
  background-color: #45a049;
}

/* About-Me Bild Scroll-Effekt */
.about-me img {
  transition: transform 0.6s ease-out;
  will-change: transform;
  transform-origin: center center;
  display: block;
  margin: 0 auto;
  transform: rotate(-15deg);
}

/* Sektionen */
.section-light {
  background-color: #f4f4f4;
}
.section-white {
  background-color: white;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Leistungen / Karten */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
}
.card h3 {
  margin-bottom: 15px;
  color: #4CAF50;
}

/* Preise */
.price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.price-item {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 25px;
  flex: 1 1 200px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.price-item h3 {
  margin-bottom: 10px;
  color: #333;
}
.price-item p {
  font-size: 1.5rem;
  color: #4CAF50;
}
.note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* Kontaktformular */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button {
  padding: 14px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}
.contact-form button:hover {
  background: #45a049;
}

/* Footer */
.site-footer {
  background: #333;
  color: #ccc;
  text-align: center;
  padding: 25px 0;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
}
.site-footer a:hover {
  color: white;
}
.leistungen-detail {
  background: #ffffff;
  padding: 60px 0;
}
.leistungen-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.leistungs-liste {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leistung-btn {
  background: #f0f0f0;
  border: none;
  padding: 12px;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-left: 5px solid transparent;
  transition: all 0.2s ease;
}
.leistung-btn:hover {
  background: #e6f5ed;
  border-left: 5px solid #4CAF50;
}
.leistungs-anzeige {
  flex: 2 1 600px;
}
.leistung-content {
  display: block;
}
.leistung-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  margin-top: 20px;
}
.kontaktbereich {
  padding: 60px 0;
  background: #ffffff;
}
.kontakt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.kontakt-formular {
  flex: 1 1 400px;
}
.kontakt-formular form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.kontakt-formular input,
.kontakt-formular textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.kontakt-formular textarea {
  resize: vertical;
  min-height: 120px;
}
.kontakt-formular button {
  padding: 14px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}
.kontakt-formular button:hover {
  background: #45a049;
}
.kontakt-info {
  flex: 1 1 300px;
}
.kontakt-info h3 {
  margin-bottom: 15px;
  color: #4CAF50;
}
.kontakt-info a {
  color: #333;
  text-decoration: none;
}
.kontakt-info a:hover {
  color: #4CAF50;
  text-decoration: underline;
}
