/*  VARIABLES */

:root {
    --bGround: #030305; /*#120912; */
    --bGroundTr: #0303500;
    --textColor: white;
}

@font-face {
    font-family: 'Lato';
    src: url('/fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('/fonts/Lato-Black.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/fonts/Merriweather-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* GENERAL */

body, html {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: white;
    color: var(--textColor);
    background-color: var(--bGround);
    text-align: left;
    margin-top: 0px !important;
    padding-top: 0px !important;
    width: 100%;

    /*height: auto !important; /* real browsers */
    height: 100%; /* IE6: treated as min-height*/
    top: 0px;

}

img {
    max-width: 100%;
}

h1 {

}

h2 {
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 5.5vw, 2rem);
    font-family: Merriweather;
    font-weight: 300;
}

h3 {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

p {
    line-height: 1.3em;
    font-size: 1.3em;
    text-align: justify;
}

/* LINKS */
a.mMenuLink:link, a.mMenuLink:visited {
    font-family: Merriweather;
    display: block;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    line-height: 2rem;
    padding-left: 20px;
    margin-bottom: 5px;
}

a.mMenuLink:hover, a.mMenuLink:active {

}

a.menuLink:link, a.menuLink:visited {
    color: white;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    text-decoration: none;
}

a.menuLink:hover, a.menuLink:active {
    color: #af6541;
}

a.grey:link, a.grey:visited {
    color: #949494;
    text-decoration: none;
}

a.grey:hover, a.grey:active {
    color: #af6541;
}

a.green:link, a.green:visited {
    color: #8ebb35;
    text-decoration: none;
}

a.green:hover, a.green:active {
    color: #c5ff46;
}

a.wikiLink {
    text-decoration: none;
    font-family: Merriweather;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    display: block;
    padding-left: 20px;
}

.wikiBody {
    max-width: calc(100% - 80px);
    margin-left: 40px;
    margin-bottom: 10px;
}

a.wikiLink:hover {
    color: #af6541;
}



.logoContainer {
    top: -140px;
    left: 0;
    width: 100%;
}

.logo {
    z-index: -1;
    position: absolute;
    top: 400px;
    width: 100%;
}

.gradientContainer {
    position: absolute;
    overflow: hidden;
    width:100%;
    height:100%;
    top:0;
}

.cGradientA, .cGradientB, .cGradientC {
    background-image: url("/img/pattern02.jpg");
    background-repeat: repeat;
    background-size: clamp(25%, 40vw, 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
}

.gradientContainer:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #03080e;
    background: linear-gradient(0deg, #030305 1%, #03030500 25%, #03030500 85%, #030305 98%);
    z-index: 2;
}

.imageFadeout {
    -webkit-box-shadow: inset 0px -95px 46px -54px var(--bGround);
    -moz-box-shadow: inset 0px -95px 46px -54px var(--bGround);
    box-shadow: inset 0px -95px 46px -54px var(--bGround);
}

.menuWrapper {
    position: relative;
    height: 64px;
    top: -100px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.menuContainer {
    background-color: #23242e;
    padding: 20px;
    margin-left: 4px;
    margin-right: 4px;
    font-family: Merriweather;
    font-weight: 300;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 896px;
    z-index: 10;
}

.recentContainer {
    background-color: #23242e;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.pop {
    transition: transform .2s; /* Animation */
}

.pop:hover {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.anchor {
    position: relative;
    top:-50px;
}

/* PARALLAX */

.headerContainer {
    pointer-events: none;
    position: absolute;
    top: 0;
}

.landscapetitle {
    left: 50%;
    z-index: 100;
    font-family: Merriweather;
    margin-top: 20px;
    background-color: #03030566;
    transform: translate(-50%, 0);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 80vh;
    position: relative !important;
}

.bgImage {
    min-height: 400px;
    max-height: 88vh;
    overflow:hidden;
    z-index:0
}

/* QUOTES */

.quote {
    background-color: #3136418f;
    padding: 10px;
    border-radius: 11px;
    height: 100%;
}

/* MAGNIFY */

.magnify {
    max-width: 100%;
    cursor: none;
}
.magnify a {
    cursor: crosshair;
}
.magnify img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    z-index: 1;
}

.zoom {
    width: 250px;
    height: 250px;
    background: #0a111c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0s linear 0.25s, background 0.25s ease;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 50%;
    overflow: hidden;
}
.zoom:before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
}
.zoom.show {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.25s ease, opacity 0s linear;
}
.zoom.loading {
    background: transparent;
}
.zoom.loading:before {
    display: block;
    -webkit-animation: loading 0.5s ease infinite alternate;
    animation: loading 0.5s ease infinite alternate;
}

.playerButton {
    width: 60px;
    height: 60px;
    padding-left: 10px;
    background-color: #23242e;
    color: white;
    border: 2px solid white;
}

/* WIKI */

.charImg {
    position: relative;
    top: calc(50% - 135px);
}

/* IMPRESSUM */

.imprHeaderA {
    font-size: 1.5rem;
    font-family: 'Merriweather';
    margin-bottom: 20px;
}

.imprHeaderB {
    font-family: 'Merriweather';
    font-size: 1.2rem;
    padding-left: 15px;
    margin-bottom: 10px;
}

.imprText {
    padding-left: 40px;
}

@-webkit-keyframes loading {
    0% {
        transform: scale(0.1);
        box-shadow: inset 0 0 0 150px wheat;
    }
    50% {
        transform: scale(1);
        box-shadow: inset 0 0 0 140px wheat;
    }
    100% {
        box-shadow: inset 0 0 0 0 wheat;
    }
}
@keyframes loading {
    0% {
        transform: scale(0.1);
        box-shadow: inset 0 0 0 150px wheat;
    }
    50% {
        transform: scale(1);
        box-shadow: inset 0 0 0 140px wheat;
    }
    100% {
        box-shadow: inset 0 0 0 0 wheat;
    }
}
.zoom.loading .zoom-image {
    opacity: 0;
}
.zoom .zoom-image {
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.25s ease;
}


/* BOOTSTRAP */

.container {
    max-width: 920px;
}

.nav-item {
    color: var(--textColor);
    font-size: 1.3rem;
}

.offcanvas-start {
    background-color: #121212aa;
    color: white;
}

/* MOBILE */

@media screen and (max-width: 767px) {
    .logoContainer {
        top: -30px;
    }

    .bgImage {
        min-height: 86vh;
        max-height: none;
    }

    .headerContainer {
        position: fixed;
    }

    .charImg {
        top: 0;
    }
}

@media screen and (max-width: 576px) {
    .wikiBody {
        max-width: 100%;
        margin-left: 0;
    }
}