/* Grundlayout und Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f0f0f0;
}

/* Container für zentrierte Inhalte */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #3498db;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hamburger {
  display: none;
}

/* Hero-Bereich */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #0f25e9;
}

.hero-content p {
  font-size: 1.5rem;
  color: #181616;
}

.cta-btn {
  background: #f39c12;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 20px;
}

/* Dienstleistungen */
.services {
  background: #fff;
  padding: 50px 0;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.card img {
  max-width: 100%;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  background: #3498db;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

/* Über uns */
.about {
  background: #f0f0f0;
  padding: 50px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about .text {
  flex: 1;
}

.about .image {
  flex: 1;
}

.about .image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Kontaktformular */
.contact {
  background: #fff;
  padding: 50px 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
}

.contact button {
  background: #f39c12;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

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

footer .social-links {
  list-style: none;
  margin: 10px 0;
}

footer .social-links li {
  display: inline-block;
  margin: 0 10px;
}

footer .social-links a {
  color: #fff;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: block;
    position: absolute;
    right: 0;
    top: 60px;
    background: #3498db;
    width: 200px;
    text-align: left;
  }
}
