:root {
  --blue: #358094; /* neue Hauptfarbe */
  --blue-dark: #2a6774; /* dunklere Variante für Hover, Akzente */
  --gold: #f4d03f;
  --gold-dark: #c9a32f;
  --bg: #f8f6f2;
  --fg: #222;
  --muted: #777;
  --border: #ddd;
  --max-width: 1440px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 3.5rem 1.5rem 4.5rem;
  text-align: center;
  color: white;
  position: relative;
}

header h1 {
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 0;
  letter-spacing: 0.5px;
}
.header-h1 {
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 0;
  letter-spacing: 0.5px;
}
/* =========================================
   Header-Titel ohne H1, aber gleiches Design
   ========================================= */

.header-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem; /* wie dein altes H1 */
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0.5rem 0 0.2rem 0;
  letter-spacing: 0.5px;
}

/* Falls du den Header verkleinert hast */
header .header-title {
  line-height: 1.2;
}
.timeline-headline {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* Abstand zwischen Marker und Text */
  margin: 0;
  padding: 0;
}
.timeline-marker {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}


header p {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  opacity: 0.95;
}
.main-nav {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}





/* =========================================
   Impressum – Corps Athesia
   ========================================= */

.impressum-container {
  max-width: var(--max-width);
  margin: 3rem auto;
  background: white;
  padding: 3rem 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.impressum-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--blue-dark);
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.impressum-section {
  margin-bottom: 2.5rem;
}

.impressum-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.impressum-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.impressum-section a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.impressum-section a:hover {
  color: var(--gold);
}


/* =========================================
   Kontaktseite – Link-Styling wie Datenschutz
   ========================================= */

.kontakt-container a {
  color: #358094;
  text-decoration: none;
  font-weight: 600;
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2px;
  transition: 0.25s ease;
}

.kontakt-container a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}






/* Goldene Unterstreichung nur beim aktiven Menüpunkt */
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* Abstand zur Schrift */
  width: 100%;
  height: 2px;
  background-color: var(--gold); /* deine goldene Farbe */
  border-radius: 2px;
} /* Optional: Hover-Effekt (gleiche Linie, aber dezenter) */
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: rgba(212, 175, 55, 0.4); /* leicht transparentes Gold */
  border-radius: 2px;
}

/* Container wie Semesterprogramm */
.corpsgeschichte-container {
  max-width: 1440px;
  margin: 3rem auto;
  background: white;
  padding: 3rem 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

/* Abschnitt + untere Trennlinie */
.cg-section {
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 0; /* wichtig: kein Platz mehr für die Linie */
}

/* letzte Section ohne Linie */
.cg-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

/* Headline + Marker in einer Zeile */
.cg-section h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--blue);
}

/* gelber Punkt */
.timeline-marker {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}

/* Wasserzeichen-Jahreszahl */
.cg-year {
  position: absolute;
  top: -40px;
  right: 10px;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .cg-year {
    font-size: 2rem;
    top: -20px;
  }
}

/* BURGER */
.burger {
  display: none;
  width: 32px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10001;
}

.burger span {
  display: block;
  height: 4px;
  background: white;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* MOBILE NAV */
@media (max-width: 800px) {
  .burger {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.97);
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    z-index: 10000;
    align-items: flex-end;
  }

  .main-nav a {
    font-size: 1.3rem;
    padding: 0.4rem 0;
  }
}

/* BURGER ANIMATION */
.burger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.hero {
  height: 60vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* =========================================
   HERO IMAGE – ersetzt den grauen Block
   ========================================= */

.hero-image {
  position: relative;
  width: 100%;
  height: 900px; /* kannst du anpassen */
  background-image: url("header.jpg"); /* <-- dein Bild hier */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* Dunkles Overlay für bessere Lesbarkeit 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Text im Bild 
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 2;
}
*/
.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 0;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 700px) {
  .hero-image {
    height: 260px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}

main {
  max-width: var(--max-width);
  margin: 3rem auto;
  background: white;
  padding: 3rem 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

main h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-top: 2rem;
}

main p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
.event-preview {
  margin-top: 2rem;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  background: #faf9f6;
  border-radius: 8px;
}

.event-preview h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  color: var(--blue);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--gold);
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.card h4 {
  margin: 1rem;
  font-family: "Playfair Display", serif;
  color: var(--blue-dark);
}

.card-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.card.open .card-body {
  max-height: 300px;
  padding: 1rem;
}

.card-body p {
  margin-top: 0;
  line-height: 1.6;
}

.card-body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.event {
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.event:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.event-year {
  position: absolute;
  top: -40px;
  right: 10px;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}

.event-content {
  flex: 1;
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
  color: var(--blue);
}

.event-meta {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.event-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.site-footer {
  background: #000000;
  color: white;
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 0.25rem 0;
  transition: 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* MOBILE: Wasserzeichen-Abstand optimieren */
@media (max-width: 700px) {
  .event-year,
  .cg-year {
    position: relative;
    display: block;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-transform: uppercase;

    text-align: right;
  }

  /* Headline darunter bekommt zusätzlichen Abstand */
  .event-title,
  .cg-section h2 {
    margin-top: 0;
  }
}
.abkuerzungen {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.abkuerzungen h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 2rem;
}

.abkuerzungen dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 1rem;
  column-gap: 1.5rem;
}

.abkuerzungen dt {
  font-weight: 600;
  color: var(--blue-dark);
}

.abkuerzungen dd {
  margin: 0;
  line-height: 1.6;
}
/* Abkürzungsseite – gleiche Optik wie Semesterprogramm */

.abbr-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2rem;
  row-gap: 1.2rem;
  font-size: 1.05rem;
}

.abbr-list dt {
  font-weight: 700;
  color: var(--blue-dark);
}

.abbr-list dd {
  margin: 0;
  line-height: 1.6;
}
/* ================================
   Corpsgeschichte – Variante 2
   Rechtsbündige Bilder im Textfluss
   ================================ */

.cg-float-image {
  float: right;
  width: 40%;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cg-float-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cg-caption {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 0.4rem;
}

/* Mobile: Bild unter dem Text, volle Breite */
@media (max-width: 700px) {
  .cg-float-image {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
  }
}

/* =========================================
   HEADER – halb so hoch auf allen Seiten
   ========================================= */

header {
  padding: 1.5rem 0; /* vorher vermutlich ~3rem */
}

header p {
  font-size: 1rem; /* etwas kleiner */
  margin-top: 0;
}

.main-nav a {
  padding: 0.4rem 0; /* weniger vertikaler Abstand */
}

/* Mobile Header ebenfalls kompakter */
@media (max-width: 700px) {
  header {
    padding: 1rem 0;
  }

  header h1 {
    font-size: 1.4rem;
  }

  header p {
    font-size: 0.9rem;
  }
}
/* =========================================
   WAPPEN – halb im Header, halb darunter
   ========================================= */

.wappen-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px; /* hebt das Bild in den Header hinein */
  z-index: 10; /* über Header + Inhalt */
}

.wappen {
  width: 70px; /* Größe des Wappens – anpassbar */
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

/* =========================================
   BUTTONS – Corps Athesia Semesterprogramm
   ========================================= */

.semester-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  background: white;
  border: 2px solid var(--gold);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.semester-btn:hover {
  background: var(--gold);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.semester-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Linksammlung – im Stil der Corpsgeschichte/Abkürzungen */

.link-block {
  margin-top: 2.5rem;
}

.link-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 0.8rem;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.link-list li span:first-child {
  font-weight: 600;
  margin-right: 0.3rem;
}

.link-list a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1px;
}

.link-list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
/* =========================================
   Trennlinien für Linksammlung
   ========================================= */

.link-separator {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 2.5rem 0;
}

/* Mobile: Wappen etwas kleiner */
@media (max-width: 700px) {
  .wappen {
    width: 70px;
  }
  .wappen-wrapper {
    margin-top: 10px;
  }
  /* =========================================
   Header-Titel – Mobile Variante
   ========================================= */

  @media (max-width: 700px) {
    .header-title {
      font-size: 1.8rem; /* vorher H1 mobile Größe */
      padding: 0.3rem 0;
      line-height: 1.2;
    }

    .header-h1 {
      color: var(--blue);
      font-family: "Playfair Display", serif;
      font-size: 2rem;
      margin: 0;
      letter-spacing: 0.5px;
    }
  }
  .event {
    display: block !important; /* verhindert nebeneinander */
  }
  .timeline-marker {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
  }
  .event-year {
    display: block;
    text-align: left; /* oder center, je nach Stil */
    margin-bottom: 0.5rem;
    margin-top: 2rem;
  }
  .event-title {
    display: block;
    text-align: left;
  }
}








/* =========================================
   Corps Athesia – Bildslider
   ========================================= */

.athesia-slider {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.athesia-slide {
  display: none;
  width: 100%;
}

.athesia-slide.active {
  display: block;
}

.athesia-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slider-Dots */
.athesia-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.athesia-slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.athesia-slider-dots .dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}

/* Mobile */
@media (max-width: 700px) {
  .athesia-slider {
    border-radius: 8px;
  }
}


/* =========================================
   Feature-Balken – Corps Athesia Startseite
   ========================================= */
/* Vollbreiter Balken */
.athesia-feature-bar {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 3rem 0;
  margin: 4rem 0;
}

/* Desktop: 8 Icons nebeneinander */
.feature-slider {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4rem;
}

/* Items */
.feature-item {
  text-align: center;
  color: rgb(0, 0, 0);
  min-width: 120px;
}

.feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 0.8rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.feature-item p {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

/* Tablet: Slider mit 3 Icons sichtbar */
@media (max-width: 1000px) {
  .feature-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 1rem;
  }

  .feature-item {
    flex: 0 0 calc(33.33% - 1rem);
    scroll-snap-align: center;
  }
}

/* Mobil: Slider mit 2 Icons sichtbar */
@media (max-width: 600px) {
  .feature-item {
    flex: 0 0 calc(50% - 1rem);
  }

  .feature-item img {
    width: 40px;
    height: 40px;
  }

  .feature-item p {
    font-size: 0.95rem;
  }
}

/* Scrollbar ausblenden */
.feature-slider::-webkit-scrollbar {
  display: none;
}
.feature-headline {
  text-align: center;


  margin-bottom: 4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--blue);
}

/* Mobil kleiner */
@media (max-width: 600px) {
  .feature-headline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 700px) {
  h2,
  .cg-section h2,
  .event-title,
  .feature-headline,
  .impressum-title,
  .impressum-section h2 {
    font-size: 26px !important;
    line-height: 1.25;
  }
}.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 38, 0.97); /* edles Dunkelblau */
  padding: 6rem 2.5rem 3rem;
  gap: 1.4rem;
  z-index: 10000;
  align-items: flex-start;

  /* weiche Fade-In Animation */
  animation: menuFade 0.35s ease forwards;
}

/* Menü-Links */
.main-nav.open a {
  font-size: 1.6rem;
  font-family: "Playfair Display", serif;
  color: white;
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  width: 100%;
  transition: 0.25s ease;
}

/* Goldener Hover-Effekt */
.main-nav.open a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav.open a:hover::after {
  width: 100%;
}

/* Aktiver Menüpunkt */
.main-nav.open a.active {
  color: var(--gold);
}

/* Animation */
@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   Linksammlung – schönes Link-Design
   ========================================= */

.link-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2px;
  transition: 0.25s ease;
}

.link-list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* =========================================
   Corpsgeschichte – Wasserzeichen mobil entfernen
   ========================================= */
@media (max-width: 700px) {

  /* Das echte Wasserzeichen-Element */
  .timeline-marker {
    display: none !important;
  }

  /* Falls es doch Pseudoelemente gibt */
  .timeline-marker::before,
  .timeline-marker::after {
    display: none !important;
    content: none !important;
  }

  /* Falls die Jahreszahl ein Hintergrundbild hat */
  .cg-year {
    background: none !important;
  }
}/* =========================================
   Corpsgeschichte – Wasserzeichen (cg-year) mobil entfernen
   ========================================= */
@media (max-width: 700px) {
  .page-corpsgeschichte .cg-year {
    display: none !important;
  }
}
.cg-section::after {
  content: "";
  display: block;
  clear: both;
}