/* Grundlegende Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fdf6f0;
  color: #333;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffebf0; /* Pastellfarbe */
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin-left: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.navbar a.active {
  color: #a88fc2;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger Menü für mobile */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffebf0;
    position: absolute;
    top: 60px;
    left: 0;
  }
  .navbar ul.active {
    display: flex;
  }
  .navbar li {
    margin: 15px 0;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
}

/* Header */
header {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(120deg, #ffd1dc, #c1e1c1); /* Pastell-Farbverlauf */
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Main Content */
main {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
}

section {
  margin-bottom: 60px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #ffebf0;
  font-size: 0.9rem;
  color: #555;
}

/* Agenda Grundlayout */
.agenda {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.agenda-header {
  text-align: left;
  margin-bottom: 2rem;
}

.agenda-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0.8;
}

.agenda-header h1 {
  font-size: 2rem;
  margin: 0.3rem 0;
}

.agenda-stand {
  font-size: 0.9rem;
  color: #666;
}

.agenda h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.agenda h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.agenda p {
  margin-bottom: 0.9rem;
}

.agenda ul {
  margin: 0.3rem 0 1.2rem 1.3rem;
  padding: 0;
}

.agenda ul li {
  margin-bottom: 0.5rem;
}

/* Slogan-Block */
.agenda-slogan-block {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid #3b7a57;
  background: rgba(59, 122, 87, 0.06);
}

.agenda-slogan {
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* Hinweis */
.agenda-hinweis {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

/* Footer Agenda */
.site-footer {
  background-color: #1f2f2a;
  color: #ffffff;
  padding: 2rem 1.5rem;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

.site-footer a {
  color: #b7e1cd;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Grundbereich */
.team {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  font-family: system-ui, sans-serif;
}

/* Titel */
.team h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 600;
}

/* Accordion-Element */
.team details {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 12px;
  border: 1px solid #e2e2e2;
  transition: all 0.2s ease;
}

/* Hover-Effekt */
.team details:hover {
  background: #f1f1f1;
  border-color: #ccc;
}

/* Summary Block */
.team summary {
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
  text-align: center;
}

/* Standard-Pfeil ausblenden */
.team summary::-webkit-details-marker {
  display: none;
}

/* Text + Pfeil (geschlossen) */
.team summary::after {
  content: "Mehr anzeigen ▼";
  font-size: 0.9rem;
  margin-top: 6px;
  color: #666;
  transition: all 0.2s ease;
}

/* Text + Pfeil (offen) */
.team details[open] summary::after {
  content: "Weniger anzeigen ▲";
  color: #333;
}

/* Profilfoto */
.profilfoto {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}

/* Text */
.team p {
  margin-top: 10px;
  line-height: 1.5;
  color: #444;
}
.profilbild-gross {
  width: 100%;
  height: auto;
  max-width: 600px; /* optional */
  display: block;
  margin: 15px auto;
  border-radius: 12px;
  object-fit: cover;
  touch-action: manipulation; /* Handy-Zoom funktioniert */
}
