/*
* Grundsätzliche CSS Anpassungen / neue Klassen
*/

/* Hilfsklassen */

.mar-bot-15 {
    margin-bottom: 15px;
}
.mar-bot-25 {
    margin-bottom: 25px;
}
.mar-bot-35 {
    margin-bottom: 35px;
}
.mar-bot-45 {
    margin-bottom: 45px;
}
.mar-bot-55 {
    margin-bottom: 55px;
}
.mar-bot-65 {
    margin-bottom: 65px;
}

.mar-top-15 {
    margin-top: 15px;
}
.mar-top-25 {
    margin-top: 25px;
}
.mar-top-35 {
    margin-top: 35px;
}
.mar-top-45 {
    margin-top: 45px;
}
.mar-top-55 {
    margin-top: 55px;
}
.mar-top-65 {
    margin-top: 65px;
}
.mar-top-75 {
    margin-top: 75px;
}
.mar-top-85 {
    margin-top: 85px;
}
.mar-top-95 {
    margin-top: 95px;
}
.mar-top-115 {
    margin-top: 115px;
}
.mar-top-125 {
    margin-top: 125px;
}
.mar-top-135 {
    margin-top: 135px;
}
.mar-top-145 {
    margin-top: 145px;
}

.rounded {
    border-radius: 50px;
}
.rounded-15 {
    border-radius: 15px;
}
.rounded-25 {
    border-radius: 25px;
}
.rounded-35 {
    border-radius: 35px;
}
.elipse {
    border-radius: 50%;
}

/* Hilfsklassen Ende */
.border-box {
    border: 4px solid #664099;
    border-radius: 15px;
    padding: 5px;
}

.lila-button {
    background-color: #664099;
    padding: 10px 25px;
    border-radius: 6px;
    color: white;
}

.main-image {
    max-width: 70%;
    position: relative;
    bottom: 40px;
    left: 40px;
}

.about .image-wrapper .small-image {
    width: 50% !important;
    max-width: 50% !important;
    position: absolute !important;
    top: 135px;
    left: -10px;
    border: none;
}

.faq-item > .faq-content ul {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    margin-bottom: 0;
}

.faq-item > .faq-content p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.2s ease;
    margin-bottom: 0;
}

.faq-item.faq-active > .faq-content p,
.faq-item.faq-active > .faq-content ul {
    max-height: 1000px; /* oder einen ausreichend großen Wert */
    opacity: 1;
}

.faq-item.faq-active > .faq-content ul {
    max-height: 1000px; /* oder einen ausreichend großen Wert */
    opacity: 1;
    margin-bottom: 1rem;
}

h2.heading,
h2.heading > p {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: var(--heading-color) !important;
}

.navmenu .active, 
.navmenu .active:focus {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.info > p {
    font-size: 18px;
    width: 90%;
}

.service-details .info li {
    font-size: 18px !important;
}

.p-list > p {
    font-size: 18px;
    margin-bottom: 30px;
}
.p-list > p::before {
    content: "• ";
    margin-right: 8px;
    font-weight: bold;
}

.circled-image {
    border: 1px solid gray;
    border-radius: 50%;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
    margin-bottom: 15px;
    background-color: white;
}

.header-image-lg {
    width: 200%;
    max-width: 200% !important;
    margin-left: -40%;
    z-index: 1;
}

.hero {
    position: relative;
    padding-top: 170px;
    background: color-mix(in srgb, var(--chartreuse), transparent 95%);
}

.hero-content {
    z-index: 2 !important;
    padding: 30px;
    background-color: #fbf3ff;
    border-radius: 30px;
}

.btn-varianten {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--contrast-color);
    z-index: 2;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.btn-varianten:hover {
    border-color: var(--accent-color);
    background-color: var(--contrast-color);
}

.language-img:hover {
    box-shadow: 0px 3px 5px 1px gray;
}

.header .logo img {
    max-height: 57px;
    margin-right: 8px;
    width: 240px;
}

.navmenu {
    padding-right: 276px;
}

.navmenu a, .navmenu a:focus {
    font-weight: 600;
    font-size: 16px;
}


/*
** Navi Dropdown
*/
.navmenu .dropdown div.dropdown-container-left {
    display: none;
    position: fixed;
    width: 49vw;
    height: 40vw;
    left: 0;
    top: 0;
    background-color: transparent;
    padding-top: 100px;
    padding-left: 15px;
}

.inner-dropdown-container {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    border-radius: 12px;
    z-index: 99;
    background-color: white;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown div.dropdown-container-right {
    display: none;
    position: fixed;
    width: 50vw;
    height: 40vw;
    right: 0;
    top: 0;
    background-color: transparent;
    padding-top: 100px;
    padding-right: 15px;
}

.navmenu .dropdown div.dropdown-container-center {
    display: none;
    position: fixed;
    width: 50vw;
    height: 35vw;
    left: 50%;
    top: 80px;
    background-color: transparent;
    padding-top: 20px;
    padding-right: 15px;
    transform: translate(-50%, 0);
}

.inner-dropdown-container {
    padding: 10px;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    border-radius: 12px;
    z-index: 99;
    background-color: white;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.inner-dropdown-1-3 {
    height: 100%;
    width: 30%;
    padding: 10px;
}

.inner-dropdown-1-3 > img {
    position: relative;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

a.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
a.btn-primary:hover {
    background-color: white;
    border-color: var(--accent-color);
}

.about .image-wrapper .small-image {
    left: 0;
    width: 20%;
}

a.btn.btn-lila {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 2;
}
a.btn.btn-lila:hover {
    background-color: white;
    color: var(--accent-color);
}

.testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    height: 100%;
}

.service-images {
    display: flexbox;
}

.service-images > img{
    max-width: 120px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Diese Zeile sorgt dafür, dass der Inhalt nach oben und unten verteilt wird */
    height: 100%;
    border: 1px solid var(--heading-color);
}

.images > .col-lg-2 {
    flex: 1 1 20%;
    max-width: 30%;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

#footer.dark-background a {
    color: white;
}

#footer.dark-background a:hover {
    color: var(--chartreuse);
}

.overlapping {
    border: 1px solid white;
}

.service {
    display: none;
}

.col-md-4 {
    position: relative;
    padding: 0 15px; /* Optional: Abstand zwischen den Spalten */
}

/*--------------------------------------------------------------
# bezahlvarianten Section
--------------------------------------------------------------*/
.image-container {
    height: 200px;
    width: 100%;
    border-radius: 25px;
    border: 2px solid #664099;
    background-size: cover; 
    background-position: center;
}

.bezahlvariante-img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
}

.bezahlvarianten .bezahlvariante-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    height: 100%;
    padding-bottom: 85px;
}
  
.bezahlvarianten .bezahlvariante-item .bezahlvariante-img {
    width: 100%;
    border-radius: 25px;
    border: 2px solid #664099;
    float: left;
    margin: 0 0 12px 0;
}
  
.bezahlvarianten .bezahlvariante-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
  
.bezahlvarianten .bezahlvariante-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    margin: 0;
}
  
.bezahlvarianten .bezahlvariante-item p {
    margin: 15px 0 0 0;
    padding: 0;
}

i.arrow {
    margin-left: 5px;
    margin-right: 5px;
}

i.arrow::before {
    width: 70px;
    height: 4px;
    background: #664099;
    content: "";
    display: inline-block;
    position: relative;
    bottom: 30px;
    color: #664099;
}

i.arrow::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-left: 4px solid #664099;
    border-top: 4px solid #664099;
    transform: rotate(135deg);
    position: relative;
    bottom: 27px;
    margin-left: -15px;
    vertical-align: middle;
}

i.responsive {
    font-size: 85px;
}

/*
    Zahlmethoden
*/
.vert-centered {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.images {
    align-items: center;
    column-gap: 8px;
}

.relative-col {
    border: 2px solid black;
    border-radius: 9px;
    aspect-ratio: 3/2;
    position: relative;
}

.relative-col img {
    padding: 2px;
    width: 100%;
    /* Nutzt die volle Breite des Containers */
    height: 100%;
    /* Nutzt die volle Höhe des Containers */
    object-fit: contain;
    /* Behält Seitenverhältnis & passt ins Div */
    object-position: center;
    /* Optional: Bild zentrieren */
    border-radius: 7px;
    /* Optional: Leicht abgerundete Ecken */
}

.heading.responsive {
    font-size: 24px;
}

.mobile {
    display: none;
}

.space {
    display: block;
    height: 20px;
    width: 100%;
}

@media(min-width: 1200px) {
    .heading.responsive.qr {
        font-size: 32px;
    }
}

@media(max-width: 320px) {
    .relative-col {
        width: 45%;
    }

    .heading.responsive {
        font-size: 20px;
    }
}

@media(max-width: 1400px) {
    i.responsive {
        font-size: 70px;
    }

    i.arrow::before {
        width: 60px;
        height: 3px;
        bottom: 23px;
    }

    i.arrow::after {
        width: 15px;
        height: 15px;
        border-left: 4px solid #664099;
        border-top: 4px solid #664099;
        bottom: 21px;
    }
}

@media(max-width: 1200px) {
    .header .header-container {
        margin-left: 0px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }
    
    h2.responsive {
        font-size: 26px;
    }

    .responsive img {
        height: 30px;
    }

    i.responsive {
        font-size: 50px;
    }

    i.arrow::before {
        width: 40px;
        height: 3px;
        bottom: 15px;
    }

    i.arrow::after {
        width: 15px;
        height: 15px;
        border-left: 3px solid #664099;
        border-top: 3px solid #664099;
        bottom: 12px;
    }
    .navmenu {
        padding-right: 70px;
    }
}

@media(max-width: 1000px) {
    h2.responsive {
        font-size: 22px;
    }

    .responsive img {
        height: 26px;
    }

    i.responsive {
        font-size: 40px;
    }

    i.arrow::before {
        width: 30px;
        height: 3px;
        bottom: 11px;
    }

    i.arrow::after {
        width: 15px;
        height: 15px;
        border-left: 3px solid #664099;
        border-top: 3px solid #664099;
        bottom: 8px;
    }

    .navmenu {
        padding-right: 70px;
    }
}

@media(max-width: 991px) {
    .about .image-wrapper {
        width: 110%;
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    h3.responsive {
        font-size: 24px;
    }

    .container.mobile-fluid {
        max-width: 98vw;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width: 768px) {
    .responsive-relative {
        position: relative;
        right: 5vw;
        top: 0px;
        width: 20vw;
    }

    .header-image-lg {
        max-width: 400% !important;
        width: 400% !important;
        margin-left: -150%;
    }

    .hero-content {
        margin-left: -20%;
    }

    .hide-sm {
        display: none;
    }

    .small-image {
        top: 90px !important;
    }

    .navmenu {
        padding-right: 70px;
    }

    .small-content h1.mb-4 span.accent-text {
        font-size: 30px;
    }
    .header-image-lg {
        margin-left: 0;
        margin-top: -60px;
    }

    .hero-content {
        margin-left: -10%;
        width: 120%;
    }

    .header-image-lg {
        width: 100% !important;
    }
}

@media(max-width: 767px) {
    .about .image-wrapper {
        width: 130%;
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-200 {
        width: 200%;
    }
    .full-box {
        margin-bottom: 15px;
        border-radius: 15px;
    }
    .vertical-line {
        display: none;
    }

    .mobile {
        display: inline-block;
    }

    .info > p {
        font-size: 16px;
    }

    h2.heading {
        font-size: 28px;
    }
}

@media(max-width: 650px) {
    .about .image-wrapper {
        width: 130%;
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about .image-wrapper .images {
        margin-left: -80px;
    }

    .small-image {
        top: 115px !important;
        left: -30px !important;
    }
}

@media(max-width: 576px) {
    .mobile-200 {
        width: 100%;
    }
    .responsive-relative {
        display: none !important;
    }

    .header .logo img  {
        max-width: 200px;
    }

    .navmenu {
        padding-right: 0px;
    }

    .relative-col {
        max-width: 32% !important;
    }
    .header-image-lg {
        margin-left: 0;
        margin-top: -60px;
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
    }

    .header-image-lg {
        width: 100% !important;
    }

    .responsive-xs {
        width: 50%;
    }

    i.arrow {
        margin-left: 0;
        margin-right: 0;
    }
}

@media(max-width: 575px) {
    .absolute {
        position: initial !important;
        margin-bottom: 15px;
    }

    .relative {
        height: auto !important;
    }

    .absolute img {
        vertical-align: top;
    }

    .small-image {
        top: 115px !important;
        left: 0px !important;
    }

    .about .image-wrapper {
        width: 100vw;
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .images {
        width: 60%;
    }
    .main-image {
        max-width: 70%;
        position: relative;
        bottom: 40px;
        left: 90px;
    }
    .about .image-wrapper .small-image {
        width: 30% !important;
        position: absolute !important;
        top: 115px !important;
        left: 120px !important;
        border: none;
    }
}

@media(max-width: 480px) {
    .images {
        width: 70%;
    }
    .about .image-wrapper .small-image {
        width: 33% !important;
        top: 110px !important;
        left: 110px !important;
    }
}

@media(max-width: 380px) {
    i.responsive {
        font-size: 28px;
    }
}