body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.logo span {
  font-weight: bold;
  font-size: 1.5rem;
}

/* Menüleiste */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0.75rem;
  display: block;
}

.nav-links a:hover {
  color: red;
}

/* Dropdown-Menü */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 180px;
  padding: 0.5rem 0;
  z-index: 1100;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  padding: 0.5rem 1rem;
  color: #333;
  transition: color 0.3s;
}

.dropdown-content li a:hover {
  color: red;
}

/* Hover (Desktop) */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Toggle-Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    right: 0;
   width: 35%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-bottom-left-radius: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown.show .dropdown-content {
    display: block;
  }
}

/* Cursor für Dropdown */
.dropdown-toggle {
  cursor: pointer;
}



/* Allgemeine Navigation */
.navbar {
    position: fixed;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  height: 50px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    width: 220px;
    display: none;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .nav-links li a {
    color: #1d1d1f;
    font-weight: 500;
    text-decoration: none;
  }

  .nav-links li a:hover {
    color: #e63946;
  }
}
/* Burger-Menü nur auf kleinen Bildschirmen anzeigen */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Hero-Bereich */
.hero-header {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
}




















:root {
  --wtv-rot: #d3222a;
  --wtv-blau: #003e7e;
  --wtv-weiss: #ffffff;
}

body {
  margin: 0;
  background-color: var(--wtv-weiss);
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

/* Überschrift & Trennlinie */
.termine-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--wtv-blau);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.heading-underline {
  width: 60px;
  height: 4px;
  background-color: var(--wtv-rot);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

section.termine-info {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Scrollschild */
.scroll-hint {
  text-align: center;
  background-color: var(--wtv-blau);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 1rem auto 2rem;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: floatHint 2.8s ease-in-out infinite;
}


.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.termin-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease;
  cursor: pointer;

  /* Verhindert, dass Text aus der Box "herausläuft" */
  overflow: hidden;
  word-wrap: break-word;
}

.termin-card:hover {
  transform: scale(1.03);
}

.termin-card time {
  display: block;
  font-weight: bold;
  color: #0055cc; /* Blau statt Rot */
  margin-bottom: 0.5rem;
  font-size: 1.2rem; /* leicht größer */
}

.termin-card h3 {
  font-size: 1.1rem; /* leicht größer */
  color: #0055cc;     /* ebenfalls Blau */
  margin: 0;
}
.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Breitere Karten */
  gap: 1.5rem;
  padding: 2rem 0;
}

.termin-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem; /* Mehr Innenabstand */
  text-align: center;
  transition: transform 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  word-wrap: break-word;
  min-height: 180px; /* Optional: Mindesthöhe */
}

.termin-card:hover {
  transform: scale(1.04);
}

.termin-card time {
  display: block;
  font-weight: bold;
  color: #0055cc; /* Blau */
  margin-bottom: 1rem;
  font-size: 1.5rem; /* Größeres Datum */
}

.termin-card h3 {
  font-size: 1.3rem; /* Größerer Titel */
  color: #000000;    /* Schwarz */
  margin: 0;
  line-height: 1.4;
}






/* Infobox */
.info-box {
  background-color: #f5f5f5;
  border-left: 5px solid var(--wtv-blau);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-box h3 {
  color: var(--wtv-rot);
  margin-top: 0;
}

.info-box a {
  color: var(--wtv-blau);
  text-decoration: underline;
}












.tennis-team-section {
  background-color: #fdfdfd;
  padding: 5rem 2rem;
}

.tennis-team-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  color: #003e7e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-underline {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #e60000;
  margin: 0 auto 3rem auto;
  border-radius: 2px;
}

.team-category {
  margin-bottom: 3.5rem;
}

.team-subtitle {
  font-size: 1.6rem;
  color: #003e7e;
  margin-bottom: 1.5rem;
  border-left: 4px solid #e60000;
  padding-left: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.team-grid.small {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.team-card {
  background: #fff;
  border: 1px solid #003e7e20;
  border-left: 5px solid #003e7e;
  padding: 1.2rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-left-color: #e60000;
}

















.tennis-history-box-section {
  background-color: #fff;
  padding: 5rem 2rem;
}

.tennis-history-box-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  color: #003e7e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-underline {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #e60000;
  margin: 0 auto 3rem auto;
  border-radius: 2px;
}

.history-box {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border: 2px solid #003e7e15;
  border-left: 6px solid #003e7e;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  animation: fadeInUp 1s ease;
}

.history-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.history-highlight {
  background-color: #eef3fa;
  padding: 1.5rem;
  border-left: 4px solid #003e7e;
  border-radius: 0.75rem;
  margin: 2rem 0;
}

.highlight-line {
  color: #003e7e;
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .history-box {
    padding: 2rem 1.5rem;
  }

  .history-box p {
    font-size: 1rem;
  }
}










.tennis-board-section {
  background: #fff;
  padding: 3rem 2rem 4rem;
  max-width: 850px;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  border-bottom: 3px solid #e63946; /* dezenter roter Akzent */
  padding-bottom: 0.5rem;
  color: #111;
}

.collapsible-section {
  margin-bottom: 1.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  overflow: hidden;
}

.collapsible-btn {
  width: 100%;
  background: transparent;
  color: #e63946;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1.1rem 1.5rem;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.collapsible-btn:hover {
  color: #b32b37;
}

.toggle-text {
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: #999;
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.collapsible-content.open {
  max-height: 1500px;
  padding: 1rem 1.5rem 1.5rem;
}

.collapsible-content ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  color: #444;
  font-size: 1rem;
  line-height: 1.45;
}

.collapsible-content ul li {
  margin-bottom: 0.7rem;
}

.collapsible-content ul li strong {
  color: #e63946;
}

.collapsible-content p {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}














.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.tennis-board-section h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #002d72;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 0.6rem;
}

.tennis-board-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #b22222; /* Rot als Akzent */
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.board-box {
  background: #f9fafb;
  border-radius: 20px;
  padding: 3rem 4rem;
  box-shadow: 0 12px 40px rgba(0,45,114,0.15);
  color: #003366;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.board-group {
  text-align: center;
}

.board-group h3 {
  font-size: 1.9rem;
  color: #b22222;
  margin-bottom: 1.6rem;
  font-weight: 700;
  border-bottom: 3px solid #b22222;
  padding-bottom: 0.3rem;
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.board-group ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #004080;
  max-width: 650px;
  text-align: left;
}

.board-group ul li {
  margin-bottom: 1.15rem;
}

.trainer-group ul li {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.training-info {
  font-style: italic;
  font-weight: 700;
  color: #b22222;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.15rem;
}

@media (max-width: 800px) {
  .board-box {
    padding: 2rem 2rem;
  }
  .board-group ul {
    max-width: 100%;
    padding: 0 1rem;
  }
  .tennis-board-section h2 {
    font-size: 2.4rem;
  }
  .board-group h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .tennis-board-section {
    padding: 3rem 1rem 3rem;
  }
  .tennis-board-section h2 {
    font-size: 2rem;
  }
  .board-group h3 {
    font-size: 1.3rem;
  }
  .board-group ul li {
    font-size: 1.05rem;
  }
  .training-info {
    font-size: 1rem;
  }
}
























.tennis-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.tennis-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--wtv-blau);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.heading-underline {
  width: 60px;
  height: 4px;
  background-color: var(--wtv-rot);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.tennis-intro {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.tennis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.tennis-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.tennis-card:hover {
  transform: translateY(-6px);
}

.tennis-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tennis-card iframe {
  width: 100%;
  height: 240px;
  border: none;
}

.tennis-text {
  padding: 1.2rem;
}

.tennis-text h3 {
  color: var(--wtv-blau);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.tennis-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}
/* -------------------- LIGHTBOX -------------------- */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-content-wrapper {
  max-width: 95%;
  max-height: 90vh;
}

.lightbox-content {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  0% { transform: scale(0.75); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-btn:hover {
  color: var(--wtv-rot);
}

/* Mobile: Bild soll nicht überstehen */
@media (max-width: 600px) {
  .lightbox-content-wrapper {
    max-width: 100%;
    max-height: 85vh;
  }

  .close-btn {
    top: 15px;
    right: 15px;
    font-size: 2rem;
  }
}
















/* Footer Gesamt-Layout */
.site-footer {
  background-color: #000000; /* Schwarz */
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px 20px;
  font-size: 14px;
}

/* Container mit vier Spalten nebeneinander */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Jede Spalte im Footer */
.footer-column {
  flex: 1 1 220px;
  margin: 10px;
  min-width: 200px;
}

/* Logo-Bild */
.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;
}

/* Überschriften in hellblau (#4A90E2) */
.footer-column h3,
.footer-column h4 {
  color: #4A90E2; /* helles Blau */
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* Überschriften Hover: noch helleres Blau (#7AB8FF), bleibt so lange Maus drauf ist */
.footer-column h3:hover,
.footer-column h4:hover {
  color: #7AB8FF; /* helleres Blau */
}

/* Weiße Textfarbe für normalen Text */
.footer-column p,
.footer-column ul li {
  color: white;
  line-height: 1.5;
}

/* Listen ohne Aufzählungszeichen und ohne Abstand */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links im Footer weiß, bei Hover hellblau (#7AB8FF) und bleiben so lange Maus drauf ist */
.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #7AB8FF; /* Hellblau beim Hover */
}

/* Navigation & Rechtliches Listen-Items mit Abstand */
.footer-column ul li {
  margin-bottom: 8px;
}

/* Kontakt-Sektion: Abstand der Absätze */
.contact-section p {
  margin-bottom: 12px;
}

/* Social Media Container */
.social-media {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 0; /* bündig mit Liste */
  max-width: 320px; /* passend zur Listenbreite */
}

/* Social Media Icons auf 100px Breite */
.social-media a img {
  width: 100px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.social-media a:hover img {
  transform: scale(1.1);
}

/* Footer Bottom Bereich (Balken unter dem Namen) */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #cccccc; /* dezenter hellgrauer Balken */
  padding-top: 20px;
  font-size: 13px;
  color: #cccccc;
}

/* Link zum Designer im Footer-Bottom mit animiertem Unterstrich beim Hover */
/* Der Balken bleibt so lange sichtbar, wie die Maus drauf ist */
.footer-bottom .designer-link {
  color: #cccccc;
  text-decoration: none;
  font-style: italic;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  overflow: visible;
}

.footer-bottom .designer-link:hover {
  color: #cccccc; /* Farbe bleibt gleich */
}

.footer-bottom .designer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s ease-in-out;
  /* Kein Rückweg mehr, bleibt sichtbar solange hover */
}

.footer-bottom .designer-link:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

/* Untertitel-Stil (für z.B. Stephanie Geiges) */
.footer-bottom .subtitle {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: #cccccc;
  margin-top: 4px;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    max-width: 100%;
    margin: 15px 0;
  }
  .social-media {
    justify-content: center;
    max-width: none;
    margin-left: 0;
  }
}







#jugendarbeit {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: "Segoe UI", sans-serif;
}

#jugendarbeit .container {
  max-width: 900px;
  margin: 0 auto;
}

#jugendarbeit h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

#jugendarbeit p {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

#jugendarbeit a {
  color: #c8102e;
  text-decoration: none;
  font-weight: 600;
}

#jugendarbeit a:hover {
  text-decoration: underline;
}

.kontakt-box {
  background-color: #f4f4f4;
  border-radius: 12px;
  padding: 25px;
  margin-top: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.kontakt-box h3 {
  margin-top: 0;
  font-size: 1.4em;
  color: #111;
}

.kontakt-box ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.kontakt-box li {
  margin-bottom: 8px;
  font-size: 1em;
}



.wtv-section {
  background: #fff;
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: auto;
  font-family: "Segoe UI", sans-serif;
  color: #111;
}

.wtv-section h2 {
  color: #002b5c; /* kräftiges Blau */
  border-bottom: 2px solid #dc143c; /* kräftiges Rot */
  padding-bottom: 0.3rem;
  margin-top: 3rem;
}

.wtv-section h3 {
  color: #111;
  margin-top: 2rem;
}

.wtv-section table.mannschaften {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.wtv-section table.mannschaften td {
  border-bottom: 1px solid #ddd;
  padding: 0.6rem 1rem;
}

.wtv-section table.mannschaften tr:nth-child(even) {
  background-color: #f9f9f9;
}

.wtv-section a.wtv-link {
  color: #dc143c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.wtv-section a.wtv-link:hover {
  text-decoration: underline;
  color: #002b5c;
}

.wtv-section small {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-top: 0.2rem;
}

.wtv-section .bericht p {
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
}
.bericht {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-box {
  border-left: 6px solid #000; /* Standardfarbe, wird von Klasse überschrieben */
  background-color: #f9f9f9;
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.team-box:hover {
  transform: translateY(-3px);
}

.team-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.team-box p {
  margin: 0;
  line-height: 1.5;
}

/* Farben nach Team */
.damen {
  border-color: #e53935; /* Rot */
}

.herren {
  border-color: #1e88e5; /* Blau */
}

.damen30 {
  border-color: #c2185b; /* Dunkelrot */
}

.herren30 {
  border-color: #1565c0; /* Dunkelblau */
}

.kids {
  border-color: #fbc02d; /* Gelb für Kinder */
}

.jugend {
  border-color: #43a047; /* Grün für Jugend */
}

/* Responsive */
@media (max-width: 600px) {
  .team-box {
    padding: 0.8rem 1rem;
  }

  .team-box h3 {
    font-size: 1rem;
  }
}

 .tenniscamp-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.tenniscamp-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d32f2f; /* Rot-Ton fürs Detail */
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-info {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .section-info {
    font-size: 1rem;
  }
}
.ballschule-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.ballschule-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #1976d2; /* Blauton für Ballschule */
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-info {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.angebot {
  background-color: #f1f1f1;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.angebot-titel {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.angebot p {
  margin: 0;
  line-height: 1.5;
}

a {
  color: #1976d2;
  text-decoration: underline;
}
a:hover {
  color: #0d47a1;
}
.tennisabzeichen-section {
  padding: 80px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.tennisabzeichen-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #388e3c; /* Grünton */
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-info {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.abzeichen-gruppe {
  background-color: #f3f3f3;
  border-left: 5px solid #4caf50;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.abzeichen-titel {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
}

.abzeichen-gruppe p {
  margin: 0;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

.section-divider {
  margin: 60px auto;
  width: 80%;
  height: 2px;
  background-color: #ccc;
  border: none;
  border-radius: 1px;
}

.cup-info {
  background-color: #e3f2fd;
  border-left: 5px solid #1976d2;
  padding: 20px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1.1rem;
  color: #333;
}


.training-section {
  padding: 80px 20px;
  background-color: #fffefb;
  font-family: "Segoe UI", sans-serif;
}

.training-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #e74c3c;
  margin: 12px auto 0;
  border-radius: 2px;
}

.training-text {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

.training-text a {
  color: #c0392b;
  text-decoration: underline;
  font-weight: 500;
}

.sponsor-box {
  margin-top: 40px;
  background-color: #f9f9f9;
  border-left: 5px solid #d35400;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sponsor-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #222;
}

.sponsor-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin: 5px 0;
}

.trainerteam-bild {
  margin-top: 40px;
}

.trainerteam-bild img {
  width: 100%;
  max-width: 752px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.beitrag-section {
  padding: 80px 20px;
  background-color: #fefefe;
  font-family: "Segoe UI", sans-serif;
}

.beitrag-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.beitrag-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
}

.beitragstabelle {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: #2c3e50;
}

.beitragstabelle td {
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.beitragstabelle td:last-child {
  text-align: right;
  font-weight: 600;
}

.beitrag-hinweis {
  font-size: 1rem;
  color: #444;
}

.beitrag-hinweis a {
  color: #c0392b;
  text-decoration: underline;
  font-weight: 500;
}
.externe-links-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.externe-links-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ddd;
}

.link-list {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.link-list a {
  text-decoration: none;
  color: #007BFF;
  display: inline-block;
  margin-bottom: 5px;
}

.link-list a:hover {
  text-decoration: underline;
}

.icon {
  vertical-align: middle;
  margin-right: 8px;
  width: 12px;
  height: 12px;
}

