@font-face {
  font-family: 'UnifrakturCook';
  src: url('../fonts/unifrakturcook-v25-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fffbe6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'UnifrakturCook', cursive;
  color: darkred;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

.caption, .site-footer p, label {
  font-family: 'UnifrakturCook', cursive;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 40px;
  background: #fceabb;
  border-bottom: 4px double gold;
}

.logo-container { padding-left: 10px; }
.logo {
  height: 75px;
  width: auto;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}
.intro {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}
.modal img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid gold;
  border-radius: 15px;
}
.modal .caption {
  margin-top: 10px;
  color: white;
  font-size: 1.2em;
  text-align: center;
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

/* Musiknoten */
.ornament {
  font-size: 1.5em;
  color: gold;
  padding: 0 5px;
  user-select: none;
}
 
/* Rahmen */
.fancy-frame {
  border: 6px double gold;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  background: linear-gradient(to bottom, #fffbe6, #fceabb);
  box-sizing: border-box;
  font-family: 'UnifrakturCook', cursive; /* oder deine gewünschte Schrift */
  font-size: 1.1em;                       /* optional, für konsistente Größe */
}

.fancy-frame img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.orgelbild {
  border: 4px solid #F3944F;
  border-radius: 8px;
  padding: 5px;
  background-color: silver;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  max-width: 50%;
  height: auto;
}

/* Musiknote */
.note {
  font-size: 2em;
  color: gold;
  text-align: center;
  animation: floatNote 6s infinite ease-in-out;
  display: block;
  margin: 10px 0;
}
@keyframes floatNote {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #fceabb;
  border-top: 4px double gold;
  font-family: 'UnifrakturCook', cursive;
  color: darkred;
  font-size: 0.85em;
}
.site-footer a:hover { text-decoration: underline; }

/* Galerie-Container */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Variante mit .gallery-item */
.gallery-item {
  width: 100%;
  max-width: 200px;
  cursor: pointer;
  text-align: center;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain; /* zeigt das ganze Bild */
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease;
  position: relative;  /* nötig für z-index */
}
.gallery-item img:hover {
  transform: scale(1.2); /* deutlicheres Vergrößern */
  z-index: 10;           /* hebt das Bild über die Nachbarn */
}
.caption {
  margin-top: 8px;
  font-family: 'UnifrakturCook', cursive;
  color: darkred;
  font-size: 1em;
}

/* Variante mit figure/figcaption */
.gallery figure {
  width: 100%;
  max-width: 200px;
  text-align: center;
}
.gallery figure img {
  width: 100%;
  height: auto;
  object-fit: contain;   /* zeigt das ganze Bild */
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease;
  position: relative;
}
.gallery figure img:hover {
  transform: scale(1.2);
  z-index: 10;
}
.gallery figcaption {
  margin-top: 8px;
  font-family: 'UnifrakturCook', cursive;
  color: darkred;
  font-size: 1em;
}


/* Scroll-Button */
#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.5em;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#topBtn:hover { background-color: #555; }

/* Formular */
form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  padding: 10px;
  box-sizing: border-box;
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 2px solid gold;
  border-radius: 10px;
  font-size: 1em;
  box-sizing: border-box;
}
button {
  background: darkred;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
}

/* Partner-Bereich Desktop */
.partner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #fffbe6;
  border: 6px double gold;         /* Goldener Rahmen */
  border-radius: 20px;             /* Abgerundete Ecken */
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* Goldener Schimmer */
  box-sizing: border-box;
}

.partner-card {
  flex: 0 1 280px;
  max-width: 300px;
  width: 100%;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card img {
  display: block;
  margin: 0 auto 10px;
  height: auto;
}

/* Mobile */
@media (max-width: 600px) {
  .partner-container {
    justify-content: center;   /* Karten im Container zentrieren */
    align-items: flex-start;   /* Höhe nicht strecken */
    padding: 10px;
    gap: 20px;
  }

  .partner-card {
    flex: 0 1 280px;           /* feste Basisbreite */
    max-width: 90%;            /* nicht ganz voll breit */
    margin: 0 auto;            /* zentriert im Container */
  }

  .partner-card img {
    max-width: 100px;
  }

  .partner-card img[alt*="Facebook"] {
    max-width: 50px;
  }
}


/* Video-Bereich */
.video-container {
  display: flex;
  justify-content: center;   /* horizontal mittig */
  align-items: center;       /* vertikal mittig */
  width: 100%;
  margin: 50px auto;         /* Container selbst mittig */
  padding: 20px;
}

.video-container iframe,
.video-container video {
  max-width: 100%;
  border: 4px solid gold;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.liedtext-wrapper {
  text-align: center;
}
.liedtext-wrapper pre {
  display: inline-block;
  text-align: center;
}
/* Name hervorheben */
.highlight-name {
  font-weight: bold;
  color: #b22222;   /* ein kräftiges Rot */
  background-color: #fff3cd; /* leicht gelber Hintergrund */
  padding: 2px 4px;
  border-radius: 4px;
}

/* Letzten Satz hervorheben 
p .highlight-last {
  display: block;          /* eigener Absatzblock */
  margin-top: 10px;
  font-style: italic;
  text-align: center;
  color: #2a6496;          /* schönes Blau */
}


