/* Basiseinstellungen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 60px;
  height: auto;
}

.site-title h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.site-title p {
  font-size: 1rem;
  color: #555;
}

/* Intro */
.intro {
  background: linear-gradient(135deg, #f0a02b, #e38400);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.intro .badge {
  background: white;
  color: #e38400;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-block;
}

/* Leistungen */
.leistungen {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.leistungen .fas {
  color: #e38400;
  font-size: 1.5rem;
}

.leistungen h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.leistung {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}

.leistung i {
  color: #28a745;
  font-size: 1.3rem;
}

.leistung:hover {
  transform: translateY(-4px);
}

/* Kontakt */
.kontakt {
  background: #f8f8f8;
  padding: 60px 0;
}

.kontakt h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.kontakt-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.kontakt-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.05rem;
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kontakt-item i {
  color: #f0a02b;
  font-size: 1.2rem;
  min-width: 20px;
}

.map-container {
  flex: 1 1 400px;
  min-height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: #e38400;
  color: #fff;
  padding: 20px 0;
  font-size: 0.9rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
}

.footer-menu li a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    justify-content: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .kontakt-wrapper {
    flex-direction: column;
  }

  .leistung {
    justify-content: flex-start;
  }
}
