@font-face {
    font-family: GlacialIndifference;
    src: url("/assets/fonts/GlacialIndifference-Bold.otf");
    font-weight: bold;
}
@font-face {
    font-family: GlacialIndifference;
    src: url("/assets/fonts/GlacialIndifference-Regular.otf");
}
@font-face {
    font-family: GlacialIndifference;
    src: url("/assets/fonts/GlacialIndifference-Italic.otf");
    font-style: italic;
}
@font-face {
    font-family: MoonTime;
    src: url("/assets/fonts/MoonTime-Regular.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Farben */
    --color-background-primary: #9fc994;
    --color-background-primary-darker: #88ac7f;
    --color-background-secondary: #fffcee;
    --color-background-secondary-darker: #fffddb;
    --color-accent: #7c9e74;
    --color-text-light: #F5F5F5;
    --color-text-light-hover: #e6e6e6;
    --color-text-dark: #283238;
    --color-text-dark-hover: #788897;

    /* Schriftarten */
    --font-sans: GlacialIndifference, Arial, sans-serif;
    --font-handwritten: MoonTime, cursive;

    /* Größen */
    --font-size-small: 12px;
    --font-size-base: 16px;
    --font-size-heading: 18px;
    --font-size-logo: 28px;

    /* Abstände */
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;

    /* Breiten */
    --max-width: 1200px;
}

body {
    font-family: var(--font-sans), sans-serif;
    background-color: var(--color-background-secondary);
}

h1, h2, h3 {
    font-family: var(--font-handwritten), cursive;
    color: var(--color-text-dark);
}

p, a, span {
    color: var(--color-text-dark);
}

h1 {
    font-size: 3.1rem;
    color: var(--color-text-light);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h5 {
    font-weight: 500;
    font-size: 1.1rem;
}

img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

ul {
    list-style-type: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-text-accent);
    font-family: var(--font-sans);
}

a:hover {
    text-decoration: underline;
}

hr {
    width: 100%;
}


#hero_section {
    width: 100vw;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

#hero_section .section_content {
    align-items: center;
    gap: 1rem;
    width: 80%;
    max-width: 40rem;
}

#hero_section .section_content p {
    color: var(--color-text-light);
}

#pitch_section {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-me_section {
    background-color: var(--color-background-primary);
    color: var(--color-text-light);
    display: flex;
    justify-content: center;
    align-items: center;
}
#about-me_section h2, 
#about-me_section p {
    color: var(--color-text-light);
} 


#about-me_section img {
    border: .5rem var(--color-background-secondary-darker) solid;
}

#about-me_section .section_content {
    max-width: 30rem;
}

#about-me_section .desktop-layout {
    max-width: 30rem;
    display: none;
}

#banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-color: var(--color-background-primary);
}

#banner .banner_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
    width: 80%;
    text-align: center;
    padding: 3rem 1.2rem;
    max-width: 40rem;
    position: relative;
    /* margin-bottom: 5rem; */
}

#banner  .banner_content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -55%;
    width: 50%;
    height: 3px;
    background-color: var(--color-background-primary);
    display: none;
}

#banner  .banner_content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -55%;
    width: 50%;
    height: 3px;
    background-color: var(--color-background-primary);
    display: none;
}

#work-flow_section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#tmp_divider_section {
    width: 100%;
    
    height: 20rem;
    position: relative;
    background-image: url("/assets/images/mobile/empty_venue.jpg");
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

#tmp_divider_section div {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#tmp_divider_section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
}
#tmp_divider_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(70%);
}

#tmp_divider_section h1 {
    color: var(--color-text-light);
    z-index: 1;
    text-align: center;
}

#contact_section {
    background-image: url("./assets/background.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 60rem;
}

.section_content-title {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: .7rem;
}

.section_content-text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.5rem;
}


.section_content-text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1.3rem;
}

.step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1.1rem;
}

.step_header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.step_count_indicator {
    --radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--radius);
    height: var(--radius);
    border-radius: 50%;
    font-size: 1.2rem;
    background-color: var(--color-background-primary);
    color: white
}

.step_title {
    font-size: 1.2rem;
}

.step_content {}

.step img {
    display: none;
}

.step_content_wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
}

.button {
    align-items: center;
    background-color: transparent;
    border: 2px solid var(--color-background-primary);
    color: var(--color-accent);
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    height: 48px;

    padding: 0 17px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
}

.button:focus {
    color: var(--color-background-primary);
}

.button:hover {
    background-color: var(--color-background-primary);
    color: var(--color-background-secondary);
}

.german_letter {
    color: var(--color-text-light);
    font-size: 1.5rem;
    margin-right: .2rem;
    font-style: italic;
}

@media (min-width: 768px) {
    #about-me_section .section_content-text img {
        display: none;
    }
    
    #about-me_section .section_content {
        align-self: stretch;
        justify-content: flex-start;
    }

    #about-me_section {
        padding: 5rem 0;
        background-color: transparent;
    }

    #about-me_section h2,  
    #about-me_section p  {
        color: var(--color-text-dark);
    }

    #about-me_section .desktop-layout {
        display: block;
        width: 50%;
        max-width: 30rem;
        border: .4rem solid white;
    }

    #banner {
        /* background-image: none; */
    }

    /* #banner  .banner_content::after,
    #banner  .banner_content::before {
        display: block;
    } */
    
    #work-flow_section {
        flex-direction: column;
    }

    #work-flow_section .section-img img {
        max-width: 30rem;
        display: none;
    }

    .step {
        padding: 2rem;
        color: var(--color-text-dark);
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: row;
        gap: 2rem;
    } 

    .step img {
        max-width: 30rem;
        width: 50%;
        display: block;
        border: .5rem solid var(--color-background-secondary-darker);
    }
/* 
    .step_count_indicator {
        background-color: var(--color-background-secondary);
        color: var(--color-text-dark);
    }  */

    #tmp_divider_section {
        background-image: url("./assets/desktop/lastone.jpg");
        background-position: center;
        display: none;
    }

    #tmp_divider_section::after {
        backdrop-filter: blur(3px);
    }
    #tmp_divider_section::before {
        backdrop-filter: brightness(50%);
    }

    #contact_section {
        background-image: none;
    }

    button {
        min-width: 170px;
    }
}