:root {
  --primary: #18466e;             /* Dunkles Tracht-Blau */
  --tracht-green: #0F3D2E;        /* Dunkles Tracht-Grün */
  --accent: #C6A75E;              /* Warmes Gold */
  --hover: #9eb1c2;
  --light: #f4f6f9;
  --dark: #111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: 
    linear-gradient(rgba(255,255,255,0.80), rgba(255,255,255,0.80)),
    url('images/Tromposaund_Holz_Pattern.jpg');
  background-size: auto, 500px;
  background-attachment: fixed;
}

img, picture, video, iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

h2 {
  color: var(--tracht-green);
}
/*
body {
  background: url('images/Tromposaund_Holz_Pattern.jpg');
  background-size: 400px;
}
*/

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 1.25rem;
}

.logo {
  height: 45px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle .hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.mobile-menu-toggle .hamburger-icon span,
.mobile-menu-toggle .hamburger-icon::before,
.mobile-menu-toggle .hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.mobile-menu-toggle .hamburger-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle .hamburger-icon::before {
  top: 0;
}

.mobile-menu-toggle .hamburger-icon::after {
  bottom: 0;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(24, 70, 110, 0.95);
  padding: 10px 0;
  transition: 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 12px 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  white-space: nowrap;
  transition: 0.3s;
}

nav a:hover {
  color: var(--hover);
}

.header.nav-open .hamburger-icon span {
  transform: translateY(-50%) rotate(45deg);
}

.header.nav-open .hamburger-icon::before {
  transform: translateY(8px) rotate(-45deg);
}

.header.nav-open .hamburger-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Desktop: Verhindere, dass Logo und Navigation umbrechen */
@media (min-width: 769px) {
  .container.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav {
    flex-wrap: nowrap;
    padding: 6px 0;
  }

  nav {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: none;
  }

  /* etwas geringere Header-Höhe auf Desktop */
  .header {
    padding: 6px 0;
  }

  /* Video-Gallery auf Desktop - 2-3 Spalten mit Hochformat-Videos */
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Alternativ für größere Bildschirme 3 Spalten */
  @media (min-width: 1200px) {
    .video-gallery {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

.hero {
  min-height: 95vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 140px 20px 80px;
}

.hero-content {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 1.5rem auto 0;
  max-width: 720px;
}

.hero .btn-primary {
  min-width: 220px;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.light-bg {
  background: var(--light);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.section-light {
  background: var(--light);
  padding: clamp(60px, 8vw, 80px) 1.25rem;
}

.section-light h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
  grid-auto-rows: auto;
}

.reference-stats {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #263238;
}

.reference-stats li {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.term-highlight {
  background: rgba(198, 167, 94, 0.12);
  border-left: 4px solid var(--accent);
  padding: 0.7rem 1rem;
  margin: 0.75rem 0 1rem;
  border-radius: 6px;
  font-weight: 700;
  color: var(--primary);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  justify-items: center;
  align-items: center;
  margin: 2rem 0;
}

.logo-grid img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0);
  transform: scale(1.04);
}

.card {
  padding: 2rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--tracht-green);
}

.card p {
  margin-bottom: 0.5rem;
  color: #333;
}

.reference-card p {
  margin-bottom: 0.5rem;
  color: #333;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.timeline-year {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.timeline-year h3 {
  margin: 0;
  color: var(--primary);
}

.term-type {
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.term-type.privat {
  background: rgba(24, 70, 110, 0.08);
  color: var(--primary);
}

.term-type.öffentlich {
  background: rgba(198, 167, 94, 0.15);
  color: var(--accent);
}

.term-type.dummy {
  background: rgba(120, 120, 120, 0.12);
  color: rgba(80, 80, 80, 0.9);
}

.archive-details {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 100%;
}

.archive-details summary {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  background: rgba(24, 70, 110, 0.08);
}

.timeline-events {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.timeline-events li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.term-row.highlight,
.archive-item.highlight {
  background: rgba(198, 167, 94, 0.14);
  border: 1px solid rgba(198, 167, 94, 0.4);
  border-radius: 8px;
}

.reference-card {
  overflow: hidden;
  position: relative;
}

.reference-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.timeline-date {
  font-weight: 700;
  color: var(--tracht-green);
  min-width: 110px;
  flex-shrink: 0;
}

.timeline-desc {
  color: #333;
}

.timeline-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}

.timeline-note a {
  color: var(--primary);
  text-decoration: underline;
}

.timeline-note a:hover {
  color: var(--tracht-green);
}

.upcoming-terms {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.upcoming-terms h3 {
  margin-top: 0;
  color: var(--primary);
}

.terms-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.term-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.term-date {
  font-weight: 700;
  color: var(--tracht-green);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.term-date span {
  display: inline-block;
}

.term-desc {
  color: #333;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.term-type {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.term-type.privat {
  background: rgba(24, 70, 110, 0.1);
  color: var(--primary);
}

.term-type.öffentlich {
  background: rgba(198, 167, 94, 0.16);
  color: var(--accent);
}

.term-dummy {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.archive-details {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 100%;
}

.archive-details summary {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  background: rgba(24, 70, 110, 0.08);
}

.archive-list {
  max-height: 550px;
  overflow: auto;
}

.archive-year {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
  font-weight: 700;
  color: var(--primary);
}

.archive-item {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.archive-item:last-child {
  border-bottom: none;
}

.archive-date {
  font-weight: 700;
  color: var(--tracht-green);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.archive-desc {
  color: #333;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.member img {
  width: 100%;
  border-radius: 10px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 28px;
  background: var(--accent);
  color: black;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.btn-primary:hover {
  background: white;
  color: var(--accent);
}

.btn-secondary {
  background: var(--primary);
  color: white;
}

.btn-secondary:hover {
  background: var(--hover);
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.video-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f0f0f0;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}

/* Aspect Ratio für Querformat (16:9) */
.video-16-9 .video-wrapper {
  padding-bottom: 56.25%; /* 16:9 */
}

/* Aspect Ratio für Hochformat (9:16) */
.video-9-16 .video-wrapper {
  padding-bottom: 177.78%; /* 9:16 */
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-title {
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tracht-green);
  background: white;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 360px 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.contact-card p {
  margin: 0.35rem 0;
  color: #333;
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 860px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form .form-row,
  .contact-form .captcha-row {
    grid-column: span 2;
  }

  .contact-form .form-row.two-col {
    grid-column: span 1;
  }
}

.contact-form .form-row {
  display: grid;
  gap: 0.35rem;
}

.contact-form .form-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.contact-form .captcha-row {
  grid-template-columns: 1fr 120px;
  gap: 0.75rem;
  align-items: flex-end;
}

.contact-form label {
  color: #444;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  height: 42px;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 110px;
  height: auto;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(24, 70, 110, 0.22);
  border-color: rgba(24, 70, 110, 0.35);
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.92rem;
  margin: 0;
}

.form-status.success {
  color: #1f6f2b;
}

.form-status.error {
  color: #a92b2b;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-inner span {
  color: hsla(0,0%,100%,0.9);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.84rem;
}

.footer-links a {
  color: hsla(0,0%,100%,0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links a:hover {
  color: #f4f6f9;
  text-decoration-color: rgba(255,255,255,0.9);
}


.musiker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Responsive */

@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .section-light {
    padding: clamp(60px, 8vw, 90px) 1rem;
  }

  .logo {
    height: 42px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 72vh;
    padding: 120px 16px 60px;
  }

  .hero-content {
    padding: 0 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero p {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .grid,
  .musiker-grid,
  .logo-grid,
  .terms-list {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .musiker-arch {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
    justify-items: center;
    align-items: stretch;
    height: auto;
    width: 100%;
    padding: 0;
  }

  .musiker-arch .musiker-card {
    position: static;
    width: 100%;
    transform: none !important;
    translate: none !important;
    margin: 0;
  }

  .musiker-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-form .split,
  .contact-form .captcha-row {
    grid-template-columns: 1fr;
  }

  .contact-form .captcha-row {
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 0;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.75rem;
    background: rgba(24, 70, 110, 0.98);
    border-radius: 12px;
    padding: 1rem;
  }

  .header.nav-open nav {
    display: flex;
  }

  nav a {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .section,
  .section-light {
    padding: 55px 0;
  }

  .section-light {
    padding: 55px 1rem;
  }

  .hero {
    padding: 120px 10px 50px;
    min-height: 68vh;
  }

  .hero-content {
    margin-top: 0;
  }

  .musiker-card img {
    height: auto;
  }

  .term-row,
  .archive-item {
    grid-template-columns: 1fr;
  }

  .term-date,
  .archive-date {
    min-width: auto;
  }

  .contact-form {
    padding: 0.9rem;
  }

  .contact-form .form-row,
  .contact-form .captcha-row {
    grid-column: span 1;
  }

  .contact-form .captcha-row {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 24px 0;
  }

  .footer-inner {
    gap: 0.5rem;
  }

  /* Video-Gallery für mobile Geräte */
  .video-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .video-item {
    width: 100%;
  }

  /* Hochformat-Videos bekommen maximale Breite auf Mobil */
  .video-9-16 {
    max-width: 100%;
  }

  .video-title {
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
  }
}

/* Halbkreis-Layout für Desktop: positionierte Karten entlang eines Bogens */
:root {
  --arch-radius: 500px;
}

#musiker {
  background: none;
  color: inherit;
  overflow-x: hidden;
}

.musiker-arch {
  position: relative;
  height: 420px; /* Genug Platz für die Karten */
  display: block;
  margin: 0 auto;
}

.musiker-arch .musiker-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  margin: -80px 0 0 -90px; /* Center card: -height/2, -width/2 */
  transform-origin: center;
}

/* Gleichmäßige horizontale Abstände (220px zwischen Nachbarn), verschoben nach unten */
.musiker-arch .musiker-card:nth-child(1) { translate: -550px 30px; } /* 9 Uhr – Christoph: oben frei */
.musiker-arch .musiker-card:nth-child(2) { translate: -330px -80px; } /* Basti: weniger oben */
.musiker-arch .musiker-card:nth-child(3) { translate: -110px -150px; } /* Quirin: nach unten */
.musiker-arch .musiker-card:nth-child(4) { translate: 110px -150px; } /* Markus: nach unten */
.musiker-arch .musiker-card:nth-child(5) { translate: 330px -80px; } /* Simon H.: weniger oben */
.musiker-arch .musiker-card:nth-child(6) { translate: 550px 30px; } /* 3 Uhr – Simon Huber: oben frei */

.musiker-arch .musiker-card img { height: 140px; }

/* Auf kleineren Bildschirmen zurück zur normalen Grid-Anordnung */
@media (max-width: 900px) {
  .musiker-arch {
    height: auto;
    transform: none;
  }
  .musiker-arch .musiker-card {
    position: static;
    width: 100%;
    transform: none !important;
    margin: 0;
  }
  .musiker-arch .musiker-card img { height: 220px; }
}

.musiker-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.musiker-card img {
  width: 100%;
  height: 300px; /* etwas größer, Köpfe nicht abgeschnitten */
  object-fit: cover;
  object-position: center top; /* Fokus auf oberen Bildteil */
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(10%);
}

.musiker-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.musiker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.overlay {
  position: relative;
  padding: 16px 18px;
  background: white;
  color: var(--dark);
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}

.overlay h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tracht-green);
}

.overlay p {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: #666;
}

#musiker {
  background: none;
  color: inherit;
}



.motto {
  font-size: 1.3em;
  margin-top: 25px;
}

.seo-keywords {
  font-size: 0.9em;
  color: #777;
  margin-top: 30px;
}

