
/* open-sans-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: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-600 - 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: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-800 - 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: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/open-sans-v40-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #283946;
    margin: 0;
    background-color: #b3cad0;
    overflow-x: hidden;
}

.top_image {
    background-image: url('../bilder/Monika_Bitzer_portrait.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
}

@supports (height: 100svh) {
    
    .top_image {
        height: 100svh;
    }
}

.top_image_text {
    position: absolute;
    bottom: 120px;
    /*margin-bottom: 120px; */
}

.top_image h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
}

.top_image p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


.section-content {
    padding: 120px 120px;
}

.section-content p 
{
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}


.section-content p.extra {
    font-weight: 800;
    font-size: 1.5rem;
}

.section-content p.small {
    font-weight: 400;
    font-size: 1rem;
    margin-top: 5px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem; /* Abstand zwischen Symbol und Telefonnummer */
}

.contact-info a {
    margin: 0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: inherit;
}

.contact-info a:hover {
    color: #425d76;
}

@media screen and (max-width: 768px) {
    .section-content {
        padding: 60px 30px;
    }
    
    .top_image h1 {
        font-size: 2.5rem;
    }

    .top_image p {
        font-size: 1.2rem;
    }
}

@media screen and (max-height: 768px) 
{
    .top_image_text {
        bottom: 80px;
    }
}