:root {
    --lobo-blue: #15007D; /* Note: taken from --primary-color on susd5.org */
    --stashy-orange: #c96800;
    --stashy-orange-light: #ffd7ac;
    --gray-light: rgba(74 74 74 / 1.0);
    --gray-background: rgba(37 37 37 / 1.0);

    --background-color: #FFFFFF;
    --button-color: #f8f9fa;
    --header-button-color: #FFFFFF40;

    --page-padding-horizontal: 15%; /*  */
}
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--gray-background);
    font-family: sans-serif;
    color: rgba(255,255,255,0.8);
}

/* -- Header -- */
.header {
    position: sticky;
    box-sizing: border-box;

    display: flex;
    /* justify-content: space-around; */
    justify-content: space-between;
    padding-left: var(--page-padding-horizontal);
    padding-right: var(--page-padding-horizontal);
    align-items: center;

    width: 100%;
    min-height: 70px;
    background-color: var(--gray-light);
    border-bottom: 4px solid var(--stashy-orange);
}
.header-logo img {
    height: 2.25rem;
}
.header-links {
    display: inline-flex;
    justify-content: space-between;
    gap: .75rem
}
.header-links a {
    color: rgb(213, 213, 213);
    text-decoration: none;
}
.header-links a:hover {
    color: white;
    text-decoration: none;
}

/* -- Footer -- */
.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: var(--page-padding-horizontal);
    padding-right: var(--page-padding-horizontal);
    margin-top: 100px;
    margin-bottom: 2rem;
    border-top: 1px solid var(--stashy-orange);
}
.footer-column {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: .6rem;
}
.footer-column h3, .footer-logo {
    font-size: 1.5rem;
    margin-bottom: .25rem;
    margin-top: 2.25rem
}
.footer-logo {
    height: 3rem;
    width: auto;
}
.footer-column a {
    color: inherit;
    text-decoration: none;;
}

/* -- Buttons -- */
.button {
    box-sizing: border-box;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--stashy-orange);
    /* border: 1px solid var(--stashy-orange); */
    border-radius: 14px;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.1s ease, border-color 0.1s ease, color 0.1s ease;
}
.button-secondary { /* Note: Must be used in combination with .button (class="button accent-button") */
    background-color: transparent;
    border: 1px solid var(--stashy-orange-light);
}
.button-disabled, .button-disabled:hover { /* Note: Must be used in combination with .button (class="button button-disabled") */
    cursor: inherit !important;
    color: white !important;
    background-color: var(--gray-light) !important;
}

.button:hover {
    color: rgb(51, 51, 51);
    background-color: var(--stashy-orange-light);
    border-color: var(--stashy-orange-light);
    cursor: pointer;
}

.button-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* -- Page Thingies -- */
.top-gap {
    padding-top: 2rem;
}
.simple-page-content, .simple-page-content-skinny {
    padding-left: var(--page-padding-horizontal);
    padding-right: var(--page-padding-horizontal);
}
.simple-page-content-skinny { /* The skinny variant works way better for simple text pages */
    max-width: 150ch;
    justify-self: center;
}
.simple-page-content h1, .simple-page-content-skinny h1 {
    font-size: 3rem;
}

/* -- Misc. -- */
a {
    color: var(--stashy-orange-light);
    text-decoration: underline;
    transition: color 0.1s ease;
}
a:hover {
    color: var(--stashy-orange);
    text-decoration: none;
}

strong {
    color: var(--stashy-orange-light);
}

p {
    line-height: 1.5rem;
}

hr {
    width: 100%;
    border: none;
    height: 1px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: var(--stashy-orange);
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

video {
    border-radius: 11px;
    width: 1080px;
    max-width: calc(100% - (var(--page-padding-horizontal) * 2));
}
video::-webkit-media-controls-panel {
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5)) !important;
    background-color: transparent !important;
}

/* -- Mobile/Small screen support -- */
@media (max-width: 749px) {
    :root {
        --page-padding-horizontal: 5%;
    }

    .header {
        min-height: 65px;
        padding-left: 0;
        padding-right: 0;
        justify-content: space-around;
    }
    .header-logo img {
        height: 2rem;
    }

    .footer {
        flex-direction: column;
    }
}