/* ==========================================================================
   TERMINE LAYOUT (KACHELN)
   ========================================================================== */

.termine-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.termin-card {
  display: flex;
  background-color: #FEFBF3;
  border: 2px solid #e2d1b5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  min-height: 180px; /* Garantiert einheitliche Höhen auf Desktops */
}

/* Bildbereich */
.termin-image-wrapper {
  width: 35%;
  min-width: 140px;
  max-width: 220px;
  position: relative;
}

.termin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Rechter Textbereich */
.termin-content {
  flex: 1;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.termin-content h3 {
  font-family: 'Garamond', serif;
  font-size: 1.8rem;
  color: #2c523e;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.termin-datum {
  font-size: 1.4rem;
  color: #c9a054; /* Edles Gold/Beige für das berechnete Datum */
  margin: 0 0 10px 0;
  font-weight: bold;
}

/* Der dreizeilige Infotext */
.termin-beschreibung {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}
/* ==========================================================================
   ZUSÄTZLICHER TERMIN-HINWEIS (REELSEN.DE)
   ========================================================================== */

.weitere-termine-hinweis {
  text-align: center;
  margin: 50px auto 30px auto; /* Etwas mehr Abstand nach oben und unten */
  padding: 0 20px;
  max-width: 800px;
}

.weitere-termine-hinweis p {
  font-family: 'Garamond', serif; /* Neue, edle Schriftart */
  font-size: 1.4rem;             /* Spürbar größere Schrift (vorher 1.15rem) */
  color: #2c523e;                /* Vereinsgrün */
  line-height: 1.4;
}

.weitere-termine-hinweis a {
  color: #c9a054;                /* Edles Gold/Beige */
  font-weight: bold;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid #c9a054; /* Feste, schicke Linie unter dem Link */
  transition: all 0.3s ease;
}

.weitere-termine-hinweis a:hover {
  color: #2c523e;                /* Wechselt beim Drüberfahren zu Vereinsgrün */
  border-bottom-color: #2c523e;  /* Linie färbt sich im Hover-Effekt mit um */
}
/* RESPONSIVE LAYOUT FÜR MOBILGERÄTE */
@media screen and (max-width: 600px) {
  .termin-card {
    flex-direction: column; /* Bild rutscht über den Text */
    min-height: auto;
  }
  
  .termin-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 160px; /* Feste Bildhöhe auf Mobilgeräten */
  }
  
  .termin-content {
    padding: 20px 15px;
    align-items: center;
    text-align: center;
  }
}
.seite h1 {
  font-family: 'Garamond', serif;
  font-size: 3rem;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(44, 82, 62, 0.2);
  padding: 0px 20px 20px 20px;
  color: #2c523e; /* Vereinsgrün */
  line-height: 1.6;
}
/* ==========================================================================
   SEITENTITEL (EXAKT WIE STARTSEITE)
   ========================================================================== */

.welcome-wrapper {
  text-align: center;
  margin: 40px 0 20px 0;
  position: relative;
}

.welcome-wrapper h1 {
  font-family: 'Garamond', serif;
  font-size: 2.8rem;
  color: #2c523e;
  font-weight: bold;
  margin: 0;
  display: inline-block;
  padding: 0 20px;
  background: #FEFBF3; /* Deckt die Linie im Hintergrund ab */
  position: relative;
  z-index: 2;
}

/* Linien links und rechts mit elegantem Ausfaden nach innen */
.welcome-wrapper::before,
.welcome-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 2px;
  z-index: 1;
}

.welcome-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(44, 82, 62, 0),   /* innen transparent */
    rgba(44, 82, 62, 1)    /* außen voll durchgezogen */
  );
}

.welcome-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(44, 82, 62, 0),   /* innen transparent */
    rgba(44, 82, 62, 1)    /* außen voll durchgezogen */
  );
}

