.elementor-kit-8{--e-global-color-primary:#D9C7B2;--e-global-color-secondary:#E8E1D7;--e-global-color-text:#2A2A2A;--e-global-color-accent:#D67A3E;--e-global-color-0c4ca6f:#F8F5F0;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.2px;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-line-height:1.3px;--e-global-typography-secondary-letter-spacing:0.2px;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-letter-spacing:0px;--e-global-typography-text-word-spacing:0px;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-size:15px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:1.4px;--e-global-typography-accent-letter-spacing:0.5px;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;--container-default-padding-top:80px;--container-default-padding-right:0px;--container-default-padding-bottom:80px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1025px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:480px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html {
    scroll-behavior: smooth;
}

/* Karten oben/unten */
.box-wrapper {
    position: relative;
    overflow: visible !important;
}

.box-white,
.box-purple {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 48px 32px;
    transition:
        transform 0.45s cubic-bezier(.19,1,.22,1),
        box-shadow 0.45s cubic-bezier(.19,1,.22,1),
        z-index 0.2s ease;
}

.box-white {
    z-index: 2;
}

.box-white:hover,
.box-purple:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.box-purple:hover {
    z-index: 3;
}

/* responsive Kartengrößen */
@media (min-width: 1025px) {
    .box-white,
    .box-purple {
        height: 420px;
    }
}

@media (max-width: 1024px) {
    .box-white,
    .box-purple {
        padding: 32px 32px 24px;
        height: 360px;
    }
}

@media (max-width: 767px) {
    .box-white,
    .box-purple {
        padding: 24px 20px 20px;
        height: 300px;
    }
}

.box-wrapper .elementor-grid {
    align-items: stretch !important;
}

/* gesamter Bereich 4 Karten + Pick your Style */
@media (min-width: 1025px) {
    .style-screen {
        min-height: 100vh;
        display: grid;
        grid-template-rows: 1fr auto 1fr;
        align-items: center;
        justify-items: center;
    }
}

/* Pick your Style Block */
.style-block {
    position: relative;
    z-index: 5;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    background-color: transparent;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    margin-bottom: -40px;
    animation: fadeInSoft 0.8s ease-out 0.25s both;
    transition:
        background-color 0.45s cubic-bezier(.19,1,.22,1),
        color 0.45s cubic-bezier(.19,1,.22,1),
        transform 0.45s cubic-bezier(.19,1,.22,1);
}

.style-title {
    margin-bottom: 0;
    text-align: center;
    transition: transform 0.45s cubic-bezier(.19,1,.22,1), color 0.45s cubic-bezier(.19,1,.22,1);
}

.style-desc {
    opacity: 0;
    transform: translateY(8px);
    text-align: center;
    transition: opacity 0.45s cubic-bezier(.19,1,.22,1), transform 0.45s cubic-bezier(.19,1,.22,1);
}

/* Hover: abdunkeln + Text einblenden, smooth */
.style-block:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

.style-block:hover .style-title {
    transform: translateY(-2px);
    margin-bottom: 8px;
}

.style-block:hover .style-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Overlap & Abstände für kleinere Screens anpassen */
@media (max-width: 1024px) {
    .style-block {
        margin-top: -20px;
        margin-bottom: -20px;
    }
}

@media (max-width: 767px) {
    .style-block {
        cursor: default;
        background-color: transparent;
        color: inherit;
        margin-top: 0;
        margin-bottom: 0;
    }

    .style-desc {
        opacity: 1;
        transform: none;
    }
}

/* Fade-in Animation */
@keyframes fadeInSoft {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* globale Section-Abstände entfernen, damit alles wie ein Block wirkt */
.elementor-section {
    margin: 0 !important;
    padding: 0 !important;
}
@media (min-width: 1025px) {
    .style-screen {
        min-height: 100vh;
        display: grid;
        grid-template-rows: auto auto auto;
        align-content: center;
        justify-items: center;
        row-gap: 24px;
    }
}

.style-block {
    margin-top: -16px;
    margin-bottom: -16px;
}/* End custom CSS */