:root {
    /* Colors */
    --background-white: #F3F0EB;
    --background-violet: #8C62AA;
    --text-color-black: #201E1F;
    --text-color-white: #F3F0EB;
    --text-color-violet: #8C62AA;
    --button-color-hover: #AE84CC;
    --button-color: #8C62AA;
    --button-text-color: #F3F0EB;

    /* Fonts */
    --body-text: Aptos;
    --titles: Aquavit;

    /* Font sizes */
    --Desktop-H1-64: 64px;
    --Desktop-H2-36: 36px;
    --Desktop-H3-28: 28px;
    --Desktop-subtitle-20: 20px;
    --Desktop-fliesstext-18: 18px;
    --Mobile-H1-40: 40px;
    --Mobile-H2-28: 28px;
    --Mobile-H3-20: 20px;
    --Mobile-subtitle-18: 18px;
    --Mobile-fliesstext-16: 16px;

    /* Spacing */
    --spacing-20: 20px;
    --spacing-40: 40px;

    /*Radius*/
    --radius-round-subtle: 4px;
    --radius-round-medium: 16px;
    --radius-round-strong: 32px;

}

* {
    margin: 0;
    padding: 0;
    line-height: normal;
    box-sizing: border-box;
    /* Hilfreich für einheitliche Layouts */
}

body {
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
}

/* mobile version */
.frame {
    /*  max-width: 1200px; */
    /* Limit maximum width on larger screens */
    width: auto;
    /* Allow the frame to take its natural width */
    background-color: var(--background-white);
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    padding: 32px 12px;
    gap: 0px 20px 0px 0px;
    /* Spacing between child elements */
    box-sizing: border-box;
    /* Include padding in size calculations */
}

.frame-2 {
    /* max-width: 1200px; */
    /* Limit maximum width on larger screens */
    width: auto;
    /* Allow the frame to take its natural width */
    background-color: var(--background-violet);
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    padding: 32px 12px;
    gap: 10px;
    /* Spacing between child elements */
    box-sizing: border-box;
    /* Include padding in size calculations */
}


.image {
    display: flex;
    max-width: 80%;
    object-fit: cover;
    margin: 20px 0 10% 10%;
}

.image-2 {
    display: flex;
    max-width: 50%;
    object-fit: cover;
    margin: 0 0 10px 0;
    border: 0.5px solid var(--text-color-white);

}

/* Grid */
.grid-container {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.grid-container-2 {
    display: grid;
    grid-template-columns: auto;
    z-index: 2;
}


/* Text Styles */

.text-in-card {
    margin: 0px 10% 4%;
    /*top & bottom = 0px, right & left = 10%*/
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 12px;
}

.text-in-card-2 {
    margin: 0 10%;
    /*top & bottom = 0px, right & left = 10%*/
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 12px;
}

.h1,
.h2,
.h3,
.h3-2,
.subtitle,
.subtitle-2,
.lauftext,
.lauftext-2,
.lauftext-3 {
    /*   display: flex; */
    align-items: center;
    justify-content: center;

}

.h1 {
    font-family: var(--titles);
    font-size: var(--Mobile-H1-40);
    color: var(--text-color-violet);
    font-weight: 900;
}

.h2 {
    font-family: var(--body-text);
    font-size: var(--Mobile-H2-28);
    color: var(--text-color-white);
}

.h3 {
    font-family: var(--body-text);
    font-size: var(--Mobile-H3-20);
    color: var(--text-color-white);
}

.h3-2 {
    font-family: var(--body-text);
    font-size: var(--Mobile-H3-20);
    color: var(--text-color-violet);
}

.subtitle {
    font-family: var(--body-text);
    font-size: var(--Mobile-subtitle-18);
    color: var(--text-color-white);
}

.subtitle-2 {
    font-family: var(--body-text);
    font-size: var(--Mobile-subtitle-20);
    color: var(--text-color-black);
}

.subtitle-3 {
    font-family: var(--body-text);
    font-size: var(--Mobile-subtitle-20);
    color: var(--text-color-violet);
}

.lauftext {
    font-family: var(--body-text);
    font-size: var(--Mobile-fliesstext-16);
    color: var(--text-color-white);
}

.lauftext-2 {
    font-family: var(--body-text);
    font-size: var(--Mobile-fliesstext-16);
    color: var(--text-color-black);
}

.lauftext-3 {
    font-family: var(--body-text);
    font-size: var(--Mobile-fliesstext-16);
    color: var(--text-color-violet);
}

.lauftext li {
    margin: 8px 0;
}

.lauftext li:last-child {
    margin-bottom: 0;
}

.lauftext-2 li {
    margin: 8px 0;
}

.lauftext-2 li:last-child {
    margin-bottom: 0;
}

.text-hightlight {
    color: var(--text-color-violet);
}


.button-petition,
.button-telegram,
.button-instagram {
    border-radius: 5px;
    background-color: var(--button-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid var(--text-color-white);
    border-radius: 6px;
    flex-direction: column;
}

.button-petition:hover,
.button-telegram:hover,
.button-instagram:hover {
    background-color: var(--button-color-hover);
}

.button-text a {
    /* a eintragen, da sich es sonst nur auf <b> beschränkt */
    position: relative;
    color: var(--button-text-color);
    text-decoration: none;
    /* keine Unterstreichung */
    font-family: var(--body-text);
    font-size: var(--Mobile-subtitle-20);
}

.downloads {
    margin-top: var(--spacing-20);
    gap: 16px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* margin-left: 20px; */
}

.downloads-2 {
    margin-top: var(--spacing-20);
    gap: 16px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* margin-left: 20px; */
}

.link-wort {
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--body-text);
    font-size: var(--Mobile-subtitle-20);
    color: var(--text-color-violet);
}


/* Media Queries */

@media only screen and (min-width: 1024px) {
    .grid-container {
        grid-template-columns: auto auto;
    }

    .grid-container-2 {
        grid-template-columns: auto auto auto;
    }

    .h1 {
        font-size: var(--Desktop-H1-64);
    }

    .h2 {
        font-size: var(--Desktop-H2-36);
    }

    .h3,
    .h3-2 {
        font-size: var(--Desktop-H3-28);
    }

    .subtitle,
    .subtitle-2,
    .subtitle-3 {
        font-size: var(--Desktop-subtitle-20);
    }

    .lauftext,
    .lauftext-2,
    .lauftext-3 {
        font-size: var(--Desktop-fliesstext-18);
    }

    .button-text a {
        font-size: var(--Desktop-subtitle-20);
    }

    .image {
        display: flex;
        max-width: 80%;
        object-fit: cover;
        margin: auto;
    }

    .image-2 {
        display: flex;
        max-width: 60%;
        object-fit: cover;
        margin: auto;
        border: 0.5px solid var(--text-color-white);
    }

    .downloads {
        margin-top: var(--spacing-20);
        gap: 16px;
        display: flex;
        /* justify-content: center; */
        align-items: center;
        /* margin-left: 20px; */
    }

    .downloads-2 {
        margin-top: var(--spacing-20);
        gap: 16px;
        display: flex;
        /* justify-content: center; */
        align-items: center;
        margin-right: 20px;
    }

}

@media only screen and (min-width: 1024px) {
    .frame {
        /* max-width: 1200px; */
        /* Set a maximum width */
        width: 100%;
        /* Ensure it takes the full width up to the max-width */
        margin: 0 auto;
        /* Center the frame horizontally */
        /* margin-top: var(--spacing-20); */
        display: flex;
        flex-direction: column;
        /* Stack content vertically */
        align-items: center;
        /* Center content horizontally */
        justify-content: center;
        /* Center content vertically */
    }

    .frame-2 {
        /* max-width: 1200px; */
        /* Set a maximum width */
        width: 100%;
        /* Ensure it takes the full width up to the max-width */
        margin: 0 auto;
        /* Center the frame horizontally */
        /* margin-top: var(--spacing-20); */
        display: flex;
        flex-direction: column;
        /* Stack content vertically */
        align-items: center;
        /* Center content horizontally */
        justify-content: center;
        /* Center content vertically */
    }
}