:root {

    --text-color: #333333;
    --background-color: #FFF8F0;
    --background-color-2: rgb(255, 223, 186);
    --color-2: #C08552;
    --color-3: #8C5A3C;
    --color-4: #4B2E2B;
}



/* typography */

h1 {
    color: var(--color-2);
    text-align: center;
}

h2 {
    color: var(--color-3);
    margin-bottom: 20px;
    font-size: 64px;
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    text-align: center;
}

p {
    color: var(--text-color);
    line-height: 1.6;   
    font-size: 1.5rem;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 100px 0;
    margin-bottom: 100px;
    background-color: var(--background-color-2);
    background-image: url('media/images/header-spline.webp');
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: 40em;
}

.header-background {
    background-color: var(--color-4);
    color: var(--background-color-2);
    padding: 20px 0 20px 0;
    text-align: center;
    mask-image: url("media/images/header-background-simple.webp");
    mask-size:contain;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 100%;
    height: 70vh;
    

}

header img {
    position: relative;
    width: 35em;
    height: auto;
    margin-top: 50px;
    z-index: 10;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
}





.content-divider {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 8em;
}

.content-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 30%;
}


.content-divider img {
    border-radius: 10px;
    width: auto;

}

.vine-hr-left {
    border: none;
    height: 50px;
    background-color: var(--color-3);

    mask-image: url('media/images/vine-hr.webp');
    mask-repeat: repeat-x;
    mask-size: contain;
    transform: scaleX(-1);
}

.vine-hr-right {
    border: none;
    height: 50px;
    background-color: var(--color-3);

    mask-image: url('media/images/vine-hr.webp');
    mask-repeat: repeat-x;
    mask-size: contain;
}

/* Spacers */

.spacer-rose {
    margin: 40px 0 40px 0;
    height: 120px;
    /* background-image: url('media/images/favicon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; */

    background-color: var(--color-3);

    mask-image: url('media/images/rose-spacer.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 12em;
    opacity: 0.5;


}

.spacer-acorn {
    margin: 40px 0 40px 0;
    height: 120px;
    background-color: var(--color-3);

    mask-image: url('media/images/acorn-spacer.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 12em;
    opacity: 0.5;
}

.contact-section {
    text-align: center;
    font-size: 30px;
    color: var(--text-color);
    font-family: 'Times New Roman', Times, serif;
    margin-top: 50px;
    line-height: 1.8em;
}

 a {
    color: var(--color-2);
    text-decoration: none;
 }


footer{ 
    display: flex;
    justify-content:space-around;
    margin-top: 40px;
    height: 200px;
    background-color: var(--color-4);
    background-image: url('media/images/footer-spline.webp');
    background-position: top center;
    background-repeat: repeat-x;
    background-size: 40em;
    padding-top: 50px;
    padding-bottom: 20px;
}

.impressum-section {
    color: var(--background-color-2);
    text-align: center;
    padding: 40px 0 40px 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.6rem;
    place-self: center;
}

.apple-background {
    background-color: var(--color-2);
    mask-image: url('media/images/apple.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: 300px;
    opacity: 0.5;
}

.crossbow-background {
    background-color: var(--color-2);
    mask-image: url('media/images/crossbow.webp');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: 300px;
    opacity: 0.5;
}





@media (max-width: 1300px) {

    p {
        font-size: 1.2rem;
    }
    .content-container {
        max-width: 90%;
        flex-direction: column;
        
    }



    .content-divider {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }


    .impressum-section {
        font-size: 0.7rem;
    }

    .row-reverse {
        flex-direction: column-reverse;
    }
}




.legal-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section {
    width: 80%;
    padding: 40px;
}

.legal-page h1 {
    text-align: left;
}