/*!
Theme Name: BHX
Theme URI: http://underscores.me/
Author: Manuel Michaelis
Author URI: http://www.innsites.de
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bhx
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

BHX is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
@import url(css/wp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500&display=swap');
@import url(fonts/fontawesome/css/all.css);
/* ===========================================
	LAYOUT
=========================================== */
body {

	}
#page{
	display: flex;
	flex-direction: column;
	min-height:100vh;
	background: url(images/bg-page.jpg) top center repeat-y;
	background-attachment: fixed;
	background-size: 100%;
}
#colophon{
	display: flex;
}
#primary{
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	padding: 3vw 15vw 0 15vw;
	background: rgba(255,255,255,0.8);
}
/*.site-branding{
	display: flex;
	flex-direction: column;
	width: 1080px;
	margin: 0 auto;
	height:430px;
}
#masthead{
	position: sticky;
    top: -400px;
	height: 450px;
}
.main-navigation {
	background: #1e191c;	
}*/
#colophon{
	color: white;
	background: #1e191c;
}
/* ===========================================
	HEADER
=========================================== */
.custom-logo{
	width:100vw;
	height: auto;
	margin-bottom: -1vw;
}
.main-navigation {
	background: #1e191c;
	
}

.site-title, .site-title a, .site-description {
  	display: none;
}
/* ============================================
    FUSSZEILE
================================================ */
#colophon {
	flex: 0 1 auto;
	padding: 0;
	background-color: #1e191c;
  }
.site-info{
    display: flex;
	width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5vw;
	background: rgba(200,200,200,0.3);
}
.left, .right{
    display: flex;
    width: 37.5%;
    align-items: center;
    justify-content: center;
}
.center {
	display: flex;
    width: 25%;
    align-items: center;
    justify-content: center;
}
.bottomline a{
    margin:0.5rem  auto;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 1vw;
    font-weight: 300;
    text-decoration: none;
}
.bottomline{
    display: flex;
	width: 100%;
    justify-content: around;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-weight: 300;
}
/* ===========================================
	SEITEN
=========================================== */
/* Home */
.bilderstreifen{
	display: flex;
	justify-content: space-between;
	background: #514d50;
}
.bilderstreifen img{
	width: 24.5%;
	border-right: 1px solid #514d50;
}
/* MEMBERS */
.member{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.single{
	display: flex;
	flex-direction: column;
	width: 45%;
	color: white;
	text-align: center;
	padding: 1rem;
	border-radius: 0.5rem;
	background: #514d50;
}
.single img{
	margin-bottom: 1rem;
}
.socmed {
	display: flex;
	width: 30%;
	justify-content: space-around;
	border-top: 1px solid white;
	margin: 0 auto;
	margin-top: 1rem;
}
.bu{
	margin-top: 5rem;
	text-align: center;
}
/* Upcoming SHOWS */
.logo{
    height: 5vw;
    width: 20vw;
    background-image:url(images/logo-small.png);
    background-position: center;
    background-size: contain;
	background-repeat: no-repeat;
}
.show{
    display: flex;
    justify-content: space-around;
	flex-wrap: wrap;
}
.plakat{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 25vw;
    height:40vw;
    color: white; 
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
	margin-bottom: 2vw;
}

.datum{
    font-size: 1.5vw;
    margin-top: auto;
}
.location{
    text-align: center;
    font-size: 3vw;
    padding: 0 2rem;
    margin-top: 3rem;
    background-color: rgba(81, 77, 80, 0.8);
}
/* ===========================================
	ACCORDION
=========================================== */
.accordion{
	margin: 0 5vw;
  }
  .accordion-title {
	box-shadow: 0 1px 3px #666666;
	cursor: pointer;
	width: 100%;
	background-color: rgba(238, 238, 238, 0.8);
	border: 0.2rem solid rgba(128, 24, 51, 1);
	color: rgba(128, 24, 51, 1);
	padding: 0.5rem;
  }
  .accordion-title::after {
	position: relative;
	float: right;
	content: "\f078";
	font-family: "FontAwesome";
	margin-right: 2rem;
  }
/* ===========================================
	LINKS
=========================================== */
a {
	color: white;
}

a:visited {
	color: whitesmoke;
}

a:hover,
a:focus,
a:active {
	color: silver;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}
/* ===========================================
	SEITEN
=========================================== */
/* ===== HOME ===== */
.home .entry-title{
	display : none;
}
/* ===========================================
	NAVIGATION
=========================================== */
.main-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 4rem;
	padding-top: 0.5vw;
}
.main-navigation ul{
	display: flex;
	justify-content: space-between;
	width: 100vw;
	font-size: 1vw;
	color: silver;
	list-style: none;
	padding: 0 15vw 0 15vw;
	margin: 0 auto;
} 
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
	margin: 0.5rem 2vw 0.5rem 0;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}
.menu-toggle{
	display: none;
}
/* **************************************************
	MOBILE Navigation
************************************************** */
body { 
	-webkit-animation: bugfix infinite 1s; 
  }
  @-webkit-keyframes bugfix { 
	from { padding: 0; } 
	to { padding: 0; } 
  }
  
  /* weiter */
  #mobilemenue{
	  position:relative;
	  display: none !important;
	  width: 100%;
	  height: auto;
	  margin: 0 auto;
	  z-index: 12000;
	  background-color: #1e191c;
  }
  #mobilemenue li{
	  /*margin-bottom: 1rem;*/
	  background:rgba(128,128,128,0.1);/*gray*/
  }
  #mobilemenue a{
	  display: block;
	  font-size: 90%;
	  color: black;
	  padding: 0.25rem;
  }
  #button {
	  display: none;
  }
  label { 
	cursor: pointer;
	user-select: none;
  }
  #mobilemenue label {
	  position: relative;
	  width: 100%;
	  height: 3rem;
	  margin-bottom: 1rem;
	  background-color: transparent;
	  width:100% !important;
	  text-align: left;
	  
  }
  #mobilemenue label:after {
	  position: relative;
	  content: "\2261";
	  font-size: 200%;
	  font-weight: 400;
	  color: white;
	  line-height: 180%;
	  left: 2vw;
	  }
  .oben{
	  position: absolute;
	  width: auto;
	  left: -500px;
	  top:3rem;
	  margin-top: 1rem;
	  transition: all .5s ease-in-out;
	  -webkit-transition: all .5s ease-in-out;
	  background: #f4f2f2;
  }
  input:checked ~ .oben {
	  left: 2vw;
  }
  .oben ul{
	  display: flex;
	  flex-direction: column;
	  list-style:none;
	  padding: 0;
	  margin:0;
  }
  .oben ul ul{
	  margin-left:0.5rem
  }
  .oben ul li a{
	  text-decoration: none;
  }
  .oben ul li a:hover{
	background:silver;
}
  .oben .parent {}
  .oben .sub-menu {
	  visibility: hidden;
	  height: 0rem;
	  transition: all .125s ease-in;
	  -webkit-transition: all .125s ease-in;
  }

@media screen and (max-width: 1080px){
	#primary{
		padding: 3vw 5vw 0 5vw;
	}
	.main-navigation ul{
		font-size: 1.5vw;
		padding: 0 5vw 0 5vw;
	}
	.bottomline a{
		font-size: 1.5vw;
	}

}
@media screen and (max-width: 1080px){
	.show{
		flex-direction: column;
		align-items: center;
	}
	.plakat{
		width: 50vw;
   		height:80vw;
	}
}
@media screen and (max-width: 600px){
	#site-navigation{
        display: none;
    }
    #mobilemenue{
        display: flex !important;
    }
	.bilderstreifen{
		flex-direction: column;
	}
	.bilderstreifen img{
		width: 100%;
		border-right: 0px solid #514d50;
	}
/* ============================================
    FUSSZEILE
================================================ */

.site-info{
	flex-direction: column;
}
.left, .right{
    width: 100%;
}
.center {
	display: flex;
    width: 25%;
    align-items: center;
    justify-content: center;
	order: 3;
}
.bottomline a{
    color: white;
    font-size: 3vw;
}

}
/*
@media screen and (min-width: 37.5em) {

	

	.main-navigation ul {
		display: flex;
	}
}


