/* Global Styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Hintergrundbild für die gesamte Seite */
body {
  background-image: url('./bg.jpg'); /* Dein Bild hier einfügen */
  background-size: conver; /* Bild wird so skaliert, dass es den gesamten Bildschirm abdeckt */
  background-position: center center; /* Bild wird zentriert */
  background-attachment: fixed; /* Hintergrundbild bleibt fixiert, wenn man scrollt */
  color: white; /* Textfarbe auf weiß setzen, damit der Text gut lesbar bleibt */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Um die Seite gleichmäßig zu verteilen */
}

/* Header */
header {
  padding: 100px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* Dunkler Overlay hinter dem Header-Text für bessere Lesbarkeit */
  color: white;
}

header h1 {
  font-size: 3em;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Textschatten für besseren Kontrast */
}

header h2 {
  font-size: 1.5em;
  margin: 10px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Navigation */
nav ul {
  list-style-type: none;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

/* Section Styles */
section {
  padding: 40px 20px;
  margin: 20px 0;
  background-color: rgba(20, 20, 20, 0.6); /* Weißer Hintergrund mit Transparenz */ 
}

section#services .service {
  margin-bottom: 20px;
}

section#value p {
  font-size: 1.1em;
}

/* CTA Button */
.cta-button {
  background-color: #999999;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #bbbbbb;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

.left-image {
  max-width: 50%;
  height: auto;
  border: 5px ridge white;
  float: left;
  margin-right: 10px; /* Abstand linkss vom Bild */
  margin-left: 10px; /* Abstand rechts vom Bild */
  margin-bottom: 10px; /* Abstand unten vom Bild */
}

.right-image {
  max-width: 50%;
  height: auto;
  border: 5px ridge white;
  float: right;
  margin-right: 10px; /* Abstand links vom Bild */
  margin-left: 10px; /* Abstand rechts vom Bild */
  margin-bottom: 10px; /* Abstand unten vom Bild */
}
