@font-face {
    font-family: 'Bellota Bold';
    font-style: normal;
    font-weight: bold;
    src: url('/content/Bellota-Bold.ttf');
}

body {
    font-family: sans-serif;
    margin: 0;
}

phone-nav {
    display: none;
}

radio-picker {
    display: flex;
    label {
        &:has(input:checked) {
            text-decoration: underline;
        }
        &:has(input:focus-visible) {
            outline: 2px dotted #000;
        }
        cursor: pointer;
    }
    input {
        /* To allow screen reader to still access these. */
        opacity: 0;
        position: absolute;
        pointer-events: none;
    }
}

.header-logo {
    width: 72px;
    position: absolute;
    left: 145px;
}

burger-menu {
    display: block;
    max-height: 0;
    transition: max-height 0.2s ease;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: #FFFFFF;
}

#burger-checkmark {
    display: none;
}

.nav1 {
    height: 100px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #000000;
}

.nav1-button {
    font-size: 25px;
    margin: 0 12.5px;
    color: black;
    text-decoration: none;
}

.nav2 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #000000;
    height: 75px;
    display: none;
}

.nav2-button, .nav2-button-selected {
    font-size: 30px;
    margin: 0 25px;
    color: black;
    text-decoration: none;
}
.nav2-button-selected {
    text-decoration: underline;
}

.centered {
    text-align: center;
}
.info-text {
    text-align: center;
    margin: 40px auto;
    width: 290px;
}
.arrow {
    position: absolute;
    margin: -45px auto auto 10px;
}
.phone-arrow {
    display: none;
}

h1 {
    font-family: 'Bellota Bold', sans-serif;
    font-size: 55px;
    font-weight: bold;
    margin: 0;
}

.date {
    font-size: 0.8em;
    font-weight: bold;
    font-variant: small-caps;
    color: #3c3c3c;
}

.pink {
    background: linear-gradient(#FFD3F8 20%, #FFFFFF);
    background-attachment: fixed;
}
.blue {
    background: linear-gradient(#E0FAFF 20%, #FFFFFF);
    background-attachment: fixed;
}
.yellow {
    background: linear-gradient(#FFE5A7 20%, #FFFFFF);
    background-attachment: fixed;
}
.black {
    background: #000;
    color: #fff;
}

h2 {
    font-size: 35px;
    font-weight: normal;
}

blockquote {
    border-left: 3px dotted;
    margin-inline: 0em;
    padding-inline: 1em;
    font-style: italic;
    color: #353535;
}

.footnote-definition {
    font-size: 0.8em;
    p {
        display: inline;
    }
}

@media (width > 1105px) {
    article {
        padding: 110px 0 110px 0;
        section {
            width: 700px;
            padding-right: calc(20px + 0.55 * 700px);
            margin: auto;
        }
    }

    .footnote-definition {
        float: right;
        width: 55%;
        margin: 0 calc(-20px - 55%) 0 0;
    }
}

#footer {
    height: 350px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #000000;
}

#footer > img {
    width: 200px;
    margin: 0 130px;
}

#footer > p {
    width: 560px;
    margin: 0 130px;
}

@media (width <= 1105px) {
    .nav1, .nav2 {
        display: none !important;
    }

    phone-nav {
        height: 90px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #000000;
    }

    .header-logo {
        left: 25px;
    }

    .burger, #burger-checkmark {
        position: absolute;
        right: 25px;
    }

    #burger-checkmark:checked ~ burger-menu {
        max-height: 1000px;
        transition: max-height 0.2s ease;
    }
    #checked {
        display: none;
    }
    #burger-checkmark:checked ~ phone-nav #checked {
        display: block;
    }
    #burger-checkmark:checked ~ phone-nav #unchecked {
        display: none;
    }

    burger-menu summary, .burger-item {
        display: block;
        font-size: 25px;
        
        text-decoration: none;
        color: black;
        padding: 16.5px 25px;
        margin: 0;
    }
    burger-menu > details {
        border-bottom: 1px solid #000000;
        img {
            margin: auto 0 auto auto;
        }
        img.closed {
            display: block;
        }
        &:open img.closed {
            display: none;
        }
        img.open {
            display: none;
        }
        &:open img.open {
            display: block;
        }
    }
    burger-menu summary {
        list-style: none;
        display: flex;
    }
    burger-menu .underlined {
        text-decoration: underline 1px;
    }

    .arrow {
        display: none;
    }
    .phone-arrow {
        display: block;
        position: absolute;
        margin: -25px 0 0 0;
    }
    .info-text {
        width: 235px;
    }
    
    h1 {
        font-size: 40px;
    }
    article {
        padding: 35px 24px;
    }

    #footer {
        height: 200px;
    }

    #footer > img {
        display: none;
    }

    #footer > p {
        margin: 0 28px;
    }
}

