/* about.css */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Header Banner */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/entruempelung.png')
              center/cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

/* Über uns Abschnitt */
.about-section {
  padding: 80px 0;
}

.about-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.about-section p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

/* Info Boxen */
.info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.back-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 25px;
  background-color: #222;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  margin-top: 80px;
}
