/* ---------- MENÜ HOVER ---------- */
.astroid-header-section .nav>li>a,
.astroid-header-section .astroid-nav-menu>li>a {
    position: relative;
    color: #1b1b1b;
    font-weight: 500;
    transition: color 0.25s ease;
}

/* Underline */
.astroid-header-section .nav>li>a::after,
.astroid-header-section .astroid-nav-menu>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0%;
    height: 2px;
    background: #175da1;
    transition: width 0.28s ease;
    opacity: 0.7;
}

/* Hover */
.astroid-header-section .nav>li>a:hover,
.astroid-header-section .astroid-nav-menu>li>a:hover {
    color: #175da1;
    opacity: 0.95;
}

.astroid-header-section .nav>li>a:hover::after,
.astroid-header-section .astroid-nav-menu>li>a:hover::after {
    width: 100%;
}

/* Aktiv */
.astroid-header-section .nav>li.active>a,
.astroid-header-section .astroid-nav-menu>li.active>a {
    color: #175da1;
    font-weight: 600;
}

.astroid-header-section .nav>li.active>a::after,
.astroid-header-section .astroid-nav-menu>li.active>a::after {
    width: 100%;
}


/* ---------- PASSKEY / WEBAUTHN AUSBLENDEN ---------- */
#plg_system_webauthn-WMagADt3FVAN-oXRSXPkE,
#plg_system_webauthn-GtFfmTIHug3Y-sl14pnlA,
svg#Passkey,
#Passkey,
button#Passkey,
.icon-passkey,
.icon-passkey svg {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}


/* ---------- HERO-BANNER ---------- */
.hero-banner-row {
    margin-top: 40px;
}

.hero-banner {
    position: relative;
    height: 520px;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    transition: transform .45s ease, filter .45s ease;
}

.hero-banner:hover {
    transform: scale(1.013);
}

.hero-banner-content.white-box {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(250, 248, 243, 0.78);
    padding: 34px 38px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    max-width: 80%;
    text-align: center;
    transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

/* Titel */
.hero-banner-content.white-box h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    letter-spacing: .3px;
    color: #175DA1;
}

/* Icon */
.hero-banner-content.white-box h2 i {
    font-size: 36px;
    margin-right: 10px;
    background: #175DA1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.hero-banner-content.white-box p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 32px;
    color: #405054;
}


/* ---------- HERO BUTTON ---------- */
.hero-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #175da1, #60afc0);
    border: none;
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.hero-banner-btn i {
    font-size: 18px;
}

.hero-banner-btn:hover {
    background: linear-gradient(45deg, #60afc0, #26449c);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(23, 93, 161, 0.22);
}


/* ---------- UIKIT BUTTON ---------- */
.uk-button-primary {
    background: #175da1;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .25s ease, transform .25s ease;
}

.uk-button-primary:hover {
    background: #0f4476;
    transform: translateY(-2px);
}

.uk-button-primary i {
    font-size: 18px;
}

.uk-card.uk-card-primary {
    background-color: #fdf2bf !important;
}

.uk-card.uk-card-primary p {
    color: #000 !important;
}


/* ---------- PARTNER LOGOS ---------- */
.tz-partner-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tz-partner-card {
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    min-height: 70px;
    min-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .10);
}

.tz-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, .15);
}

.tz-partner-logo {
    height: 54px;
    width: auto;
}


/* ---------- FÖRDER GRID ---------- */
.tuz-foerder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    justify-items: center;
}

.tuz-foerder-card {
    position: relative;
    padding: 34px 26px 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #175da1, #4fa9c2);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tuz-foerder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 70px rgba(23, 93, 161, 0.55);
}

.tuz-foerder-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.tuz-foerder-text {
    opacity: 0.95;
    line-height: 1.5;
    margin-bottom: 18px;
}

.tuz-foerder-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 999px;
    background: #fff;
    color: #175da1;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tuz-foerder-card:hover .tuz-foerder-btn {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* ---------- ACCORDION ---------- */
.uk-accordion {
    border-top: 1px solid #e3e7ef;
}

.uk-accordion>li {
    border-bottom: 1px solid #e3e7ef;
    padding: 16px 0;
}

.uk-accordion>li:hover {
    background-color: rgba(38, 68, 156, 0.03);
}

.uk-accordion>li.uk-open {
    background-color: rgba(38, 68, 156, 0.05);
}

.uk-accordion-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #26449c;
    padding: 10px;
}

.uk-accordion-title:hover {
    opacity: .75;
}

.uk-accordion>li.uk-open>.uk-accordion-title {
    font-weight: 700;
}

.uk-accordion-content {
    margin-top: 14px;
    font-size: .975rem;
    line-height: 1.55;
    padding: 20px;
}


/* ---------- LOGO ---------- */

/* Desktop */
@media (min-width: 960px) {
  .astroid-logo .astroid-logo-default,
  .astroid-logo .astroid-logo-sticky {
    max-height: 150px;
  }
}

/* Tablet */
@media (max-width: 959px) {
  .astroid-logo .astroid-logo-default,
  .astroid-logo .astroid-logo-sticky {
    max-height: 140px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .astroid-logo .astroid-logo-default,
  .astroid-logo .astroid-logo-mobile,
  .astroid-logo .astroid-logo-sticky {
    max-height: 130px;
  }
}



/* ---------- Suchleiste ---------- */
.awesomplete {
    display: block !important;
    margin-top: 20px;
}

/* Alle Überschriften in .bottomc weiß */
.bottomc h1,
.bottomc h2,
.bottomc h3,
.bottomc h4,
.bottomc h5,
.bottomc h6 {
    color: #fff;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

    .tz-partner-grid {
        justify-content: center;
    }

    .hero-banner {
        height: 420px;
    }

    .hero-banner-content.white-box {
        bottom: 45px;
        max-width: 92%;
        padding: 24px 26px;
    }

    .hero-banner-content.white-box h2 {
        font-size: 26px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .hero-banner-content.white-box p {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-banner-btn {
        padding: 12px 26px;
        font-size: 15px;
    }
}
