:root{
    --pr: #ac9ab5;
    --se: #dfd6dc;
    --ac: #9c88a6;
    --txt-l: #ffffff;
    --txt-d: #403d3d;
    --mw: 1300px;
    --page-padding: 0 1em;
    --section-padding: 3em 1em;
}

@font-face {
    font-family: 'standart-font';
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-display: swap;
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'schreibschrift';
    src: url('../fonts/Corinthia-Regular.ttf') format('truetype');
    font-display: swap;
    font-style: normal;
    font-weight: normal;
}

html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body{
    margin: 0;
    padding: 0;
    background-color: var(--pr);
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    font-family: 'standart-font';
}

main {
    margin-top: 80px;
}

.mw{
    width: 100%;
    max-width: 1200px;
}
.se{
    background-color: var(--se);
}

section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.column{
    display: flex;
    flex-direction: column;
}

.holder{
    display: flex;
    justify-content: space-between;
    gap: 2em;
    width: 100%;
    position: relative;
    align-items: center;
    padding: var(--section-padding);
}


.img-align-box {
    width: 100%;
    max-width: var(--mw);
    margin: 0 auto;
    padding: var(--section-padding);
    display: flex;
    align-items: center; /* Zentriert Text vertikal zum Bild */
    gap: 2em;
    flex-wrap: wrap; /* Für bessere Responsiveness */
}
.img-align-box .img-holder {
    width: 40%;
    aspect-ratio: 1/1;
    min-width: 150px;
    max-width: 400px;
    height: auto;
}
.img-align-box .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.txt-holder {
    flex: 1;
}

.img-holder{
    position: relative;
}
.mask{
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    width: 101% !important;
    height: 101% !important;

}
.img-holder img{
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.txt-holder{
    
}
.txt-holder p{
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--txt-l);
}

.txt-holder-d p{
    color: var(--txt-d);
}
.txt-holder span{
    font-size: 2rem;
    font-weight: 700;
    color: var(--txt-l);
}


.heading{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--txt-l);
    margin-top: 48px;
}
.heading-d{
    color: var(--txt-d);
}


.btn{
    width: max-content;
    white-space: nowrap;
    padding: 5px 10px;
    background: var(--txt-l);
    color: var(--pr);
    font-size: 1.1rem;
    cursor: pointer;
    border: solid 2px var(--txt-l);
    transition: filter .2s;
    border-radius: 5px;
}
.btn-d{
    background: var(--pr);
    color: var(--txt-l);
    border: solid 2px var(--pr);
}
.btn-outline{
    background: transparent;
    color: var(--txt-l);
}
.btn:hover{
    filter: brightness(90%);
}
.btn-outline:hover{
    background: var(--txt-l);
    color: var(--pr);
}
.btn-box{
    display: flex;
    gap: 1em;
    margin-top: 2em;
}

@media(max-width: 600px){
    .heading{
        font-size: 2rem;
    }
}

@media(max-width: 500px){

    .img-align-box {
        flex-direction: column;
        align-items: center;
    }

    .img-align-box .img-holder {
        width: 70%;
        max-width: 300px;
        margin: 0 auto;

    }
}
@media(max-width: 370px){
    .img-align-box{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
    .img-align-box .img-holder{
        margin: 0;
    }

    .btn {
        font-size: .8rem;
    }
    .heading {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 260px) {
    .btn {
        font-size: .6rem;
    }
    
}

@media screen and (max-width: 216px) {
    .heading {
        font-size: 1.4rem;
    }
    
}


/* DSGVO */

.impressum-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.Impressum {
    max-width: 800px;
    width: 100%;
    text-align: left;
    color: #333;
}

.Impressum h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #000;
}


.impressum-txt p {
    margin-top: 0;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    word-break: break-word;
}


.impressum-txt p + p {
    margin-top: 0;
}

.impressum-txt {
    font-size: 1rem;
    white-space: normal;
}

/* Responsive Optimierung */
@media (max-width: 768px) {
    .Impressum {
        padding: 0 10px;
    }

    .Impressum h1 {
        font-size: 1.5rem;
    }

    .impressum-txt {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .impressum-txt {
        font-size: 0.9rem;
    }
}


.datenschutzerklaerung-wrapper {
    margin-top: 80px;
    background-color: #fff;
    padding: 50px 20px;
    min-height: 100vh;
    box-sizing: border-box;
}