body, a {
    background-color: #023540;
	font-family: 'Carrois Gothic', sans-serif;
	color: #B5B5B5;
}

#header  {
	background-image: url('./images/header.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 960px;
	height: 160px;
	margin: 0 auto 0 auto;
	background-color: rgb(3,7,10);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	cursor: pointer;
}

#menu {
	background-color: #28434E;
	width: 960px;
	display: grid;
	grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr 3fr;
	margin: 0 auto 0 auto;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding-top: 6px;
}

#menu a {
	background-color: #28434E;
	text-decoration: none;
	font-size: 1.4em;
	font-family: Arial;
	font-style: italic;
	font-weight: bold;
	color: rgb(250,235,230);
}

.menu-entry {
	margin-left: 20px;
	display: block;
}

#sm-container {
	text-align: right;
	margin-right: 10px;
	padding-top: 2px;
}

#menu .menu-entry-selected a {
	color: #B5B5B5;
}

#sm-container img {
	width: 25px;
	height: 25px;
	padding-right: 10px;
}

#content {
	width: 960px;
	margin: 40px auto 5px auto;
	border-radius: 5px;
	line-height: 1.6em;
}

#footer {
	width: 960px;
	margin: 40px auto 5px auto;
	text-align: center;
}

#footer-text ul {
	padding-inline-start: 0px;
}

#footer-text ul > li {
	 display: inline-block;
	 padding-bottom: 20px;
}

/********** NEWS ************/

.news-entry {
	padding: 2px;
	margin-bottom: 60px;
	text-align: justify;
}

.news-entry img {
	border-radius: 5px;
	margin-left: 20px;
}

.news-title {
	font-size: 1.2em;
	font-weight: bold;
	background-color: #28434E;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 5px 0 5px 10px;
	margin-bottom: 5px;
}

.news-entry-date {
	text-align: right;
	float: right;
	padding: 5px 10px 5px 10px;
	font-weight: normal; 
	font-size: 0.9em; 
	font-style: italic;
}

.news-content {
	padding-top: 10px;
}

/*********** DISCOGRAPHY **************/

#discography img {
	width: 100px;
	height: 100px;
}
.discography-entry {
	display: grid;
	grid-template-columns: 120px auto;
	margin: 10px 0px 80px 0px;
}

.discography-entry img {
	border-radius: 5px;
}

.release-title {
	font-weight: bold;
	font-size: 1.2em;
	font-weight: bold;
	background-color: #28434E;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 5px 0 5px 10px;
	margin-bottom: 5px;
}

.release-date {
	text-align: right;
	float: right;
	padding: 5px 10px 5px 10px;
	font-weight: normal; 
	font-size: 0.9em; 
	font-style: italic;
}

/********** SHOWS ************/

#shows {
	display: grid; 
	grid-template-columns: repeat(3, 1fr) auto;
	margin: 0 auto 0 auto;
}

.show-entry {
	padding: 5px;
}

.show-entry-start {
	padding: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.show-entry-end {
	padding: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

/********** SHOP ************/

.shop-entry {
	margin: 10px 2px 60px 2px;
}

.shop-entry img {
	max-height: 300px;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 10px;
}

.shop-entry-title {
	font-weight: bold;
	font-size: 1.2em;
	font-weight: bold;
	background-color: #28434E;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 5px 0 5px 10px;
	margin-bottom: 15px;
}

#shop-usage {
	text-align: center; 
	margin: 10px 0 30px 0; 
}

.shop-input-field {
	width: 400px;
}

table.basket {
    border: none;
    border-collapse: collapse;
}
        
table.basket td {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
	font-size: 1.2em;
}

table.basket th {
	border-left: 1px solid #000;
    border-right: 1px solid #000;
	border-top: 1px solid #000;
}
        
table.basket tr {
    border-bottom: 1px solid #000;
}

/********** BURGER MENU ************/

#menuToggle {
	width: 100%;
	height: 20px;
	display: none;
	margin-left: 10px;
}

label.hamburg { 
	display: block;
	width: 25px; 
	height: 20px; 
	cursor: pointer;
	padding-top: 1px;
}

input#hamburg {
	display:none;
}

.line { 
	height: 2px; 
	width: 25px; 
	background: #fff; 
	border-radius: 2px;
	display: block; 
	transform-origin: center; 
}

.line:nth-child(1) { margin-top: 1px; }
.line:nth-child(2) { margin-top: 6px; }
.line:nth-child(3) { margin-top: 6px; }

#hamburg:checked + .hamburg .line:nth-child(1){
   margin-top: 2px;
}

#hamburg:checked + .hamburg .line:nth-child(1){
   transform: translateY(6px) rotate(-45deg);
}

#hamburg:checked + .hamburg .line:nth-child(2){
   opacity:0;
}

#hamburg:checked + .hamburg .line:nth-child(3){
   transform: translateY(-10px) rotate(45deg);
}

@media screen and (max-width: 1100px) {
	
	#header, #menu, #content, #footer {
		width: 90%;
		height: auto;
	}
	
	#header img {
		width: 100%;
		height: auto;
	}
	
	#content {
		  line-height: 1.4em;
}
	
	.news-entry img,
	.shop-entry img	{
		max-width: 195px;
	}		
}

@media screen and (max-width: 800px) {
	
	#menu {
		padding-top: 10px;
	}
	
	#menu a {
		font-size: 1.2em;
	}
	
	#sm-container {
		padding-top: 0px;
		padding-bottom: 2px;
	}
	
	#sm-container img {
		width: 20px;
		height: 20px;
		padding-right: 5px;
	}
	
	#content,
	#shop-usage	{
		  font-size: 0.9em;
	}
	
	.news-entry img {
		max-width: 150px;
	}
}

@media screen and (max-width: 600px) {
	
	#header, #menu, #content, #footer {
		width: 100%;
		height: auto;
	}
	
	#menu {
		padding-top: 5px;
		padding-bottom: 2px;
		grid-template-columns: 50px auto;
		height: 24px;
	}
	
	#sm-container {
		padding-top: 2px;
		padding-bottom: 0;
		margin-right: 4px;
	}
	
	#sm-container img {
		width: 18px;
		height: 18px;
		padding-right: 5px;
	}
	
	.menu-entry {
		display: none;
		margin-left: 0;
	}
	
	#menu a {
		font-size: 0.9em;
	}
	
	#menuToggle {
		display: block;
	}
	
	.shop-input-field {
		width: 100%;
	}
	
	#footer-text {
		margin: 0 auto 0 auto;
		line-height: 1.6em;
	}
	
	#footer-text ul > li {
		display: block;
	}
}


