#plg_system_webauthn-WMagADt3FVAN-oXRSXPkE,svg#Passkey,
#Passkey,
button#Passkey,
.icon-passkey,
.icon-passkey svg {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

#plg_system_webauthn-GtFfmTIHug3Y-sl14pnlA {
    display: none;
}
.alertbox {
    display: block;
    text-align: center;
    background: #fdf9ec;
    color: #3e5b75;
    padding: 12px 16px;
    border-bottom: 1px solid #f5eac2;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.alertbox:hover {
    background: #fcf0da;
    color: #660000;
}

/* --- Grundcontainer --- */
.slideshow-container {
    overflow: hidden;
    position: relative;
}

.slideshow-container,
.uk-slideshow-items {
    height: 70vh;
    min-height: 400px;
}

/* --- Overlay: standardmäßig sichtbar, verschwindet beim Hover --- */
.slideshow-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left,
            rgba(26, 46, 78, 0.45) 0%,
            rgba(26, 46, 78, 0.25) 40%,
            rgba(26, 46, 78, 0.10) 70%,
            rgba(26, 46, 78, 0.00) 100%);
    backdrop-filter: blur(6px) brightness(0.9);
    -webkit-backdrop-filter: blur(6px) brightness(0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1; /* sichtbar */
    transition: opacity 0.6s ease;
    z-index: 1;
}

/* Overlay verschwindet beim Hover */
.slideshow-container:hover .slideshow-overlay {
    opacity: 0;
}

/* --- Text: standardmäßig sichtbar, verschwindet beim Hover --- */
.slideshow-text {
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    width: 50%;
    text-align: center;
    opacity: 1; /* sichtbar */
    transform: translateY(-50%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 0 40px;
    z-index: 2; /* über Overlay */
}

/* Text verschwindet beim Hover */
.slideshow-container:hover .slideshow-text {
    opacity: 0;
    transform: translateY(-20px);
}

/* --- Textgestaltung --- */
.slideshow-text h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.slideshow-text p {
    color: #f8f4eb;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0.3em 0;
}

/* --- Bildposition --- */
.uk-slideshow-items img {
    object-position: center 35%;
}

/* --- Dotnav & Navigation --- */
.uk-slidenav,
.uk-slideshow-nav {
    position: relative;
    z-index: 5 !important;
}



/* Gesamter Link als Klickfläche */
.chor-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Karte */
.chor-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e6e9ee;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover: Karte hebt sich an */
.chor-card-link:hover .chor-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 26px rgba(23, 93, 161, 0.18);
    border-color: #175da1;
}

/* Icons */
.chor-icon {
    font-size: 2.5rem;
    color: #175da1;
    margin-bottom: 16px;
    transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
}

/* Icon Animation bei Hover */
.chor-card-link:hover .chor-icon {
    transform: scale(1.2);
    color: #1e88ff;
    text-shadow: 0 0 10px rgba(30, 136, 255, 0.4);
}

/* Titel */
.chor-card h3 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #111;
    transition: color 0.3s ease;
}

/* Hoverfarbe für Titel */
.chor-card-link:hover h3 {
    color: #175da1;
}

/* Text */
.chor-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease, opacity 0.35s ease;
}

/* ========== Hover: Inhalt verschwindet, Bild erscheint ========== */

/* Container für Inhalt */
.chor-content {
    position: relative;
    z-index: 2;
    transition: opacity 0.35s ease;
}

/* Inhalt ausblenden */
.chor-card-link:hover .chor-content {
    opacity: 0;
}

/* Bildcontainer */
.chor-image {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Bild selbst */
.chor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover: Bild einblenden */
.chor-card-link:hover .chor-image {
    opacity: 1;
    transform: scale(1);
}

/* =========================================================
    Timeline
========================================================= */

/* Grundstruktur */
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Eine einzige durchgehende vertikale Linie */
.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 3px;
    background: #d4dce1;
}

/* ============================================
   TIMELINE ITEM 
============================================ */
.timeline-item {
    position: relative;
    padding-left: 80px;
}

.timeline-marker {
    display: none;
    /* Events = kein Marker */
}

.timeline-item.period {
    margin-top: 80px;
}

.timeline-item.period .timeline-info {
    display: none;
}

.timeline-item.period .timeline-marker {
    display: block;
    position: absolute;
    left: 20px;
    top: 3px;
    z-index: 2;
}

/* Der Jahres-Punkt */
.timeline-item.period .timeline-marker:before {
    content: "";
    width: 16px;
    height: 16px;
    background: #1e73be;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.25);
    display: block;
}

/* Jahreszahl */
.timeline-item.period .timeline-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #2d3239;
}

.timeline-item:not(.period) .timeline-info {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #4a4f57;
}

.timeline-item:not(.period) .timeline-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}


.timeline-content img {
    transition: transform 0.3s ease;
}

.timeline-content img:hover {
    transform: scale(1.07);
}


@media (max-width: 991px) {

    .timeline {
        padding-left: 0;
    }

    .timeline:before {
        left: 18px;
    }

    .timeline-item {
        padding-left: 60px;
        margin: 40px 0;
    }

    .timeline-item.period .timeline-marker {
        left: 10px;
    }
}

.top-b {
    text-align: center;
}



a.as-readmore {
    border: 1px solid currentColor;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
}

.chor-btn {
    border: 1px solid #0f4e66 !important;
    color: #0f4e66 !important;
    padding: 8px 20px;
    border-radius: 3px;
    transition: 0.3s ease;
}

.chor-btn:hover {
    background: #0f4e66 !important;
    color: #fff !important;
}


.chorleiter-item {
    text-align: center;
}

.chorleiter-img {
    width: 180px;
    height: 260px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.chorleiter-img:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.nav-subtitle {    
    font-size: 14px;
    margin-top: -10px;
}

#astroid-sticky-header {
    border-bottom: 2px solid #3e5b75;
    padding-bottom: 10px;
}

/* ==============================
   Footer Grundlayout
============================== */

.footer-schwanenschloss {
    padding: 60px 0 30px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-schwanenschloss a {
    text-decoration: none;
}

.footer-schwanenschloss a:hover {
    text-decoration: underline;
}

/* ==============================
   Footer Spalten
============================== */

.footer-col {
    padding: 10px 0;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
}

/* feine Linie unter Titel */
.footer-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
}


.footer-contact,
.footer-bank {
}

.footer-bank div,
.footer-contact {
    margin-bottom: 4px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .footer-schwanenschloss {
        text-align: center;
    }

    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-bank { display: grid; gap: 10px; }

.bank-row{
  display:flex;
  align-items:center;
  gap:10px;
  line-height:1.4;
}

.bank-label{ font-weight:600; opacity:.9; min-width:52px; }
.bank-value{ opacity:.95; }

.bank-copy-icon{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: inherit;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}

.bank-copy-icon:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }
.bank-copy-icon:active{ transform: translateY(0); }

.bank-feedback{
  font-size: .9rem;
  opacity:.9;
}
.bank-row.is-copied .bank-copy-icon{
  background: rgba(46, 204, 113, .18);
  border-color: rgba(46, 204, 113, .35);
}

.astroid-logo-sticky {
    margin-top: 10px;
}