@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto&display=swap');

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;

  font-size: 48px !important;
}

html, body {
    height: 100%;
}
body {
    margin: 0;
    background-color: var(--background-color);
}

:root {
    --bar-margin: 10px;
    --bar-width: 150px;
    --bar-padding: 15px;
    --bar-height: 100%;
    --bar-overflow: hidden;

    --container-width: 900px;

    --background-color: #131311;
    --header-background-color: #000000;
    --link-color: #1575a6;
    --text-color: #ffffff;
    --text-highlight-color: #000000;

    --nav-link-color: #ffffff;

    --brand-color-highlight: #589CAC;
    --brand-color-secondary: #A84C4C;

    --hero-text-color: #ffffff;
    --hero-font-family: 'Abril Fatface', cursive;

    --line-height: 1.25;
}

.main {
    height: 100%;
    background-image: url(/images/hero.jpg);
    background-size: cover;
    background-position: center;
    font-family: 'Roboto', sans-serif;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80%;
}

img {
    max-width: 100%;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.header {
    padding: 10px 0;
    background-color: var(--background-color);
    margin-bottom: 25px;
}

.header > .header-items {
    display: flex;
    justify-content: center;
}

.header-item {
    padding: 10px 26px;
}

.header-item > a {
    text-decoration: none;
    color: var(--nav-link-color);
    text-transform: uppercase;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 1px 1px var(--text-highlight-color);
}

.mobile-header {
    display: none;
    color: var(--nav-link-color);
    background-color: var(--background-color);
    margin-bottom: 25px;
}

.mobile-header .header-items {
    padding-bottom:15px;
}

.header-toggle {
    padding: 15px;
    text-align: right;
}

.header-toggle > input {
    position: absolute;
    right: 30px;
    top: 30px;
    opacity: 0;
}

.header-toggle span {
    margin-right: 10px;
}

.header-toggle > .header-items {
    display: none;
}

#toggle:checked ~ .header-items {
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 30px;
    line-height: var(--line-height);
    width: 100%;
}

.hero-text {
    font-family: var(--hero-font-family);
    color: var(--hero-text-color);
    font-size: 6em;
    text-shadow: 3px 3px var(--brand-color-highlight);
    text-align: center;
}

.hero-email {
    font-family: var(--hero-font-family);
    color: var(--hero-text-color);
    font-size: 29px;
    text-align: center;
    text-shadow: 1px 1px black;
}

.content-panel {
    border-radius: 22px;
    background-color: var(--brand-color-highlight);
    color: var(--text-color);
    padding: 20px 30px;
}

.content-panel-highlight {
    font-size: 22px;
    line-height: 1.4em;
}

h1 {
    font-family: var(--hero-font-family);
    font-size: 38px;
    line-height: 1.4em;
    text-shadow: 1px 1px var(--text-highlight-color);
}

.review-layout {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.review-container {
    margin: 0 10px;
    width: 280px;
    margin-bottom: 150px;
}

.review-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-color: var(--brand-color-highlight);
}

.review-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color-secondary);
    width: 150px;
    height: 150px;
    border-radius: 150px;
    margin: -70px auto;
}

.review-attribution-text {
    width: 90%;
    text-align: center;
    color: var(--text-color);
    font-family: var(--hero-font-family);
    font-size: 18px;
}

.review-text {
    width: 85%;
    text-align: center;
    font-size: 20px;
    font-style: italic;
    color: var(--text-color);
}

@media only screen and (max-width: 800px) {
    body {
        overflow-x: hidden;
    }

    .main {
        background-position: 35%;
    }

    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .hero-text {
        font-size: 4em;
    }

    .header-item {
        padding: 10px 15px;
    }

    .header-item > a {
        font-size: 32px;
    }

    .content-panel {
        margin: 5px;
    }

    .review-layout {
        margin-top: 20px;
    }

    .review-container {
    }
}
