@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');

html {
    font-family: Signika, Helvetica, sans-serif;
}

body {
    scroll-behavior: smooth;
    margin: 0;
    z-index: -1;
    height: 100%;
    overflow: hidden;
}

/* Für die scrollenden Sektionen */

.scroll-container {
    margin-top: 10vh;
    height: 90vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;

    section:nth-child(even) {
        background-color: #BE9B65;
        color: white;
        
        h1 {
            text-align: right;
        }
    }
}
  
section {
    display: flex;
    flex-direction: column;

    height: 90vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;

    color: #4F4538;
}

.section-content {
    display: flex;
    flex-direction: column;

    width: 50%;
    height: 90%;

    margin: 0 auto;

    /* border: dotted 2px gray; */
}

/* Intro-Sektion */

.header-image {
    width: auto;
    height: 50vh;
    object-fit: cover;
    object-position: 50% 0%;
}

#intro-content {
    height: 30vh;
}

.intro-text {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;

    :nth-child(2) {
        margin-left: 20px;
    }

    :nth-child(3) {
        margin-left: 40px;
    }
}

.section-content-body {
    display: flex;
    flex-direction: column;

    height: 100%;

    justify-content: space-evenly;
}

@media(max-width: 900px){
    .section-content {
      width: 90%;
    }

}

@media(max-width: 1300px) {
    .section-content {
        width: 80%;
    }
}

.kontakt-infos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;

    div {
        flex-grow: 1;
    }

    img {
        width: 3.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

#qualifikationen {
    ul {
        list-style-type: none;
        margin-left: 0;
        padding-left: 0;
        flex: 1 1 auto;
    }
}

/* Der Styled Calendar */

.styled-calendar-container {
    width: 100%; 
    border: none;
}