div.section.header {
    &:not(.active) {
        display: none;
    }

    --image-height: 675px;

    &.event {
        p.subtitle {
            font-size: 1.8rem;
            font-weight: normal;
            max-width: 600px;
            margin: 0 auto;
        }
    }

    div.wrapper {
        z-index: 1;
        position: relative;
        margin-top: 100px;
        min-height: 450px;
        text-align: center;

        h1 {
            font-size: 4rem;
        }

        p.subtitle {
            font-size: 2.8rem;
            font-weight: normal;
        }

        >:not(a) {
            /*
            color: var(--colour-hallie);
            text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.877);
            */
        }

        a.get-tickets {
            margin-top: 100px;
            display: block;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-color: var(--colour-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-left: auto;
            margin-right: auto;
            box-shadow: var(--big-shadow);

            &:hover {
                background-color: color-mix(in srgb, var(--colour-secondary), white 20%);;
            }

            span {
                font-family: 'Bubblegum Sans';
                font-size: 1.2rem;
                color: white;
            }

            svg {
                width: 40px;
                fill: white;
            }
        }
        
        div.ctas {
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            align-items: center;

            > a {
                font-size: 1.4rem;

                &.primary {
                    --colour-base: var(--colour-clara) !important;
                }

                &:has(svg) {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 9px;

                    svg {
                        fill: white;
                        width: 20px;
                    }
                }
            }
        }
    }
}

div.section.usps > div.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 72px;
    padding-bottom: 72px;

    div.usp {
        width: 380px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

        svg {
            fill: white;
            width: 100px;
        }

        h2 {
            font-size: 2.2rem;
        }

        p.subtitle {
            font-size: 1.4rem;
        }
    }
}

div.section.excited-to-meet-you > div.wrapper {
    p.headline {
        font-family: 'Bubblegum Sans';
        font-size: 2.4rem;
        text-align: center;
        margin-top: 0;
    }

    img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 600px;
        filter: drop-shadow(var(--big-shadow));
        padding-bottom: 36px;
    }

    a.button {
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
    }
}

div.section.get-tickets {
    #get {
        position: absolute;
        top: -150px;
    }

    > div.other-options {
        margin-top: 108px;
    }
}