/*	Author: Sascha Milivojevic (info@hey-sascha.de):
   
		------------------------------------------------------
   
		Schöne Felder v1 stylesheet
  
		----------------------------------------------------*/
		
/*	CSS Imports
  
		----------------------------------------------------
*/
@import url('fonts/fonts.css');

/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #000;
    color: #FFF;
    text-shadow: none;
}

::selection {
    color: #FFF;
    background: #000;
    text-shadow: none;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;}
    
div img, figure img {
  max-width: 100%;
  width: auto\9; /* ie8 */} 

 
/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  --font-family-body: 'Inter', sans serif; /* für Überschriften */
  --font-color: #000000;
  --weiss: #ffffff;
}

.bg-weiss { background-color: var( --weiss); }
/* ==========================================================================
   Flex Layout
   ========================================================================== */
.flex-row, .flex-column, .flex-row-reverse, .flex-column-reverse { display: flex; flex-wrap: wrap; }   
.flex-row { flex-direction: row; }
.flex-row-reverse  { flex-direction: row-reverse; }
.flex-column { flex-direction: column; }


/* 
 justify-content
 This defines the alignment along the main axis. -> horizontal zueinander
 justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right
*/
.j-center { justify-content: center; }
.j-start { justify-content: flex-start; }
.j-end { justify-content: flex-end; }
.j-between { justify-content: space-between; }
.j-evenly { justify-content: space-evenly; }
.j-around { justify-content: space-around; }

/*
This defines the default behavior for how flex items are laid out along the cross axis on the current line. -> zueinander in der gleichen Zeile/Spalte bei unterschiedlicher ContainerhÃƒÆ’Ã‚Â¶he
  align-items: stretch | flex-start | flex-end | center | baseline | first baseline | last baseline 
*/

.ai-stretch { align-items: stretch; }
.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.ai-baseline { align-items: baseline; }

/* 
 align-content
This aligns a flex container's lines within when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis.
  align-content: flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline 
*/
.ac-stretch { align-content: stretch; }
.ac-center { align-content: center; }
.ac-start { align-content: flex-start; }
.ac-end { align-content: flex-end; }
.ac-baseline { align-content: baseline; }
.ac-between { align-content: space-between; }
.ac-evenly { align-content: space-evenly; }
.ac-around { align-content: space-around; }
.text-wrap, .kalender { width: 100%; padding: 0 15px; }
.about-img { width: 100%; }
.about-img .item {}
.wrapper.abstand { padding: 80px 40px 0 40px;}
.w100 { width: 100%; padding: 0 15px;}
.w100.grid-4columns { padding-bottom: 40px; }
.w80 { width: 80%;}
.w50 { width: 50%; }


.w40 { width: 40%; }
.w30 { width: 30%;  }
.w20 { width: 20%;  }

figure { padding: 0; margin: 0 auto 20px auto; text-align: center;}
figcaption { padding-top: 5px; margin: 0; }
@media screen and (max-width: 1380px) {

}
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 820px) {
.w50 { width: 100%; }
}
@media screen and (max-width: 680px) {

}
.nopointer { pointer-events: none; }
/* ==========================================================================
    GRID LAYOUT
   ========================================================================== */
.grid-2columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 2;}    
.grid-3columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 2;}
.wrapper.grid-3columns, .wrapper.grid-2columns { margin-bottom: 10px;}
.grid-4columns { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;}
.grid-4columns-masonry { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: masonry; 
    grid-column-gap: 40px;
    grid-row-gap: 60px;}
.grid-6columns { 
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;} 
.grid-3columns .grid-item.wide { grid-column: 2 / 4;  }
.grid-3columns .grid-item.high img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;}

@media screen and (max-width: 780px) {
.grid-3columns {grid-template-columns: repeat(2, 1fr); }
.wann.grid-3columns {grid-template-columns: repeat(3, 1fr); }
} 
@media screen and (max-width: 680px) {
.grid-2columns {grid-template-columns: repeat(1, 1fr); }
}
@media screen and (max-width: 580px) {
.artists .grid-3columns {grid-template-columns: repeat(1, 1fr); }    
} 
/* ==========================================================================
   HTML BODY BASICS
   ========================================================================== */
html, body {
    margin: 0 !important;
    padding: 0 !important;}
/* 
@media screen and (max-width: 780px) {
html, body {
  position: relative;
  overflow-x:hidden;}
}

@supports (-webkit-overflow-scrolling: touch) {
html, body {
  position: relative;
  overflow-x:hidden;} 
}
*/  
body {
    overflow-x: hidden; 
    font-family: var(--font-family-body);
    font-weight: 400;
    color: var(--font-color); } 
strong 
i, em, q, blockquote, cite { font-family: var(--font-family-body); font-style: normal;}
/* ==========================================================================
   FONT COLORS
   ========================================================================== */
p, h1, h2, h3, h4, h5, h6 { color: var( --rot); }
a { color: var(--schwarz); cursor: pointer; text-decoration: none;}
h2 a:hover { color: var(--senf); }
/*
.cta-button { display: inline-block; padding: 10px 40px; text-align: center; font-weight: 400; border: 1px solid var(--schwarz); color: var(--rot);  font-family: var(--font-family-body);}
*/


/* ==========================================================================
   LINK BASICS
   ========================================================================== */    
p a, ul li a { color: var(--font-color); text-decoration: underline; position: relative;}
a {  }
ul { padding: 0; }
ul li { list-style-type: disc;}
nav ul li a{ color: var(--schwarz); text-decoration: none; }
a:hover, nav ul li a:hover, nav ul li.active a, footer ul li a { }
footer ul li a { text-decoration: none;}
/* ==========================================================================
   FONT SIZES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {  width: 100%; font-weight: 400;}  

p, li { font-weight: 300; font-size: 19px; line-height: 1.2em; color: var(--font-color); margin: 0 0 1.2em 0 }
nav ul > li { font-size: 19px; line-height: 1em; font-weight: 300;}
  
h1, h2, h3, h4, h5, h6 { margin: 0 0 19px 0; }

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

}
@media screen and (max-width: 1480px) { 

}
@media screen and (max-width: 1280px) {

}

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


}




/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav { 
    width: 100%;}
nav.top { padding: 40px 0 0 0; }
nav.left ul { padding: 0; margin: 0 0 20px 0; width: 100%; max-width: 800px; justify-content: space-between;}
nav ul.nav { width: 300px; }    
 

nav ul > li { 
    font-weight: 300;
    line-height: 1.2em;
    font-family: var(--font-family-body);
    list-style: none !important; 
    background-color: var(--weiss);
    cursor: pointer; } 

@media screen and (max-width: 600px) {
nav.left ul  { justify-content: center;}
nav.left ul li { padding: 10px 5px; }
nav.left ul li:last-child { padding-right: 0; }
}

nav ul > li.is-checked, .tablinks.active  { font-weight: 400;}



/* ==========================================================================
    HEADER
   ========================================================================== */
header { margin-top: 40px; padding: 0 10px;}
.logo { width: 250px;} 
@media screen and (max-width: 600px) { 
.logo { width: 235px;} 
}   
/* ==========================================================================
   SECTIONS
   ========================================================================== */
section  {  margin: 0 auto; padding: 0; width: 100%; }
.grid { width: 100%;}
.grid-item, .about-img .item  {  
/* padding: 1.5%; */
background-color: var(--weiss);
}
.grid-item.foto, .grid-item.motion, .about-img .item {
    width: 23%;
    margin: 1%;
    aspect-ratio: 1/1;
    overflow:hidden;
    } 
.grid-item.info {width: 100%;}
.grid-item.info nav.left { width: 100%;}
.grid-item.info .text-item { width: 50%;}
.grid-item img, .grid-item video, .about-img .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
@media screen and (max-width: 1680px) {
.grid-item, .about-img .item  { /*padding: 1.75%; */}
.grid-item.foto, .grid-item.motion, .about-img .item  {width: 31.33%;} 
}
@media screen and (max-width: 1100px) {
.grid-item, .about-img .item  { /* padding: 2%; */}
.grid-item.foto, .grid-item.motion, .about-img .item  {width: 48%;} 
.grid-item.info .text-item { width: 100%; }
}
@media screen and (max-width: 500px) {
.grid-item, .about-img .item  { /* padding: 5%; */}
.grid-item.foto, .grid-item.motion, .about-img .item  {width: 98%;} 
}

/* ==========================================================================
    Footer
   ========================================================================== */
footer { width: 100%; padding: 0px;}
footer .abgerundet a { white-space: nowrap;}



/* ==========================================================================
   Lightbox
   ========================================================================== */
.goverlay {
       background: rgba(255, 255, 255, 1) !important;
}
.glightbox-clean .gslide-description {
 background-color: transparent;}
.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
    fill: #000;
}
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: transparent !important;
}
.glightbox-clean .gslide-desc {
    font-family: var(--font-family-body);
    font-weight: 300;
}
.gprev, .gnext { display: none !important;}
/* ==========================================================================
   Position
   ========================================================================== */

.relative, .wrapper.relative { position: relative; }
.sticky { position: -webkit-sticky; position: sticky; top: 20px; }
.sticky2 { position: -webkit-sticky; position: sticky; top: 140px; }
.fixed { position: fixed; }
.absolute { position: absolute;}
img.alignleft { margin: 10px 30px 10px 0; }
img.alignright { margin: 10px 0 10px 30px; }
header.scrolled { visibility: hidden; top: -300px;}
nav.scrolled { visibility: visible; top: 0;}
@media screen and (max-width: 1780px) { 
.sticky2 { top: 130px; }
}
@media screen and (max-width: 1580px) { 
.sticky2 { top: 120px; }
}
@media screen and (max-width: 1380px) {
.sticky2 { top: 110px; }
}
@media screen and (max-width: 1180px) {
.sticky2 { top: 100px; }
}
@media screen and (max-width: 1023px) {
.sticky2 { top: 86px; }
}
section.imprint { border-bottom: 20px solid var(--rot);}
@media screen and (max-width: 1380px) { 
section.imprint { padding-left: 120px; }
}
@media screen and (max-width: 1023px) { 
section.imprint { padding-left: 20px; padding-top: 200px;}
}
