/* Grundlegendes Styling (Farben an komplettwebdesign.de angelehnt) */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #0b2a46 !important;
  opacity: 1;
  background-image: radial-gradient(
      rgba(231, 182, 166, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(rgba(231, 182, 166, 0.1) 2px, #0b2a46 2px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}

/* Abschnittscontainer */
.about-section {
  margin: 0 auto;
  padding: 2em 1em;
  color: #d9d9d7;
}

/* Überschriften-Stile */
.about-section h2 {
  font-size: 2em;
  color: #ff6538; /* Dunkler Blauton (Corporate Design) */
  margin-top: 0.5em;
  text-align: left;
  position: relative;
}
.about-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #1a3d5d;
  margin-top: 0.3em;
}

/* Hero Section */
.hero-section {
  background-color: #1a3d5d; /* Dunkles Blau für Kontrast */
  color: #fff;
  padding: 4em 1em;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-content {
  flex: 1 1 400px;
}
.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
  animation: fadeInDown 1s ease both;
}
.hero-content .subtitle {
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 0;
}
.hero-content .wave {
  display: inline-block;
  animation: waveHand 2s infinite;
}
.hero-image {
  flex: 1 1 300px;
  text-align: center;
  padding: 1em;
}
.hero-image img.profile-pic {
  max-width: 180px;
  border-radius: 50%;
  border: 4px solid #fff;
  animation: fadeIn 2s ease both;
}

/* Leistungen (Services) Liste */
.services-list {
  list-style: none;
  padding: 0;
}
.services-list li {
  margin: 0.5em 0;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  color: #eaeae9;
}
.services-list .icon {
  font-size: 1.5em;
  margin-right: 0.5em;
  line-height: 1;
  /* (Icons werden hier als Emojis verwendet. Falls Icon-Font, entsprechend anpassen.) */
}
.services-list .icon:hover {
  transform: scale(1.2);
  transition: transform 0.2s;
}

/* Fun Facts Liste */
.fun-facts {
  list-style: none;
  padding: 0;
}
.fun-facts li {
  margin: 0.5em 0;
}

/* Nummerierte Schritte (Workflow) */
.workflow-steps {
  counter-reset: step;
  margin-left: 0;
  padding-left: 0;
}
.workflow-steps li {
  list-style: none;
  counter-increment: step;
  position: relative;
  margin: 1em 0;
  padding-left: 2em;
}
.workflow-steps li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #eaeae9;
}

/* Projekt-Highlight Bild */
.project-image {
  text-align: center;
  margin: 1.5em 0;
}
.project-image img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  transition: transform 0.3s;
}
.project-image img:hover {
  transform: scale(1.02);
  border-color: #1a3d5d;
}

/* Call-to-Action Bereich */
.cta-section {
  background-color: #1d63a3;
  opacity: 1;
  background-image: repeating-radial-gradient(
      circle at 0 0,
      transparent 0,
      #0b2a460a 16px
    ),
    repeating-linear-gradient(#eaeae955, #eaeae9);
  text-align: center;
  padding: 2.5em 1em;
}
.cta-section h2 {
  font-size: 2em;
  color: #1a3d5d;
  margin-bottom: 0.2em;
}
.cta-section p {
  font-size: 1.1em;
  margin: 0.5em auto;
  max-width: 600px;
}
.cta-section .note {
  font-size: 0.9em;
  color: #555;
}

/* Einbettung des Buchungs-Widgets (z.B. als iFrame oder Formular) */
.booking-widget {
  margin: 1em auto;
}
.booking-widget iframe,
.booking-widget form {
  width: 100%;
  max-width: 400px;
  height: 400px;
  border: none;
}

/* Hover-Effekt für allgemeine Links/Buttons */
a:hover,
button:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}

/* Zwei-Spalten-Layout für Desktop */
.two-column {
  display: flex;
  gap: 2rem;
  max-width: 1260px;
  width: 80%;
  margin: 0 auto;
  text-align: justify;
  flex-wrap: wrap;
}

.two-column h2 {
  flex-basis: 100%;
  margin-bottom: 1em;
}
.two-column .column {
  flex: 1 1 100%;
}

/* Responsives Design: Anpassungen für kleinere Bildschirme */
@media (max-width: 600px) {
  .two-column {
    flex-direction: column;
    padding: 0;
  }
  .two-column .column {
    width: 100%;
    flex: 1 1 100%;
  }
  .two-column .column p {
    margin-bottom: 1.5em;
  }
  .hero-section {
    padding: 3em 1em;
    flex-direction: column;
  }
  .hero-content {
    text-align: center;
    margin-top: 30px;
  }
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-image {
    margin-top: 1.5em;
  }
  .services-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-list .icon {
    margin-bottom: 0.2em;
  }
}

@media (max-width: 500px) {
  .two-column {
    font-size: 1.05em;
    line-height: 1.7;
  }
}

/* Keyframe Animationen */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes waveHand {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
