.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-text h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    margin-bottom: 20px;
    font-family: "Autumn-Wind", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100pt;
}

.header-text h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    word-spacing: 10px;
    padding-bottom: 20px;
}

.header-text ul {
    text-transform: uppercase;
}

.header-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-image-wedding {
    width: 100%;

}

/*.header-image img {
    width: 100%;
}*/

nav {
    margin-top: 2px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: black;
    text-decoration: none;
    position: relative;
    padding: 3px;
}

nav a:hover {
    color: var(--text-color);
}

nav a::after {
    content: "";
    height: 2px;
    width: 0;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
}

nav a:hover::after {
    width: 100%;
}

#toggle-button {
    display: none;
}

label[for="toggle-button"] {
    display: none;
}

label[for="toggle-button"] span {
    font-size: 40px;
}

@media(max-width: 800px) {
    nav {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--section-color);
        padding: 25px;
        border-radius: 0 0 25px 0;
    }
    nav ul {
        display: none;
        flex-direction: column;
    }
    #toggle-button:checked ~ ul {
        display: flex;
        margin-top: 25px;
    }
    label[for="toggle-button"] {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    .header-headline h1 {
        max-width: 90%;
        font-size: 14vw;
        text-align: center;
    }
    .header-headline h3 {
        max-width: 90%;
        font-size: 4vw;
    }
}