body {
    scroll-behavior: smooth;
    font-family: 'Georgia', serif;
    font-size: 18px;
    background-color: #f8f9fa;
    color: #212529;
}

.navbar .nav-link,
.navbar .navbar-brand,
footer {
    color: #ffffff !important;
}

.hero-section {
    background: url('img/main_back.png') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.hero-back-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 45px;
    font-weight: bold;
}

.hero-image-container {
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
}

.hero-text-container {
    margin-left: auto;
    margin-right: auto;
}

.hero-text-box {
    max-width: 540px;
    padding: 1.5rem 2rem;
    text-align: center;
}

.hero-text-box h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: rgb(24, 24, 24);
}

.portrait-blur-wrapper {
    height: 470px;
    width: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-wrapper {
    height: 450px;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
}

.portrait-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
    display: block;
}

.img-float-start {
    float: left;
    width: 40%;
    max-width: 100%;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.img-float-end {
    float: right;
    width: 40%;
    max-width: 100%;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.text-img-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

.section-bg {
    background-color: #e9ecef;
}

.section-light {
    background-color: #ffffff;
}

.brand-txt {
    font-size: 0.8em;
}

.div_txt {
    font-size: 1.2rem;
}

h2 {
    margin-bottom: 1rem;
    font-weight: bold;
}

ul {
    padding-left: 1.2rem;
}

a {
    color: #011582;
    text-decoration: none;
}

a:hover {
    color: #1937e2;
    text-decoration: underline;
}

section[id] {
    scroll-margin-top: 80px;
}

.btn-primary {
    background-color: #011582;
    border-color: #1937e2;
}

.btn-primary:hover {
    background-color: #011582;
    border-color: #1937e2;
}

.cc-revoke {
    border: 2px solid #ccc !important;
    border-radius: 6px !important;
    padding: 4px 10px !important;
    background-color: #011582 !important;
    color: #fff !important;
    box-shadow: 0 0 5px #aaa;
    z-index: 9999 !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;

    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
}

.cc-window.cc-banner.cc-bottom.cc-bottom-center {
    max-width: 66%;
    margin: 0 auto 20px;
    left: 0 !important;
    right: 0 !important;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.text-success {
    color: #198754 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-muted {
    color: #6c757d !important;
}

#scrollTopBtn {
    position: fixed;
    bottom: 50px;
    right: 11px;
    z-index: 999;
    background-color: #011582;
    color: white;
    border: 2px solid #ccc;
    outline: none;
    padding: 6px 11px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    box-shadow: 0 0 5px #aaa;
    transition: opacity 0.3s ease-in-out, background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0220b0;
}


@media (max-width: 768px) {
    .hero-section .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-image-container,
    .hero-text-container {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }

    .hero-text-box h1 {
        font-size: 1.8rem;
        /* vorher 2.5rem */
    }

    .hero-text-box {
        padding: 1rem 1.2rem;
        max-width: 90%;
        /* reduziert Breite des Blur-Containers */
    }

    .hero-back-glass {
        border-radius: 25px;
    }

    .portrait-blur-wrapper {
        height: 450px;
        width: 300px;
    }

    .portrait-wrapper {
        height: 430px;
        width: 280px;
    }
}