body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

header {
  background: url('images/edersee.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header h1 {
  font-size: 2.5em;
  margin: 0;
}

header p {
  font-size: 1.2em;
  margin: 10px 0;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #0056b3;
}

section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

section p, section ul {
  font-size: 1.1em;
}

section ul {
  list-style: none;
  padding: 0;
}

section ul li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

section ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.portfolio-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.contact-links {
  text-align: center;
  margin-top: 20px;
}

.contact-links a {
  margin: 0 10px;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Styling für #contact */
.highlight-section {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  margin: 20px auto;
  animation: fadeIn 1s ease-in-out;
}

.contact-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745; /* Grün */
  color: white !important; /* Weiße Schrift, überschreibt Konflikte */
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
  font-weight: bold;
}

.contact-button:hover {
  background-color: #218838; /* Dunkleres Grün */
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  header { height: 50vh; }
  header h1 { font-size: 1.8em; }
  header p { font-size: 1em; }
  section h2 { font-size: 1.5em; }
  .portfolio-grid { grid-template-columns: 1fr; }
}