
/*

    PSM
    
    Development: Leon Klaßen—www.leonklassen.com
    
    2020

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

b,strong {
    font-weight: bold;
}

i,em {
    font-style: italic;
}

/* fonts ——————————————————————————————————————————————————————————————————————————————————————————————— */


@font-face {
    font-family: "Brown";
    src: url('fonts/Brown-Regular.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Brown";
    src: url('fonts/Brown-Bold.otf');
    font-weight: bold;
    font-style: normal;
}


/* allgemein ——————————————————————————————————————————————————————————————————————————————————————————— */

body {
    margin: 0px;
    padding: 0px;
    font-size: 20px;
    line-height: 25px;
    font-family: "Brown", Helvetica Neue, Helvetica, Arial, sans-serif;
    background-color: white;
    color: black;
    cursor: default;
    -webkit-user-select: text; 
    -moz-user-select: text; 
    -ms-user-select: text; 
    user-select: text;
    font-weight: normal;
    min-height:100%;
    height: 100%;
    width: 100%;
    
    /*
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    min-height: 100%;*/
}

::selection {
    background: rgb(0,0,0);
    color:white;
}

::-moz-selection {
    background: rgb(0,0,0);
    color:white;
}

a {
    color: inherit;
    text-decoration: inherit;
    transition: color .4s;
    cursor: pointer;
   /* display: inline-block;
    position: relative;*/
  /*  box-shadow: inset 0px 1px 0px black;*/
    text-decoration: underline;
}

/*
a:before {
    display: inline-block;
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: black;
    bottom: 3px;
}*/

a:hover {
    color: rgba(0,0,0,0.5);
}

a.sublink {
    color: rgba(0,0,0,0.5);
}

a.sublink:hover {
    color: rgba(0,0,0,0.3);
}


strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/* landing page ————————————————————————————————————————————————————————————————————————————————————————— */

.landingpage {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.landingpage img {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    height: 33.33333333%;
}


/* header ————————————————————————————————————————————————————————————————————————————————————————————— */

.headerback {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

.headerback.visible {
    display: block;
}

header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: 9999;
    pointer-events: none;
}

header .logo {
    position: absolute;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    top: 50px;
    z-index: 99999;
    cursor: pointer;
    pointer-events: all;
    
    width: 75px;
    height: 75px;
        
  /*  transition: transform .4s;*/
}

/*
header .logo:hover {
    transform: scale(1.05);
}*/

header navigation {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 195px;
    padding-top: 180px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    padding-bottom: 25px;
    transform: translate3d(0px,-100%,0);
    transition: transform .7s, box-shadow .7s;
    background-color: white;
    font-weight: bold;
    overflow: hidden;
    box-shadow: inset 0px -1px 0px rgba(0,0,0,0);
    pointer-events: all;
}

header navigation ul {
    transform: translate3d(0px,220%,0);
    transition: transform .7s;
}

header navigation.visible {
    transform: translate3d(0px,0px,0);
    box-shadow: inset 0px -1px 0px rgba(0,0,0,0.1);
}

header navigation.visible ul {
    transform: translate3d(0px,0%,0);
}

header navigation li a {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    text-decoration: none;
}

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

    header .logo {
        top: 25px;
        width: 75px;
        height: 75px;
    }
    
    header navigation {
        padding-top: 125px;
    }

}

/* content ————————————————————————————————————————————————————————————————————————————————————————————— */
    
section.content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-width: 490px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    padding-top: 200px;
    padding-top: 185px;
    padding-bottom: 100px;
    text-align: center;
  /*  text-align: justify;*/
}

section.content p.center {
    text-align: center;
}

section.content p.has-small-font-size {
    text-align: justify;
    font-size: 14px;
    line-height: 20px;
}

section.content p:not(:last-child), section.content div:not(:last-child), section.content h4:not(:last-child) {
    padding-bottom: 25px;
}

section.content p.nopadding, section.content h4.nopadding {
    padding-bottom: 0px;
}

/*
section.content h2 {
    padding-bottom: 25px;
    font-weight: bold;
}

section.content h2:not(:first-child) {
    padding-top: 25px;
}

section.content h2.nopadding {
    padding-bottom: 0px;
}

section.h_nopadding h2 {
    padding-bottom: 0px;
}*/


section.content h3 {
    padding-bottom: 25px;
    font-weight: bold;
 /*   text-transform: uppercase;*/
    text-align: center;
}

section.content h3:not(:first-child) {
    padding-top: 25px;
}

section.content h3.nopadding {
    padding-bottom: 0px;
}

section.h_nopadding h3 {
    padding-bottom: 0px;
    padding-top: 0px !important;
}

section.content h3.nopaddingtop {
    padding-top: 0px;
}

section.content h5.paddingtop {
    padding-top: 25px;
}

/*
section.content h4 {
    padding-bottom: 25px;
}

section.content h4:not(:first-child) {
    padding-top: 25px;
}

section.content h4.nopadding {
    padding-bottom: 0px;
}

section.content h4.nopaddingtop {
    padding-top: 0px;
}*/

/*
section.content h5:not(:first-child) {
    padding-top: 25px;
}*/

/*
section.content h5.nopadding {
    padding-bottom: 0px;
}

section.h_nopadding h5 {
    padding-bottom: 0px;
}*/

section.content img {
    position: relative;
    width: 100%;
    display: block;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    height: auto;
}

section.content .wp-block-file__button {
    display: none;
}

/*
section.content img:not(:last-child) {
    padding-bottom: 25px;
}*/

section.content figure {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
}

section.content figcaption {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: auto;
    bottom: 0px;
    background-color: rgba(255,255,255,.8);
    font-size: 14px;
    line-height: 20px;
    
    font-size: 12px;
    line-height: 17px;
    
    padding: 10px;
    box-sizing: border-box;
    transform: translate3d(0px,100%,0);
    transition: transform .4s;
}

section.content .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

section.content .wp-block-embed__wrapper iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

@media (hover:hover) {
    
    section.content figure:hover figcaption {
        transform: translate3d(0px,0%,0);
    }

}

section.content figure figcaption.active {
    transform: translate3d(0px,0%,0);
}

section.content .social_f, section.content .social_ig {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    color: transparent;
    background-color: black;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    background-size: 70%;
    background-position: center center;
    background-repeat: no-repeat;
}

section.content .social_f {
    background-image: url('graphics/fb_white.svg');
    background-color: rgb(85,115,170);
}

section.content .social_ig {
    background-image: url('graphics/ig_white.svg');
    background-color: rgb(215,70,90);
}

section.content label {
    display: block;
    max-width: 450px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
}

section.content input {
    display: block;
    background-color: rgb(240,240,240);
    color: black;
    border: 0px none;
    padding: 0px;
    margin: 0px;
    font: inherit;
    width: 100%;
    max-width: 450px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 5px;
    padding-bottom: 2px;
    margin-top: 5px;
    text-align: center;
}

section.content input.button {
    background-color: rgb(60,60,60);
    color: white;
}

#mce-responses {
    display: none;    
}

.fullscreenpreview {
    position: fixed;
    background-color: white;
    z-index: 99999;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;   
}

.fullscreenpreview img {
    position: absolute;
    box-sizing: border-box;
    padding: 50px;
    padding-bottom: 120px;
    display: block;
}


.fullscreenpreview img.horizontal {
    width: 100%;
    left: 0px;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
}

.fullscreenpreview img.vertical {
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
}

.fullscreenpreview .caption {
    font-size: 14px;
    line-height: 20px;

    font-size: 12px;
    line-height: 17px;
    
    box-sizing: border-box;
    padding: 50px;
    position: absolute;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0px;
    bottom: 0px;
    text-align: center;
}

.fullscreenpreview .close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    transform: rotateZ( 45deg );
    cursor: pointer;
    transition: opacity .4s;
}

.fullscreenpreview .close:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    top: 9px;
    left: 0px;
    position: absolute;
}

.fullscreenpreview .close:after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: black;
    left: 9px;
    top: 0px;
    position: absolute;
}

.fullscreenpreview .close:hover {
    opacity: .5;
}


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

    section.content {
        padding-top: 130px;
    }

}


.exhibitions_by_artist h5 strong.inverted {
    background-color: black;
    color: white;
    padding: 5px;
    padding-bottom: 0px;
    padding-left: 4px;
    padding-right: 4px;
    margin-top: 25px;
    position: relative;
    display: inline-block;
}

.exhibitions_by_artist .tagline .inverted {
    background-color: black;
    color: white;
    padding: 5px;
    padding-bottom: 0px;
    padding-left: 4px;
    padding-right: 4px;
    display: inline-block;
    font-weight: bold;
}

.exhibitions_by_artist .container {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.exhibitions_by_artist .container.highlight {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.exhibitions_by_artist .container.highlight h5 {
    padding-top: 0px !important;
}

.exhibitions_by_artist figure.wp-block-image {
    margin-bottom: 0px;
    margin-top: 25px;
}

/* footer ————————————————————————————————————————————————————————————————————————————————————————————— */

footer {
    text-align: center;
    padding-bottom: 50px;
    position: relative;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
}

footer a {
    text-decoration: none;
}
