/* archivo-100 - latin */
@font-face {
    font-display: swap;
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/archivo-100.woff2') format('woff2');
}
  /* archivo-300 - latin */
@font-face {
    font-display: swap; 
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/archivo-300.woff2') format('woff2'); 
}
/* archivo-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/archivo-400.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* archivo-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/archivo-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --beige2: #F2EEEA;
    --accent-light: #73a7eb;
    --accent-dark:  #3c77c4;
}

html {
    font-size: 16px;
}

body {
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    font-family: 'Archivo', 'Arial', sans-serif;
    font-weight: 300;
    min-height: 100vh;
}

a {
    color: var(--beige2);
    text-decoration: none;
}
    a:hover, a:focus {
        color: var(--accent-light);
        text-decoration: underline;
    }

.header {
    padding: 5vh 2rem 0 2rem

}
    .header .logo img {
        display: block;
        width: 100%;
    }

.content {
    color: var(--beige2);
    padding: 4rem 2rem 0;

    position: fixed;
    right: 0; bottom: 0; width: 100%;
}
    .content h1 {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0.15rem;
        line-height: 1.25rem;
    }

    .content h1 span {
        display: block;
        padding-top: 1rem;
        opacity: 0.75;
        font-weight: 100;
    }

    .content p.informations {
        color: var(--beige2);
        font-size: 0.9rem;
        padding-top: 1rem;
        hyphens: auto;
    }

    .content p.contact {
        color: var(--beige2);
        font-size: 1rem;
        padding-top: 1rem;
    }

        .content p.contact strong {
            display: block;
            font-weight: 400;
        }
        .content p.contact .phone, .content p.contact .email {
            display: block;
            font-weight: 100;
        }

    .content .footer {
        padding: 2rem 0 0.5rem 0;
        border-bottom: 0.5rem solid var(--beige2);
    }
        .content .footer ul {
            display: flex; justify-content: end;
            gap: 0.5rem;
            margin: 0;
            list-style-type: none;

        }
            .content .footer ul button {
                background-color: transparent;
                border: none; outline: none;
                color: var(--beige2);
                font-size: 1rem;
            }
                .content .footer ul button:hover, .content .footer ul button:focus {
                    color: var(--accent-light);
                }
            .content .footer ul button.datenschutz:before {
                content: '|'; margin-right: 1rem;
            }

    #impressumModal .modal-body h1, 
    #impressumModal .modal-body h2 {
        font-weight: 700;
        padding-top: 1rem;
    }
    
    #impressumModal .modal-body h1 {
        font-size: 2.0rem;
        font-weight: 700;
    }
    #impressumModal .modal-body h2 {
        font-size: 1.6rem;
        font-weight: 700;
    }  
    #impressumModal .modal-body p, ul {
        font-size: 1.2rem;
    }  
    #impressumModal .modal-body p strong {
        font-size: 1.2rem;
        font-weight: 700;
    }
    #impressumModal .modal-body a {
        color: var(--accent-dark);
    }


    
    #datenschutzModal .modal-body h1, 
    #datenschutzModal .modal-body h2,
    #datenschutzModal .modal-body h3, 
    #datenschutzModal .modal-body h4 {
        font-weight: 700;
    }

    #datenschutzModal .modal-body h1, 
    #datenschutzModal .modal-body h2 {
        padding-top: 1rem;
    }
    #datenschutzModal .modal-body h3, 
    #datenschutzModal .modal-body h4 {
        padding-top: 0.5rem;
    }

    #datenschutzModal .modal-body h1 {
        font-size: 2.0rem;
    }
    #datenschutzModal .modal-body h2 {
        font-size: 1.6rem;
    } 
    #datenschutzModal .modal-body h3 {
        font-size: 1.4rem;
    }  
    #datenschutzModal .modal-body h4 {
        font-size: 1.2rem;
    }  

    #datenschutzModal .modal-body p {
        font-size: 1.2rem;
    }  
    #datenschutzModal .modal-body p strong {
        font-size: 1.2rem;
        font-weight: 700;
    }

    #datenschutz a {
        color: #000;
    }

@media screen and (min-width: 450px) {
    .content h1 {
        font-size: 1.2rem;
        line-height: 2.5rem;
    }

    .content p.informations {
        font-size: 1.1rem;
        padding-top: 1rem;
    }

    .content p.contact {
        padding-top: 1rem;
    }
}

@media screen and (min-width: 600px) {
    .header, .content {
        padding: 3rem 3rem 0;
    }

    .content p.informations {
        padding-top: 1rem;
    }

    .content p.contact {
        padding-top: 2rem;
    }
}

@media screen and (min-width: 700px) {
    .header, .content {
        padding: 3rem 3rem 0;
    }
}

@media screen and (min-width: 768px) {
    .header {
        padding: 5rem;
        width: 50vw;
    }
        .header .logo img {
            margin: 0;
        }

    .content {
        border-color: var(--beige2);
        border-style: solid;
        border-width: 1px 0 0 1px;
        padding: 4rem 4rem 0 4rem;
        width: 50vw;
    }

    .content h1 {
        font-size: 1.75rem;
        line-height: 3rem;
    }

    .content p.informations {
        font-size: 0.9rem;
        padding-top: 2rem;
    }

    .content p.contact {
        padding-top: 1.5rem;
    }
}

@media screen and (min-width: 1050px) {
    .header {
        padding: 7.5rem;
    }

    .content {
        padding: 4rem 4rem 0 4rem;
    }

    .content p.informations {
        font-size: 1.1rem;
        padding-top: 4rem;
    }

    .content p.contact {
        padding-top: 3rem;
    }
}

@media screen and (min-width: 1200px) {
    .header {
        padding: 10rem;
    }

    .content {
        padding: 2rem 2rem 0 2rem;
    }

    .content p.informations {
        font-size: 1.2rem;
        padding-top: 1.5rem;
    }

    .content p.contact {
        font-size: 1.2rem;
        padding-top: 1.5rem;
    }

    .content .footer ul button {
        font-size: 1.1rem;
    }
}



@media screen and (min-width: 1600px) {
    .header {
        padding: 10rem;
    }

    .content {
        padding: 4rem 4rem 0 4rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p.informations {
        font-size: 1.4rem;
        padding-top: 6rem;
    }

    .content p.contact {
        font-size: 1.2rem;
        padding-top: 3rem;
    }

    .content .footer ul button {
        font-size: 1.2rem;
    }
}