﻿/* Variables */
:root {
    --screen-width: calc(100vw - var(--scrollbar-width));
}

/* General */
html {
    font-size: 18px; /* This affects all 'rem' sizes */
    /* Parallaxing */
    overflow: hidden;
}

body {
    font-family: "Futura-Light";
    text-align: center;
}

.scroll-panel {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.section {
    position: relative;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
    font-family: 'Futura-Medium-Bt';
}

.h1, h1 {
    text-transform: uppercase;
}

.inline-a {
    color: inherit;
    text-decoration: underline;
}

.inline-a:hover {
    color: inherit;
}

.filled {
    background-color: #ffffff;
}

/* Prevents flickering (which occurs when using a carousel) */
.header-bar,
.section {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a:focus,
button:focus {
    outline: none;
}

/* Soft separators */
.soft-separator-top {
    border-top: 1px solid #d0d0d0;
    height: calc(7px + 1px);
}

.soft-separator-bottom {
    border-bottom: 1px solid #d0d0d0;
    height: calc(7px + 1px);
}

/* Whitespace separator */
.whitespace-separator {
    position: relative;
    width: 100%;
    height: 54px;
}

.whitespace-separator .separator-logo {
    position: absolute;
    width: 118px;
    height: 118px;
    left: 50%;
    margin-left: -59px;
    top: 50%;
    margin-top: -59px;
    background-image: url('../img/Gamedia-Logo.png?version=9');
    background-size: 100% 100%;
    z-index: 1;
}

/* Basic button */
.basic-button {
    display: inline-block;
    box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.39);
    border-radius: calc(0.7 * 10px);
    padding: 0.9rem;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Futura-Medium-Bt';
    text-transform: uppercase;
}

.basic-button:hover {
    color: #000000;
    text-decoration: none;
}

@media screen and (min-width: 768px) {

    .basic-button {
        border-radius: 10px;
    }
}

/* Main statement section styling */
.statement-section,
.reactions-section {
    padding-top: 67px;
    padding-bottom: 97px;
}

.statement-section .row,
.reactions-section .row {
    position: relative;
}

.statement-section h3,
.reactions-section h3 {
    margin-top: 0px;
    text-transform: uppercase;
}

.statement-section p,
.reactions-section p {
    margin-bottom: 0px;
    text-align: justify;
    text-align-last: left;
    line-height: 1.2;
}

.statement-section .statement-date-text {
    color: #808080;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-align-last: right;
}

.statement-section .signature-logo {
    display:block;
    width: 67px;
}

.reactions-section {
    background-color: #d2d2e7;
}

.reactions-section .reaction-wrapper {
    margin-bottom: 0.75rem;
}

.reactions-section .reaction {
    position:relative;
    margin-bottom: 1rem;
}

.reactions-section .reaction .reaction-portrait {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
}

.reactions-section .reaction.reaction-1 .reaction-portrait {
    left: 0;
}

.reactions-section .reaction.reaction-2 .reaction-portrait {
    right: 0;
}

.reactions-section .reaction-text-panel {
    position: relative;
    padding: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 7px;
    background-color: #ffffff;
}

.reactions-section .reaction.reaction-1 .reaction-text-panel {
    margin-left: 65px;
}

.reactions-section .reaction.reaction-2 .reaction-text-panel {
    margin-right: 65px;
}

.reactions-section .reaction-quote-text {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.reactions-section .reaction-role-text {
    color: #808080;
    font-size: 0.75rem;
}

.reactions-section .reaction-link-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 0.75rem;
}