/*	Author: Sascha Milivojevic (info@hey-sascha.de):
   
		------------------------------------------------------
   
		Verena Bitter 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: 'Lucifer Sans';
  --weiss: #FFF;
  --schwarz: #000;
  --burgund: #5D2542;
  --rosa: #CD8A96;
}

.bg-weiss { background-color: var( --magenta); }
.bg-burgund { background-color: var( --burgund); }
.bg-rosa { background-color: var( --rosa); }
nav ul li, nav ul li a { 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; }
.wrapper { width: 100%; max-width: 1150px; padding: 0 20px;}
.wrapper2 { width: 100%; max-width: 1545px; padding: 0 20px;}
.wrapper3 { width: 100%; max-width: 2000px; padding: 0 20px;}
.textWrap { width: 100%; max-width: 980px; margin-bottom: 30px; }
.wrapper.abstand { padding: 80px 40px 0 40px;}
.w100 { width: 100%;}
.w100.grid-4columns { padding-bottom: 40px; }
.w80 { width: 80%;}
.w50 { width: calc(50% - 5px); }
.left, .right { width: 50%; padding: 5px;}
.left { padding-left: 5px;}
.w60 { width: calc(60% - 40px);   }
.w70 { width: calc(70% - 40px);   }
.w40 { width: calc(40% - 40px); }
.w30 { width: calc(30% - 40px);  }
.centerborder { width: 1px; background-color: var(--schwarz);}
.borderTop { width: 100%; border-top: 1px solid var(--schwarz); margin: 0 0 40px 0;}
figure { padding: 0; margin: 0 0 20px 0;}
figcaption { padding-top: 5px; margin: 0; }
@media screen and (max-width: 1380px) {

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

@media screen and (max-width: 820px) {
.w50 { width: 100%; }
}
@media screen and (max-width: 680px) {
.wrapper { width: calc(100% - 24px); padding: 0;}
.w50, .w60, .w40, .w30, .w80, .w70 { width: 100%; }
}

/* ==========================================================================
    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;
    background-color: var( --weiss);
    color: var(--burgund); } 
input {  font-family: var(--font-family-body);}
h1, h3, h4, h5, h6, strong { font-family: var(--font-family-body);}
i, em, q, blockquote, cite { font-family: var(--font-family-body);}
/* ==========================================================================
   FONT COLORS
   ========================================================================== */
p, h1, h2, h3, h4, h5, h6 { color: var( --burgund); }
a { color: var(--schwarz); cursor: pointer;}

/* ==========================================================================
   LINK BASICS
   ========================================================================== */    
p a, ul li a { color: var(--burgund); text-decoration: underline; position: relative;}
a {  }
ul { padding-inline-start: 23px;}
ul li { list-style-type: disc;}
nav ul li a{ color: var(--weiss); text-decoration: none}
a:hover, nav ul li a:hover, nav ul li.active a, footer ul li a { color:var(--rosa)}
footer ul li a { text-decoration: none;}
 header a { color: var(--rosa); text-decoration: none;}
/* ==========================================================================
   FONT SIZES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-body); font-weight: 400; } 
p { font-weight: 400;}  
h1 h3, h4, h5, h6, p { margin-top: 0;}
p, nav ul li, h2, footer ul li, li { font-size: 30px; line-height: 1.15em;}
h1 { font-size: 90px; line-height: 1.1em; }
h3{ font-size: 45px; line-height: 1.15em; color: var(--rosa); font-weight: 400;}
.bg-rosa h3 { color: var(--weiss); margin: 0;}
h2 { border-bottom: 4px solid var(--burgund); text-transform: uppercase; }
header h1, header h2, header a { color: var(--rosa); margin: 0;}
@media screen and (max-width: 1500px) { 
nav ul li, footer ul li { font-size: 25px; }
}


@media screen and (max-width: 1280px) { 
nav ul li, footer ul li { font-size: 20px; }
}

@media screen and (max-width: 1150px) { 
h1 { font-size: 60px;  }
header h2 { font-size: 25px;  }
}
@media screen and (max-width: 1024px) {
p, h2, li { font-size: 25px; }
h3 { font-size: 35px;}
}
@media screen and (max-width: 780px) {
p, h2, li { font-size: 22px; }
h3 { font-size: 30px;}
}
@media screen and (max-width: 480px) {
p, h2, li { font-size: 20px; }
h3 { font-size: 25px;}
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header { margin-bottom: 40px; z-index: 999; padding: 40px 0;}

.mobilebar { height: 0;}
.nav-placeholder { height: 160px; width: 100%; }
nav.main { padding: 20px 0 10px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 100; visibility: hidden;}
.logo { height: 66px; display: inline-block; }
.logo-wrapper .logo { height: 150px; display: inline-block; }
nav .logo { margin-right: 20px; }
nav ul li:first-child { padding-right: 60px;}
nav ul li:first-child a { color: var(--rosa) !important;}
nav ul, nav ul ul { 
    width: auto; 
    padding: 0 !important; 
    margin: 0 !important;
} 
nav .wrapper > ul { width: 100% !important; padding-top: 20px !important; }
@media screen and (min-width: 1024px) {
nav .wrapper > ul { width: 100% !important; padding: 20px 0 !important; }
}
@media screen and (max-width: 1023px) {
nav .wrapper > ul { width: 100% !important; padding: 20px 0 !important; }
}

nav ul > li { 
    font-family: var(--font-family-body);
    font-weight: 500;
    list-style: none !important;
    margin: 0;
    padding: 0 7px; } 

@media screen and (max-width: 1150px) {
.logo-wrapper .logo { height: 66px;  }	
header { padding: 10px 0;} 
header .logo-wrapper, header .headline-wrapper { width: 100%;}
header .logo-wrapper { padding-bottom: 30px;}
nav.main { 
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: transform .25s .1s ease-in-out;
}

nav.expanded {
    display: flex;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-top: 60px;
    padding: 60px 5px 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
 }
nav.expanded ul > li { 
    width: 100%;
    font-size: 36px !important;}
nav ul li:first-child { padding-right: 0px; padding-bottom: 60px;}
nav .wrapper3 { padding: 0;}
}
@media screen and (max-width: 780px) {
header { margin-bottom: 30px;} 
nav ul li:first-child { padding-right: 0px; padding-bottom: 40px;}
nav.expanded { padding: 54px 5px 0 10px; }
}
@media screen and (max-width: 520px) {
	nav .wortbildmarke img { margin-right: calc(100% - 95px); }
}
/* ==========================================================================
    HEADER
   ========================================================================== */

    
/* ==========================================================================
   SECTIONS
   ========================================================================== */
section  {  margin: 0 auto; padding: 10px 0;}
.news-box { padding: 20px; }
/* ==========================================================================
  Ellipse
   ========================================================================== */
.ellipse .wrapper { height: 400px;}
.elliptical-shape {
  width:calc( 100% - 662px);
  height: 300px;
  border: 4px solid var(--rosa); 
  border-radius: 59% 39% / 50% 50%; /* Unsymmetrische Radien */
  overflow: hidden;
}
.elliptical-shape2 { 
  width: 692px;
  height: 300px;
  border: 4px solid var(--rosa);
  border-radius: 50% 50% / 59% 41%; /* Unsymmetrische Radien */
    overflow: hidden;
}

.elliptical-shape2.flex-row, .elliptical-shape.flex-row { height: auto; overflow: visible;}

.pos1, .pos2 { position: absolute;}
.pos1 {
    top: 25px; 
    left: 20px;
    z-index: 1;}
.pos2 {
    top: 2px; 
    right: 20px;
z-index:1;}

.pos1.oberste, .pos2.oberste { z-index:5; }

.elliptical-shape2 h3, .elliptical-shape h3 {
    padding: 10px 50px;
    width: 85%;}

.elliptical-shape img, .elliptical-shape2 img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}
@media screen and (max-width: 1080px) { 
.elliptical-shape, .elliptical-shape2 {
  width: 94%;
}
.ellipse .wrapper { height: 600px;}
.pos1 {top: 0; left: 3%;}
.pos2 {top: 200px; left: 3%; right: auto; bottom: auto;}
}
@media screen and (max-width: 1024px) { 
.elliptical-shape, .elliptical-shape2 { height: 250px; }
.elliptical-shape2.flex-row, .elliptical-shape.flex-row { min-height: 250px; overflow: visible;}	
.ellipse .wrapper { height: 520px;}
.pos2 {top: 210px;}
}
@media screen and (max-width: 780px) { 
.elliptical-shape, .elliptical-shape2 { min-height: 200px; }
.elliptical-shape2.flex-row, .elliptical-shape.flex-row { min-height: 200px; overflow: visible;}	
.ellipse .wrapper { height: 430px;}
.pos2 {top: 180px;}
.elliptical-shape2 h3, .elliptical-shape h3 { padding: 0 10px 0 40px}
}


/* ==========================================================================
    Footer
   ========================================================================== */
footer { 
    position: relative; 
    width: 100%;
    padding: 20px 0;  }
footer ul { padding: 0;}
footer ul li { margin-right: 30px; }
  
/* ==========================================================================
   Animated Hamburger Icon Version 1
   ========================================================================== */


#hamburger-icon {
    z-index: 9999;
  position: fixed;
  top: 15px;
  right: 20px;
  width: 35px;
  height: 30px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  visibility: none;
  opacity: 0;
  pointer-events: none;}


@media screen and (max-width:1150px) { 
#hamburger-icon {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;}
}

 
#hamburger-icon span {  
  display: block;
  height: 5px;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;}

#hamburger-icon span {  
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;}
#hamburger-icon span { background-color: var(--weiss);}
#hamburger-icon.scrolled span { background-color: var(--burgund);}
#hamburger-icon.open span { background-color: var(--weiss);}
#hamburger-icon span:nth-child(1) { top: 2px; width: 35px;}
#hamburger-icon span:nth-child(2),#hamburger-icon span:nth-child(3) { top:12px; width: 35px;}
#hamburger-icon span:nth-child(4) { top: 22px; width: 35px;}
#hamburger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%; }
  
#hamburger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;  }  

      


/* ==========================================================================
   Position
   ========================================================================== */

.relative, .wrapper.relative { position: relative; }
.sticky { position: -webkit-sticky; position: sticky; top: 180px; }
.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;}
