* {
    box-sizing: border-box;
}

@font-face {
  font-family: "BradfordMono";
  src: 	url("fonts/BradfordMonoLLWeb-Regular.woff2") format("woff2"),
  		url("fonts/BradfordMonoLLWeb-Regular.woff") format("woff");
}


html {
	/*scroll-behavior: smooth;*/  
	/*smooth scrolling without js, not in Safari*/
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

body {
	font-family: "BradfordMono", monospace;
	font-size: 23px; /*28px*/
	line-height: 1.3;
	margin: 0;
}
/*@media only screen and (max-width : 768px) {*/
@media only screen and (max-width : 900px) {
	body {
	font-size: 17.5px;
	}
}



img {
	display: block;
	width: 100%;
	height: auto;
	}
p {
	margin: 0;
	padding: 0;
	
}


#header-desktop {
	position: relative;
	width: 100%;
	/* height: calc(100vh - 93px); */
}
#header-mobile {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	/*height: 80px;*/
	padding: 16px;
	padding-top: 1em;
	line-height: 1.3;
	/*background-color: white;*/
	background-color: transparent;
	z-index: 3;
	overflow: hidden;
	transition: all 0.5s ease-out;
}
@media only screen and (max-width : 768px) {
	#header-desktop {
		display: none;
	}
	#header-mobile {
		display: block;
	}
}
.bg-white {
	background-color: white;
}

#header {
	width: calc(100% - 32px);
	cursor: pointer;
	z-index: 4;
}

span#name {
	position: absolute;
	top: 32px;
	left: 50px;
	z-index: 2;
}
span#title {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(0%, -50%);
	z-index: 2;
}
#title h2 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
	padding-bottom: 0.5rem;
}


#nav-desktop {
  	    position: sticky;
    position: -webkit-sticky;
    display: flex;
    justify-content: start;
    align-items: center;
    top: 0;
    left: 0;
    width: 50%;
    margin-top: -93px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 50px;
    /* padding-right: 32px; */
    background-color: white;
    z-index: 2;
}

#nav-mobile {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 0;
	height: 100vh;
	/*padding: 16px;*/
	background-color: white;
	z-index: 5;
	transition: 0.5s;
	
}
@media only screen and (max-width : 768px) {
	#nav-desktop {
		display: none;
	}
	#nav-mobile {
		display: block;
	}
}

#menu-icon {
	display: none;
	position: fixed;
	top: 1em;
	right: 16px;
	width: 1.5rem;
	height: auto;
	z-index: 4;
	cursor: pointer;
}
@media only screen and (max-width : 768px) {
	#menu-icon {
		display: block;
	}
}

#start-image-l{
	display: block;
}

#start-image-mobile {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	padding: 0;
	z-index: 1;
	transition: all 0.5s ease-out;
}
@media only screen and (max-width : 768px) {
	#start-image-l, #start-image-r {
		display: none;
	}
	#start-image-mobile {
		display: block;
	}

}
#image-header-mobile {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 0;
	z-index: -1;
	transition: all 0.5s ease-out;
}
#image-header-mobile img {
	height: 100vh;
}
.cover {
    width: 100%;
	height: 100%;
    object-fit: cover;
}

.blur {
	filter: blur(80px);
  	-webkit-filter: blur(80px);
}









a {
	text-decoration: none;
	color: black;
}
.underline {
	border-bottom: 2px solid black;
	display: inline-block;
  	line-height: 1.0;
}

a.nav-link {
	display: inline-block;
	width: calc( ( 50vw - (64px + 32px) ) / 4 );
	cursor: pointer;
	overflow: visible;
}


a.nav-link-mobile {
	display: block;
	cursor: pointer;
	padding-left: 16px;
  	line-height: 1.3;
}
a.nav-link-mobile:first-child {
	padding-top: 1em;
}

a#a-about {
	text-align: left;
}
a#a-concerts {
	text-align: center;
	padding-right: 32px;
}
a#a-music {
	text-align: center;
	padding-left: 32px;
}
a#a-store {
	text-align: right;
}


#socialmedia {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 93px;
	padding-top: 32px;
	padding-bottom: 32px;
	padding-left: 50px;
	background-color: white;
	z-index: 1;

}
@media only screen and (max-width : 768px) {
	#socialmedia {
		display: none;
	}
}

#socialmedia-mobile {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 16px;
}

a.a-socialmedia {
	display: inline-block;
	/*width: 24px;
	height: auto;*/
}


#socialmedia-startpage {
	display: flex;
	justify-content: right;
	position: absolute;
	top: 36px;
	right: 32px;
/*	width: 50%;
	height: 93px;*/
}
.a-socialmedia-startpage {
	padding-left: 1rem;
}
.img-socialmedia, .img-socialmedia-startpage {
	height: 1em;	
	width: auto;
}



main {
	position: relative; 
}


section {
	height: 100vh;
	z-index: 0;
}
@media only screen and (max-width : 768px) {
	section {
		min-height: 100vh;
		height: auto;
	}
}

.row {
  	display: grid;
	grid-template-columns: 1fr 1fr;
	/*if float clear layout -> overflow auto*/
}

#about, #concerts, #music {
	display: none;
}
@media only screen and (max-width : 768px) {
	.row {
		display: block;
    	/*grid-template-columns: 1fr;*/
  	}

	#about, #concerts {
		display: block;
        position: relative;
        z-index: 3;
	}
	#startpage {
		height: 100vh;
	}

}

.column-1, .column-2 {
	height: 100vh;
	/*z-index: 0;*/
	position: relative;
}
.column-1 {
	padding-top: 93px; /* nav height */
	padding-bottom: 93px;
	padding-left: 50px;
	padding-right: 32px;
	
}
section#startpage .column-1 {
	padding: 0;
}


.a-img {
	position: absolute;
    width: 100%;
    height: 100%;
}

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

	.column-1, .column-2 {
		width: 100vw;
		height: auto;
		padding-left: 16px;
		padding-right: 16px;
		padding-top: 1em;
		padding-bottom: 0;
	}
	.column-2 {
		display: none;
	}
	.a-img {
		position: relative;
	}
}


/* Clear floats after the columns */
/*.row:after {
  content: "";
  display: table;
  clear: both;
}*/


.scroll-container {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-container::-webkit-scrollbar {
    display: none;
}
@media only screen and (max-width : 768px) {
	.scroll-container {
		overflow-y: visible;
		padding-right: 24px;
	}
	
}

.thumbnails {
	/*position: relative;*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/*background-color: #74b6b2;*/
}
@media only screen and (max-width : 768px) {
	.thumbnails {
		background-color: transparent;
		height: auto;
	}
}
.thumbnail {
	position: relative;
	width: 100%;
	height: 100%;
}
@media only screen and (max-width : 768px) {
	.thumbnail {
		/*height: 66.66%;*/
	}
}

.thumbnail-caption {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 32px;
	background-color: transparent;
}
@media only screen and (max-width : 768px) {
	.thumbnail-caption {
		/*show when more than 1 gallery*/
		/*display: block;*/
		position: relative;
		padding: 0;
		padding-bottom: 1em;
	}
}

div#soundcloud-embed {
	height: 100%;
	padding-top: 93px; /*nav height*/
	padding-left: 50px;
	padding-right: 50px;
	background-color: #74b6b2; /*#a7b8b0;*/
}
@media only screen and (max-width : 768px) {
	div#soundcloud-embed {
	height: 100%;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	background-color: transparent;
}
}
iframe.soundcloud {
	padding-bottom: 1rem;
}



table, th, td {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0; 
  vertical-align: top;
}


.concert-entry {
	border-top: 2px solid black;
	border-left: 2px solid black;
	padding: 4px;
	/*margin-bottom: 1rem;*/
	margin-top: 3px;
}
.date {
	padding-right: 32px;
}

/* media queries

mobile 2 :
@media only screen and (min-width : 375px) (max-width: 767px) {}

ipad :
@media only screen and (min-width : 768px) and (max-width : 1024px) {}

- mobile-tablet :
@media only screen and (max-width : 768px) {}

desktop :
@media only screen and (min-width: 1025px) {}

desktop large :
@media only screen  and (min-width : 1824px) {}

*/