/*  
vizou.org landing page
*/
/*  - - - - - - - - - - - - - - - - - - - - - - - - - TYPOGRAPHY */

/* 
Prompt:200,200i,300,300i,400,500,600
Rokkitt:300,500,700
*/

h1,
h3 {
    font-family: Prompt !important;
    font-style: normal !important;
    font-weight: 200 !important;
}

h2 {
    font-family: Prompt !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

h4,
nav ul li a,
.links,
.footer,
.footer a {
    font-family: Prompt !important;
    font-style: normal !important;
    font-weight: 300 !important;
}

label,
button,
.button {
    font-family: Prompt !important;
    font-style: normal !important;
    font-weight: 500 !important;
}

h5,
h6 {
    font-family: Prompt !important;
    font-style: normal !important;
    font-weight: 600 !important;
}

em {
    font-family: Rokkitt !important;
    font-style: italic !important;
    font-weight: 300i !important;
}

strong {
    font-family: Rokkitt !important;
    font-style: normal !important;
    font-weight: 500 !important;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - VARIABLES */
:root {
    --overwhite: rgba(255, 255, 255, 0.5);
    --overblack: rgba(0, 0, 0, 0.4);
    --body: #f0eeec;
    --white: #fff;
    --black: #2f0909;
    --gray: #cbb5b5;
    --smoke: #8d7e7e;
    --whisper: #f0eeec;
    --whisperdark: #e6e3e0;
    --red: #e2564f;
    --magenta: #FF039F;
    --pink: #FFADAE;
    --puff: #fff2f2;
    --orange: #e97026;
    --rust: #b12c00;
    --brown: #860002;
    --yellow: #fff397;
    --border: 1px solid var(--gray);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - BASICS */
html {
    font-size: min(max(20px, calc(1.25rem + (22 - 20) * ((100vw - 320px) / (1280 - 320)))), 22px);
    min-height: 0vw;
    width: 100%;
    height: 100%;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font: normal 100% Rokkitt, Helvetica, Arial, sans-serif;
    font-weight: 200;
    line-height: 1.2em;
    color: var(--black);
    background: var(--body);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    display: grid;
}

a {
    text-decoration: none;
    outline: 0 none;
    -moz-outline: 0 none;
    color: var(--red);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
    color: var(--gray);
}

p {
    margin: 20px 0;
}

em {
    font-style: italic;
}

ul,
ol {
    list-style: disc;
    list-style-position: outside;
    margin: 0.5em 0 1em 1em;
    padding: 0 0 0 1em;
}

ul li,
ol li {
    padding: 3px 0;
}

ol {
    list-style: auto;
}

ol li {
    padding: 8px 0 0 1.5em;
    margin-bottom: 8px;
    border-top: var(--border);
}

img,
iframe {
    border: 0;
}

iframe {
    margin: 1em 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* - - - - - - - - - - - - - - - - - - - - BACKGROUNDS */

.bg {
    width: 100%;
    position: relative;
    z-index: 1;
}

video.bg-video {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

img.bg-image {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

a.playpause {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
}

a.playpause:hover {
    cursor: crosshair;
    color: var(--magenta);
}

a.playpause i {
    position: absolute;
    bottom: 1em;
    right: 1em;
}

/* - - - - - - - - - - - - - - - - - - - - STRUCTURE */

.content {
    grid-area: content;
}

.left {
    grid-area: left;
}

.right {
    grid-area: right;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.grid {
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 0;
    grid-template-areas: 'left right';
}

.grid .left img {
    display: block;
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: fixed;
}

.grid .right {
    padding: 25vh 2em 0 2em;
}

.right .links {
    padding: 3em 0;
    font-size: 0.7em;
    text-transform: uppercase;
}

.branding {
    position: absolute;
    height: 250px;
    width: 250px;
    left: 49%;
    margin-left: -49px;
    top: 20px;
    z-index: 3;
}

.branding img {
    width: 50%;
    height: auto;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - FOOTER */

footer {
    font-size: 0.9em;
    position: absolute;
    bottom: 10px;
}

p.copyright {
    font-size: 0.9em;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - HEADERS */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1em;
    color: var(--black);
}

h1 {
    color: var(--gray);
    font-size: 2.5em;
    line-height: 0.9em;
    margin: 0 0 20px 0;
    text-transform: lowercase;
}

h2 {
    font-size: 1.5em;
    letter-spacing: 1px;
    margin: 1em 0 0 0;
    text-transform: uppercase;
}

h2:first-of-type {
    margin-top: 0.5em;
}

h2 a,
h3 a {
    color: inherit;
}

.grid-horiz h4 {
    font-size: 1em;
    margin-bottom: 0;
}

h5 {
    font-size: 0.6em;
    text-transform: none;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - IMAGES, ALIGN */

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin: 10px 30px 10px 0;
}

.alignright {
    float: right;
    margin: 10px 0 10px 30px;
}

.alignnone {
    margin: 1em 0;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - BREAKPOINTS */

@media only screen and (max-width: 768px) {

    body {
        display: block;
    }

    .grid {
        display: block;
    }

    .grid .left img {
        position: relative;
        width: 100%;
    }

    .grid .right {
        padding: 1em 2em 2em 2em;
    }

    .branding {
        padding: 0;
    }

}