:root {
    --yellow: #f9c736;
    --yellow-radial: #ffde88;
    --yellow-light: #fdf1b9;
}

/* Body Setup */
html, body {
    height: 100%;
    margin: 0;
}

html {
    font-size: 17px;
}

/* Wrapper um den gesamten Content */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Content Area soll sich ausdehnen */
main {
    flex: 1; /* Nimmt verfügbaren Platz ein */
}

/* Footer bleibt unten */
footer {
    margin-top: auto;
}


p, span {
    letter-spacing: -0.02rem;
    line-height: 1.7rem;
}

body {
    margin: 0;
    background-color: var(--yellow-light);
    color: #000000;
    font-family: "Poppins", serif;

}

/* Color utility classes */
.color-yellow {
    color: var(--yellow);
}

.color-yellow-light {
    color: var(--yellow-light);
}

.color-black {
    color: #000000;
}

.color-white {
    color: #ffffff;
}

/* Background color utility classes */
.bg-yellow {
    background-color: var(--yellow);
    color: #000000;
}

.bg-yellow-light {
    background-color: var(--yellow-light);
    color: #000000;
}

.bg-yellow-black-gradient {
    background-color: var(--yellow);
    background: linear-gradient(180deg, var(--yellow) 50%, black 50%);
}

.bg-yellow-radial {
    background-color: var(--yellow);
    background: radial-gradient(circle, var(--yellow-light) 0%, var(--yellow) 50%);
    color: #000000;
}

.bg-yellow-radial-header {
    background-color: var(--yellow);
    background: radial-gradient(circle at 25% 40%, var(--yellow-radial) 0%, var(--yellow) 80%);
    color: #000000;
}

.bg-yellow-radial-center {
    background-color: var(--yellow);
    background: radial-gradient(circle at 50% 40%, var(--yellow-radial) 0%, var(--yellow) 60%);
    color: #000000;
}

.bg-yellow-radial-center-alt {
    background-color: var(--yellow);
    background: radial-gradient(circle at 50% 30%, var(--yellow-radial) 0%, var(--yellow) 70%);
    color: #000000;
}

.half-circle {
    border: double 5px transparent;
    background-image: linear-gradient(var(--yellow-light), var(--yellow-light)),
    linear-gradient(to right, var(--yellow-light) 70%, black 60%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.bg-black {
    background-color: #000000;
    color: var(--yellow-light);
}

.shadow-yellow {
    box-shadow: 10px 10px 0px 0 var(--yellow);
}

.shadow-black-bottom {
    box-shadow: 0px 35px 75px -50px black;
}

a {
    color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Passion One", serif;
    /*letter-spacing: 0.15rem;*/
    /*line-height: 3.3rem;*/
}

p, label {
    &.smaller {
        font-size: 0.8rem;
    }
}

h1 {
    line-height: 2.3rem;
}

h1.biggest {
    font-size: 4.7rem;
    line-height: 4rem;
}

h1.bigger {
    font-size: 3rem;
    line-height: 3rem;
}

h3.bigger {
    font-size: 3rem;
    line-height: 3rem;
}

.header-sub {
    margin-bottom: 0;
}

p.font-1-5 {
    font-size: 1.15rem;
}

input:not([type="checkbox"]):not([type="radio"]) {
    background-color: var(--yellow) !important;
    border-color: var(--yellow-light) !important;
    border-radius: 50px !important;
    padding-left: 1.7rem !important;

    &::placeholder {
        color: #000000 !important;
        font-size: 1rem;
        opacity: 1;

    }

    &::-ms-input-placeholder { /* Edge 12-18 */
        color: #000000 !important;
    }

    &::-webkit-input-placeholder {
        color: #000000 !important;
    }
}

.image-mobile {
    margin-left: -8px;
    width: calc(100% + 16px)
}

.image-mobile-bigger {
    margin-left: -28px;
    width: calc(100% + 56px) !important
}

.form-check-input {
    background-color: var(--yellow) !important;
    border-color: var(--yellow-light) !important;

    &:checked {
        background-color: var(--yellow) !important;
        border-color: var(--yellow-light) !important;
        /* Angepasste SVG-Grafik mit schwarzem Haken (fill='%23000' entspricht "#000") */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23000' d='M6.173 11.414l-3.757-3.757a.75.75 0 011.06-1.06l2.697 2.697 5.697-5.697a.75.75 0 011.06 1.06L6.173 11.414z'/%3e%3c/svg%3e");
        /*background-size: 50%;*/
        background-position: center;
        background-repeat: no-repeat;
    }
}

.info-text {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
}

.dsgvo-text {
    padding-left: 1.3rem;
}

.btn {
    background-color: var(--yellow-light) !important;
    border-color: var(--yellow-light) !important;
    border-radius: 50px !important;
    color: #000000 !important;

    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;

    font-weight: bold !important;

    &.btn-dark {
        background-color: var(--yellow) !important;
        border-color: var(--yellow) !important;
    }

    &.btn-small-border {
        border-radius: 5px !important;
    }

    &.btn-light-font {
        font-weight: normal !important;
    }
}

.btn-transform {
    transform: none;
}

.navbar {
    margin-bottom: -15px;
}

#header-logo {
    cursor: pointer;
    padding: 15px 10px 5px 10px;
}

footer {
    background-color: #000000;
    color: var(--yellow-light);
}

.text-dmm-yellow {
    color: var(--yellow);
}

.text-dmm-yellow-light {
    color: var(--yellow-light);
}

.border-yellow {
    border-color: var(--yellow) !important;
}

.border-yellow-light {
    border-color: var(--yellow-light) !important;
}

.kontakt-bg:before {
    background-image: url('img/background.jpg');
    background-position: -75px top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    content: " ";
    display: block;
    height: 100%;
    left: 0;
    opacity: .2;
    position: absolute;
    top: 0;
    width: 100%
}

.header2 {
    position: relative;
    z-index: 2;
}

.btn-header {
    background-color: var(--yellow) !important;
}

.index .btn-header {
    background-color: var(--yellow-light) !important;
}

.round-img-bg {
    border: 1px solid var(--yellow-light) !important;
    background-color: var(--yellow);
    border-radius: 350px;
    padding: 1.9rem 0.9rem 1.2rem 1.4rem;
    transform: translateY(10px);
    position: absolute;
    top: 0px;
    right: -130px;
    z-index: 1;
}

.footer-header-text {
    font-weight: bold;
    font-size: 1.5rem;

    h2 {
        color: var(--yellow);
    }

    span {
        color: var(--yellow-light);
    }
}

.footer-logo {
    height: 105px;
}

.footer-text {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--yellow) inset !important;
}


#img-02-ramona {
    object-position: center;
    width: 100%;
    height: auto;
}

#img-4-fragezeichen {
    object-position: center;
    width: 100%;
    height: auto;
}

#img-03-tuev {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 40%;
}

#img-04-ramona {
    padding-left: 0;
    padding-right: 0;
    object-fit: cover;
}

#img-05-ramona {
}

#img-06-zitat {
}

#img-07-ramona {
    padding-left: 0;
    padding-right: 0;
}

#img-08-ifv-performance {
}

#img-10-emTrace-1 {
}

#img-10-emTrace-2 {
}

#img-11-ramona {
    height: auto;
    width: 80%;
}

#img-12-klarheit {
    height: auto;
    width: 200px;
}

#img-12-wirkung {
    height: auto;
    width: 200px;
}

#img-12-relevanz {
    height: auto;
    width: 200px;
}


#img-13-ramona {
    width: 100%;
}

#img-16-ramona {
    object-position: center;
    width: 105%;
    height: auto;
}

#img-18-ramona {
    object-position: center;
    width: 100%;
    height: auto;
}

#text-04-ramona {
    width: 100%;
}

#text-07-ramona {
    width: 100%;
}

.calendly-overlay .calendly-popup {
    max-height: 100% !important;
    max-width: 100% !important;
}

.circle-content {
    height: 350px;
}

.circle-headline {
    font-size: 4.1rem;
}

.circle-images img {
    width: 50px;
    transform: translateY(-10px);
}

@media screen and (min-width: 1200px) {
    .circle-content {
        height: 450px;
    }

    .circle-headline {
        font-size: 3.3rem;
    }
}

@media (min-width: 992px) {
    .image-mobile, .image-mobile-bigger {
        margin-left: inherit;
        width: 100% !important
    }

    .bg-yellow-radial-center-alt {
        background-color: var(--yellow);
        background: radial-gradient(circle at 50% 40%, var(--yellow-radial) 0%, var(--yellow) 60%);
        color: #000000;
    }

    .btn-header {
        background-color: var(--yellow) !important;
        border-color: var(--yellow) !important;
    }

    .kontakt-bg:before {
        background-position: top;
        opacity: 1
    }

    .contact-form-section {
        max-width: 750px;
    }

    .btn-transform {
        transform: translateY(50px);
    }

    #section-04-ramona .row {
        height: 800px;
    }

    #img-02-ramona {
        position: absolute;
        left: -135%;
        bottom: -100px;
        height: 700px;
        width: auto;
    }

    #img-4-fragezeichen {
        position: absolute;
        left: -100%;
        bottom: -100px;
        height: 700px;
        width: auto;
    }

    #img-03-tuev {
        position: absolute;
        right: 0;
        bottom: 0px;
        width: auto;
        height: 100px;
    }

    #img-11-ramona {
        height: 500px;
        width: auto;
    }

    #img-12-klarheit {
        height: auto;
        width: 300px;
    }

    #img-12-wirkung {
        height: auto;
        width: 300px;
    }

    #img-12-relevanz {
        height: auto;
        width: 300px;
    }

    #img-13-ramona {
        height: auto;
        margin-right: -150px;
        width: 75%;
    }

    #img-16-ramona {
        position: absolute;
        right: -5px;
        bottom: 0;
        height: auto;
        width: 55%;
    }

    #text-04-ramona {
        position: absolute;
        top: 0;
        right: 0;
        padding-right: 10px;
        width: auto;
    }

    #text-07-ramona {
        position: absolute;
        top: 0;
        right: 0;
        padding-right: 10px;
        width: auto;
    }
}

@media screen and (min-width: 577px) {
    .circle-headline {
        font-size: 3.3rem;
    }
}

@media screen and (max-width: 576px) {

    html {
        font-size: 13px;
    }

    .round-img-bg {
        position: absolute;
        right: 20px;
        top: -30px;
        transform: translateY(30px);

        img {
            height: 50px
        }
    }

    h1.biggest {
        font-size: 4rem;
        line-height: 3.2rem;
    }

    /*h1.bigger {*/
    /*    font-size: 2.3rem;*/
    /*    line-height: 2.5rem;*/
    /*}*/
}


/* MODAL */

.modal-title {
    font-size: 1.6rem;
}

.stars {
    letter-spacing: -0.2rem;
}

.accordion-section {

    .black-line {
        max-width: 5px;
        background-color: black;
        padding: 0;
        position: relative;
        margin-left: 15px;
        margin-right: 15px;

        span {
            position: absolute;
            top: 35px;
            left: 0;
            right: 0;
            transform: translateX(-40%);
            background-color: black;
            border-radius: 50px;
            height: 30px;
            width: 30px;
        }

        &.first {
            span {
                top: 80px;
            }
        }

    }

    .accordion-item {
        border-radius: 25px !important;
        background-color: var(--yellow-light) !important;
        border: none;

        .accordion-body {
            background-color: #f9c73655 !important;
            border-bottom-left-radius: 25px !important;
            border-bottom-right-radius: 25px !important;
        }

        .accordion-header {
            background: linear-gradient(180deg, #00000000 50%, #f9c73655 50%);

            &:has(.collapsed) {
                background: none;
            }

            .accordion-button {
                border-radius: 10px !important;
                background-color: var(--yellow) !important;

                &.collapsed {

                }

                &::after {
                    display: none;
                }

                &::before {
                    content: '\F0140';
                    font-family: 'Material Design Icons';
                    font-size: 3rem;
                    margin-left: auto;
                    order: 1;
                    color: var(--yellow-light);
                    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                    transform: rotate(0deg);
                    opacity: 1;
                }

                &:not(.collapsed)::before {
                    content: '\F0156';
                    transform: rotate(90deg);
                    opacity: 0.9;
                }

            }

            .accordion-button:focus {
                box-shadow: none;
            }

            .accordion-button:not(.collapsed) {
                color: inherit;
            }
        }

        ul li {
            list-style: none;
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
        }

        ul li::before {
            content: '•';
            color: var(--yellow);
            font-size: 5rem;
            position: absolute;
            left: -5px;
            top: 0;
            line-height: 1;
            transform: translateY(-1.9rem);
        }


    }
}

.image-cover, .image-cover img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.check-list {
    &.no-bullet-space {
        ul li {
            padding-left: 0.3rem;
        }
    }

    ul li {
        list-style: none;
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    ul li::before {
        content: '\F0E1E';
        font-family: 'Material Design Icons';
        color: #000000;
        background-color: var(--yellow);
        font-size: 1rem;
        font-weight: bold;
        position: absolute;
        left: -30px;
        top: 0;
        line-height: 1;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
