/* General Settings */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #040402; /* dunkler Hintergrund */
  color: #fff;
}

/* Hero Section */
.about-hero {
  background: url("https://i.imgur.com/kSZfWWb.jpeg") center/cover no-repeat fixed;
  position: relative;
  text-align: center;
  padding: 120px 20px;
}
.about-overlay {
  background: rgba(4, 4, 2, 0.85); /* leicht transparenter dunkler Overlay */
  padding: 80px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.about-logo img {
  width: 150px;
  margin-bottom: 20px;
}
.about-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #e63946;
}
.about-content .intro {
  font-size: 1.2em;
  line-height: 1.8;
  color: #ddd;
}

/* Mission / Innovation / Community */
.about-details-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #040402;
}
.about-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.about-box {
  background-color: #040402;;
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 280px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
.about-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
.about-box h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #fff;
}
.about-box p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 20px;
  background-color: #040402;
  text-align: center;
}
.timeline-section h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #e63946;
}
.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.timeline-event {
  max-width: 700px;
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.timeline-event .year {
  font-weight: bold;
  color: #e63946;
  font-size: 1.5em;
}

/* Team Section */
.team-section {
  background: #040402;;
  padding: 80px 20px;
  text-align: center;
}
.team-section h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #e63946;
}
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.team-member {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 12px;
  max-width: 300px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.team-member h3 {
  margin: 10px 0 5px;
  color: #fff;
}
.team-member .role {
  font-style: italic;
  color: #e63946;
  margin-bottom: 10px;
}
.team-member .bio {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.5;
}

/* Projects Section */
.projects-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #040402;
}
.projects-section h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #e63946;
}
.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.projects-container img {
  width: 280px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.projects-container img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-details, .team-container, .projects-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-content h1 {
    font-size: 2.2em;
  }

  .timeline-event, .team-member, .projects-container img {
    max-width: 100%;
  }
}
