/* Datei: assets/css/vorstand.css */

main.vorstand section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 60, 136, 0.08);
    text-align: center;
}

.vorstand h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.vorstand p {
    color: #3a3a3a;
    margin-bottom: 30px;
}

.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.vorstand-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 60, 136, 0.1);
    text-align: center;
}

.vorstand-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.vorstand-card:hover {
    transform: translateY(-4px);
}

.vorstand-card h3 {
    margin-top: 0;
    color: #003c88;
    margin-bottom: 8px;
}

.vorstand-card strong {
    color: #2c3e50;
}

.vorstand-card a {
    color: #003c88;
    text-decoration: none;
}

.vorstand-card a:hover {
    text-decoration: underline;
}

.kontakt-vorstand {
  margin-top: 50px;
  padding: 30px;
  background-color: #f4f8fc;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 60, 136, 0.08);
}

.kontakt-vorstand h2 {
  color: #003c88;
  margin-bottom: 10px;
}

.kontakt-vorstand p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.kontakt-vorstand .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #003c88;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.kontakt-vorstand .cta-button:hover {
  background-color: #002d6c;
}

/* ===== Kontakt-Button gezielt stylen ===== */
.kontakt-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.kontakt-button {
    display: inline-block;
    background-color: #436181;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.kontakt-button:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}