@font-face {
    font-family: "Red Hat Display";
    font-weight: 300 900;
    src: url("../fonts/RedHatDisplay-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Red Rose";
    font-weight: 300 700;
    src: url("../fonts/RedRose-VariableFont_wght.ttf");
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

select {
    -webkit-appearance: none;
}

html {
    font-family: "Red Hat Display", Arial, sans-serif;
    font-size: 1.125rem;
    scroll-behavior: smooth;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #263375;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.btn-primary {
    background-color: #263375;
    color: white;

    &:hover, &:focus {
        background-color: #ccc;
        color: black;
    }
}

.btn-secondary {
    background-color: white;
    color: #263375;

    &:hover, &:focus {
        background-color: #ccc;
        color: black;
    }
}

.button-group {
    margin: 1.5rem 0;
}

.contact {
    .form-group {

        &:first-of-type {
            position: absolute;
            left: -9999px;
        }

        label {
            font-size: 0.75rem;
            font-weight: 600;
            display: block;
            margin-bottom: .5rem;
        }

        input, select, textarea {
            width: 100%;
            padding: 1rem 0.5rem;
            margin-bottom: 1.25rem;
            border: 1px solid #000;
            font-size: 0.75rem;

            &.invalid {
                border-color: red;
            }
        }

        textarea {
            font-family: "Red Hat Display", Arial, sans-serif;
        }

        select:has(option:checked[value=""]) {
            color: gray;
        }

        option {
            color: black;

            &:invalid,
            &[value=""] {
                color: gray;
            }
        }

        .validation-message {
            color: red;
            font-size: 0.75rem;
        }

        .order-notice {
            font-size: 0.75rem;
            color: gray;
        }
    }
}