/* ----------- Color Variables --------- */
/* Looking for the color variables? They have been moved to the inline-styles file in the _includes folder, and pull variables from the site-settings folder in the _data folder.  */

/* ----------- CSS RESET --------- */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  
img { max-width: 100%; height: auto; }

/* Override default gridlex padding */ 
[class*=col] { padding: 0; }
[class*=grid] { margin: 0; }

section { position: relative; }

html { 
  scroll-behavior: smooth ;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

.red { color: red !important;}
/* ---------- Negative Space Utility Classes  ------------------ */ 

.capped-width-wide      { max-width: 1600px; margin: auto; }
.capped-width           { max-width: 1400px; margin: auto; }
.capped-width-narrow    { max-width: 1000px; margin: auto; }
.capped-width-v-narrow  { max-width: 800px;  margin: auto; }


.tall-100 { min-height: 100vh; }
.tall-90  { min-height: 90vh; }
.tall-80  { min-height: 80vh; }
.tall-70  { min-height: 70vh; }
.tall-60  { min-height: 60vh; }
.tall-50  { min-height: 50vh; }
.tall-40  { min-height: 40vh; }
.tall-30  { min-height: 30vh; }
.tall-20  { min-height: 20vh; }

/* Padding Utility Classes */ 
.padded-sm { padding: 2.5%; }
.padded    { padding: 5%;   }
.padded-lg { padding: 10%;  }

.padded-05 { padding: 0.5rem; }
.padded-1  { padding: 1rem; }
.padded-2  { padding: 2rem; }

.padded-t  { padding-top: 5%; }
.padded-b  { padding-bottom: 5%; }
.padded-l  { padding-left: 5%; }
.padded-r  { padding-right: 5%; }

.padded-tb  { padding-top: 5%; padding-bottom: 5%; }
.padded-lr  { padding-left: 5%; padding-right: 5%; }

.padded-t-1 { padding-top: 1rem; }
.padded-b-1 { padding-bottom: 1rem; }
.padded-l-1 { padding-left: 1rem; }
.padded-r-1 { padding-right: 1rem; }

.padded-t-2 { padding-top: 2rem; }
.padded-b-2 { padding-bottom: 2rem; }
.padded-l-2 { padding-left: 2rem; }
.padded-r-2 { padding-right: 2rem; }

.padded-t-0 { padding-top: 0; }
.padded-b-0 { padding-bottom: 0; }
.padded-l-0 { padding-left: 0; }
.padded-r-0 { padding-right: 0; }

/* Margin Utility Classes */ 

.margin-t { margin-top: 5%; }
.margin-b { margin-bottom: 5%; }
.margin-l { margin-left: 5%; }
.margin-r { margin-right: 5%; }

.margin-t-05 { margin-top: 0.5rem; }
.margin-b-05 { margin-bottom: 0.5rem; }
.margin-l-05 { margin-left: 0.5rem; }
.margin-r-05 { margin-right: 0.5rem; }

.margin-t-1 { margin-top: 1rem; }
.margin-b-1 { margin-bottom: 1rem; }
.margin-l-1 { margin-left: 1rem; }
.margin-r-1 { margin-right: 1rem; }

.margin-t-2 { margin-top: 2rem; }
.margin-b-2 { margin-bottom: 2rem; }
.margin-l-2 { margin-left: 2rem; }
.margin-r-2 { margin-right: 2rem; }

.margin-t-0 { margin-top: 0; }
.margin-b-0 { margin-bottom: 0; }
.margin-l-0 { margin-left: 0; }
.margin-r-0 { margin-right: 0; }

.margin-tb { margin-top: 5%; margin-bottom: 5%; }
.margin-lr { margin-left: 5%; margin-right: 5%; }


.relative { position: relative;}
.block { position: block;}
.inline-block { position: inline-block;}

/* ------------ Backgrounds & Background Images  ----------------------- */

.bg-dark     { background-color: var(--dark);}
.bg-featured { background-color: var(--featured);}
.bg-medium   { background-color: var(--medium); }
.bg-light    { background-color: var(--light); }
.bg-v-light  { background-color: var(--v-light); }

.bg-image {
    background-color: var(--light); /* Set a fall-back color while images are loading */ 
    background-image: url('/images/echo-vom-mythen-banner-bild.JPG');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
}

.bg-header-index {
    background-image: url('/images/echo-vom-mythen-banner-bild.JPG');
}

.img-style-1 {
  border-radius: 2rem;
}

.bg-overlay::after {
  z-index: 1;
  content: ""; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

ul { list-style: inside;}

.bg-overlay > * {
  z-index: 2;
  position: relative;
}
/* Add a second class to change the color or style  */

.bg-overlay-gradient::after { 
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
} 

.bg-overlay-featured::after { 
  background-color: var(--featured);
  opacity: 0.5;
} 

/* Aspect Ratios with percentage unit are only effective if the element (the <div>) is inside a parent container or column, it can't be applied to the column itself. */

a.bg-image { display: block;}

.landscape     { padding-bottom: 66% ; }
.portrait-tall { padding-bottom: 175%; }
.portrait      { padding-bottom: 125%; }
.square        { padding-bottom: 100%; }


/* Background Position */
.bg-pos-t { background-position: top; }
.bg-pos-b { background-position: bottom; }
.bg-pos-l { background-position: left; }
.bg-pos-r { background-position: right; }


.veranstaltung-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  background-color: var(--medium);
  color: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.veranstaltung-card:nth-child(even) {
  background-color: var(--dark);
}

.veranstaltung-datum {
  position: relative;
  font-weight: bold;
  padding: 1rem 1.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.veranstaltung-datum::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background-color: white;
}

.veranstaltung-titel {
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
}

@media(max-width: 768px) {
  .veranstaltung-card {
    grid-template-columns: 1fr;
  }

  .veranstaltung-datum {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
}



/* ------------ Typography Styles ----------------------- */

.left    { text-align: left; }
.right   { text-align: right; }
.center  { text-align: center; }
.uppercase    { text-transform: uppercase; }

body {
  font-family: "Inconsolata", monospace;
  color: var(--dark-text);
}

h2, h3, h4, h5, h6 {
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-family: "Outfit", sans-serif;

}

h1 { 
  font-size: 3rem; 
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;

}

h2 { 
  font-size: 2.4rem; 
  letter-spacing: 1px;
  font-weight: 600;
}
h3 { font-size: 2.1rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p, li {
  line-height: 1.4; 
  margin-bottom: 1rem;
  font-family: "Inconsolata", monospace;
  font-weight: 600;
  font-size: 1.2rem;
}

h2:last-child, 
h3:last-child, 
h4:last-child, 
h5:last-child, 
h6:last-child, 
p:last-child {
	margin-bottom: 0;
}

/* Unique Typography Styles  */
.emphasis       { font-size: 1.2rem; }
.text-featured  { color: var(--featured-text);}
.text-light     { color: var(--light-text);}
.subtle         { opacity: 0.8;     }
.subtitle       { font-size: 0.8rem; }

.bigger  { font-size: 5rem;}

.tworem         { font-size: 2rem;}
.two5rem       { font-size: 2.5rem;}
.threerem       { font-size: 3rem;}
.fourrem        { font-size: 4rem; }
.fiverem       { font-size: 5rem;}

.text-white     { color: white; }

.no-deco { text-decoration: none; }



.button-absolute-index {
  position: absolute;
  bottom: -1rem;
  left: 10%;
  transform: rotate(-5deg);
  z-index: 2;
}

/* ------------ Buttons & Links ------------ */
a {
    color: inherit;
}

.blog-content img {
  min-width: 100%;
}

p a {
    text-decoration: none;
    border-bottom: 1px solid;
}

blockquote {
  margin-left: 2rem;
    border-left: 1px solid var(--dark);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

blockquote p {
  margin-left: 1rem;
}

.button { 
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    padding: 0.5rem 1rem;
    border: 1px solid;
    background-color: white;
    border: 2px solid var(--medium);
    color: var(--dark);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.2rem;
  border-radius: 10px;
}

.button:hover {
  background-color: var(--medium);
  color: white;
}

.button-2 { 
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    padding: 0.5rem 1rem;
    border: 1px solid;
    background-color: transparent;
    border: 2px solid white;
    color: white;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.2rem;
  border-radius: 10px;
}

.button-2:hover {
  background-color: white;
  color: var(--medium);
}




.subtle-button {
  text-decoration: none;
  border-bottom: 1px solid;
}




.probenplan-list {
  max-width: 1100px;
  margin: 0 auto;
}

.probenplan-info {
  margin-bottom: 2rem;
}

.probenplan-info p {
  font-size: 1.1rem;
  color: var(--dark);
}

.probenplan-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1.4fr;
  gap: 0;
  color: var(--dark);
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--dark);
  margin-bottom: 1rem;
}

.probenplan-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1.4fr;
  align-items: center;
  background-color: var(--medium);
  color: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.probenplan-card:nth-child(even) {
  background-color: var(--dark);
}

.probenplan-datum,
.probenplan-titel,
.probenplan-ort {
  padding: 1rem 1.5rem;
}

.probenplan-datum,
.probenplan-titel {
  position: relative;
}

.probenplan-datum::after,
.probenplan-titel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background-color: white;
}

@media(max-width: 768px) {
  .probenplan-header {
    display: none;
  }

  .probenplan-card {
    grid-template-columns: 1fr;
  }

  .probenplan-datum,
  .probenplan-titel,
  .probenplan-ort {
    padding: 0.5rem 1.5rem;
  }

  .probenplan-datum {
    padding-top: 1rem;
    font-weight: bold;
  }

  .probenplan-ort {
    padding-bottom: 1rem;
  }

  .probenplan-datum::after,
  .probenplan-titel::after {
    display: none;
  }
}

/* suggested additional styles 
- .button-inverted, .button-subtle, .button-lg  */


/* ------------ Header & Hamburger Menu -------------- */

header {
  padding: 2rem 5%;
}

nav a {
    padding: 0.25rem 0.75rem;
    display: inline-block;
    text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 500;

}



header nav a {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.header-logo img {
  position: absolute;
  top: -2rem;
  left: 0;
  max-width: 11rem;
  z-index: 2;
}



/* ------------ Footer Styles -------------- */

.footer-logo {
  width: 20rem;
}

.size-09 {
  font-size: 0.9rem;
}

footer a {
  text-decoration: none;
}

footer nav a {
  text-align: center;
  display: block;
  text-align: right;
  text-decoration: none;
  padding: 0 0 0 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;

}

.nav-small {
  margin-top: 1.5rem;
}

.nav-small a {
  font-size: 1.1rem;
}

.nav-impressum {
  margin-top: 1.5rem;
}

.nav-impressum a {
    font-family: "Inconsolata", monospace;
    font-size: 1rem;
  }



.fa-brands {
  text-align: center;
  font-size: 1.6rem;
}


.pajurama-logo {
  width: 6rem;
  border-bottom: none;
}


/* Dropdown styles */

.dropdown { 
  position: relative; 
  display: inline-block;
  border: 1px solid orange;
}

.dropdown-title {
  padding: 0.25rem 0.5rem;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: -1rem;
  padding: 0.5rem;
  display:none; 
  background-color: white;
  z-index: 2;
  text-align: left;
  min-width: 10rem;
  border: 1px solid mediumvioletred;
}

.dropdown:hover .dropdown-content{ 
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.2rem;
}

/* ------------ Burger Button / Mobile Menu Styles -------------- */

.burger-button {
  position:fixed;
  top: 0;
  right: 2rem;
  z-index: 56;
  padding: 8px;
  margin-top: 0.8rem;
  line-height: 1.7;
  cursor: pointer;
  
}

.burger-button-index {
  position:fixed;
  top: 2vh;
  right: 2vh;
  z-index: 9;
  padding: 8px;
  margin-top: 0.6rem;
  line-height: 1.7;
  cursor: pointer;
  
}
/*this is where you can chand the color of the buttons*/

.burger-button-index span{
  width: 35px;
  border: 1px solid white;
  background-color: white;
  display: block;
  transition: 0.5s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.burger-button-index.active span{
  border-color: var(--light);
  background-color:white;
}

.burger-button span{
  width: 35px;
  border: 1px solid white;
  background-color: white;
  display: block;
  transition: 0.5s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.burger-button.active span{
  border-color: var(--light);
  background-color:white;
}

.burger-top, .burger-bottom{
  position: absolute;
}

.burger-top{
  top: -02px;
}

.burger-bottom{
  bottom: -02px;
}
/* make sure this has the same top as the burger button has padding*/
.burger-button.active .burger-top{
  position: absolute;
  top: 8px;
  transform: rotateZ(45deg);
}

.burger-button.active .burger-middle{
/*   transform: rotateZ(270deg); */
  border-color: rgba(0,0,0,0);
  background-color:rgba(0,0,0,0);
}

/* make sure this has the same bottom as the burger button has padding*/

.burger-button.active .burger-bottom{
  position: absolute;
  bottom: 8px;
  transform: rotateZ(-45deg);
}

/* make sure this has the same top as the burger button has padding*/
.burger-button-index.active .burger-top{
  position: absolute;
  top: 8px;
  transform: rotateZ(45deg);
}

.burger-button-index.active .burger-middle{
/*   transform: rotateZ(270deg); */
  border-color: rgba(0,0,0,0);
  background-color:rgba(0,0,0,0);
}

/* make sure this has the same bottom as the burger button has padding*/

.burger-button-index.active .burger-bottom{
  position: absolute;
  bottom: 8px;
  transform: rotateZ(-45deg);
}
  
  
.menu-button:hover {
  font-style: italic;
}

.menu-button.active:hover {
  color: var(--dark-text)
}

.mobile-menu {
  background-color: var(--dark);
  padding: 0 5% 5% 5%;
  position: fixed; 
  z-index: 55;
  top: 0;
  right: -100%;
  left: 100vw;
  bottom: 0;
  color: white;
  text-align: left;
  transition: 0.5s;
  max-height: 100vh;
  overflow: scroll;
}

.mobile-menu.active {
  right: 0;
  left: 0;
}

.logo-mobile-menu {
  text-align: left;
  position: absolute;
  top: 2rem;
  max-width: 11rem;
  left: 2rem;
}

.mobile-menu a {
  display: block;
  padding: 0 0.5rem 0.5rem 0;
  font-size: 1.3rem;
  color: white;
} 

.mobile-nav {
  margin-top: 7rem;
  text-align: left;
  display: block
}


/* ------------ Contact Forms  ----------------------- */

/* ------------ Form Styles  ----------------------- */
select {
  line-height: 1.8rem;
  color: var(--dark-text);
  font-size: 1.2rem;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--medium);
  color: var(--dark-text);
  background-color: white;
}

option {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--medium);
  color: var(--dark-text);
  background-color: white;
}

label {
  line-height: 1.8rem;
  color: var(--dark-text);
  font-size: 1.2rem;
}

input, textarea {
  width: 100%;
  display: block;
  padding: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--medium);
  color: var(--dark-text);
  background-color: white;
}

           
input:focus,
textarea:focus {
  outline: none;
  border: 2px solid var(--light);
}


textarea {
  height: 20vh;
}

button {
    font-size: 1.2rem;
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--medium);
    text-align: center;
    background-color: transparent;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    padding: 0.5rem 1rem;
}

button:hover {
  border: 1px solid var(--light);
}

/* ------------ Blogging elements  ----------------------- */


.mobile-logo img {
  width: 8rem;
  padding-top: 5%;
  padding-bottom: 5%;
}

.nav-small-mobile a {
 font-weight: 400;
 font-size: 1rem;
}

.nav-small-mobile {
  margin-top: 2rem;
}


/* Miscelaneous elements  */

hr.short {
  border: 1px solid var(--dark-text);
  width: 2rem;
  margin: 1rem 0;
}

hr.short.center {
  margin:auto;
  margin: 1rem auto;
}


/* ------------ Page Name  ----------------------- */









/* ------------ Responsive Styles ----------------------- */

/* General CSS Responsive Styles (Apply everywhere unless overriden) */ 

.show-xs, 
.show-sm,
.show-md {
	display: none; 
}

.inline { 
  display: inline-block;
  vertical-align: top;
}

/* ------- MD Media Query (64em / 1024px) --------------- */ 
/* - Styles added here will apply at devices smaller than 576px, or zoomed in equivalent */ 

@media(max-width:64em) {

	.show-md { display: block; }
	.hide-md { display: none;  }


  .header-logo img {
      top: -1rem;
    }

}

/* ------- SM Media Query (48em / 768px) --------------- */ 
/* - Styles added here will apply at devices smaller than 768px, or zoomed in equivalent */ 


@media(max-width:48em) {

  .header-logo img {
  max-width: 9rem;

}

	.show-sm { display: block; }
	.hide-sm { display: none;  }

  .sm-text-center { text-align: center; }
  .sm-text-left   { text-align: left; }
  .sm-text-right  { text-align: right; }

  .sm-padded     { padding: 5%; }
  .sm-padded-1   { padding: 1rem; }
  .sm-padded-05  { padding: 0.5rem; }

  .sm-padded-t-0 { padding-top: 0; }
  .sm-padded-b-0 { padding-bottom: 0; }
  .sm-margin-t-0 { margin-top: 0; }
  .sm-margin-b-0 { margin-bottom: 0; }

  .sm-landscape     { padding-bottom: 66% ; }
  .sm-portrait-tall { padding-bottom: 175%; }
  .sm-portrait      { padding-bottom: 125%; }
  .sm-square        { padding-bottom: 100%; }




}

/* ------- XS Media Query (36em / 576px) --------------- */ 
/* - Styles added here will apply at devices smaller than 576px, or zoomed in equivalent */ 

@media(max-width:36em) {

		.show-xs { display: block; }
		.hide-xs { display: none;  }

    .subtle-heading-xs {
      font-weight: 300;
      font-family: 'Martel', serif; 
    }
.header-logo img {
  max-width: 7rem;

}

.button-absolute-index {
  position: absolute;
  bottom: -0.3rem;
  left: 10%;
  transform: rotate(-5deg);
  z-index: 2;
}

.xs-tall-40 {
  min-height: 35vh;
}


.button {
  font-size: 1rem;
}

h2 {
  font-size: 1.8rem;
}

h1 { font-size: 2rem;}

.veranstaltung-datum {
  font-size: 1.2rem;
}

.xs-padded-t-0 { padding-top: 0;}
.xs-padded-b-0 { padding-bottom: 0;}

.xs-margin-t-35 { margin-top: 3.5rem;}
.xs-margin-b-0 { margin-bottom: 0;}

.footer-logo {
  width: 7rem;
}

.xs-center { text-align: center;}

.links-wrapper h2 {
  font-size: 1.4rem;
}

}