
/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          MAIN.CSS                                                   ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                      Universal Selector                                             ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Clearfix                                                   ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Elements                                                   ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
html {
	background: #1a1a1a;
	background-image: url("../images/5dfab6ce855cc20c514e79f6.jfif");
	background-attachment: fixed;
}
body {
	font-family: 'Brush Script MT', cursive;
	font-size: 120%;
	width: 100%;
	margin: 0 auto;
	color: white;
	background-color: rgba(0, 0, 0, 0.8);
}
header {
	width: 100%;
	margin: 0;
	background-image: url("../images/5dfab6ce855cc20c514e79f6.jfif");
	border-bottom: 3px ridge #f0f0f5;
}
header h1 {
	font-size: 300%;
	font-variant: small-caps;
	padding: .5em 0 0;
	text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
}
header h1 a {
	color: white;
	text-decoration: none;
}
header img {
	float: left;
	margin: 1em 1em 1em 2em;
	max-width: 130px;
	width: 100%;
    border-radius: 100px;
}
section {
	float: left;
	width: 75%;
	margin: 1em 1em 2em 0;
}
article {
	width: 75%;
	margin: 0 auto 2em;
	padding: 2em 1em;
	background-color: navy;
	border-radius: 15px;
}
article h4 {
	margin: 0 .5em 10px;
	font-size: 125%;
}
h2 {
	text-align: center;
	font-size: 200%;
	font-variant: small-caps;
	margin: 15px 0;
}
	

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Classes                                                    ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
.twocol {
	font-size: 85%;
	column-count: 3;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Navigation Menu                                            ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
.nav_menu {
	border-bottom: 3px ridge #f0f0f5;
}
.nav_menu ul {
	display: flex;
	list-style-type: none;
	padding: 0; 
}
.nav_menu ul li {
	width: 25%;
	background-color: black;
	margin: 0;
	text-align: center; 
	transition: all .75s;
}
.nav_menu ul li a {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
	text-decoration: none;
	font-size: 120%;
	color: blue;
	font-weight: bold;
	font-variant: small-caps;
	transition: all .75s;
}
.nav_menu ul li a:hover {
	background-color: blue;
	color: black;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Sidebar Menu                                               ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
.bookmarks {
	float: left;
	width: 12%;
	margin: 10em 2em 0 3em;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}
.bookmarks ul {
	list-style: none;
	width: 95%;
	margin: 2em 0 0;
}
.bookmarks ul li {
	margin: 0 1em 3px 0;
	transition: all .5s;
}
.bookmarks ul li a {
	padding: .5em .5em;
	display: block;
	background-color: #404040;
	border: 1px solid #808080;
	color: white;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	margin-left: 0;
	transition: all .5s;
}
.bookmarks ul li a:hover {
	background-color: black;
	color: purple;
	border: 1px solid purple;
}
.bookmarks ul li:hover {
	margin: 0 0 3px 1em;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Scroll-to-top Button                                       ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
#myBtn {
	display: none; /* Hidden by default */
	width: 88%;
	z-index: 99; /* Make sure it does not overlap */
	border: 1px solid #808080;
	outline: none; /* Remove outline */
	background-color: #404040; /* Set a background color */
	color: white; /* Text color */
	font-weight: bold;
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: .5em .5em;
	margin: 0 1em 3px 0;
	text-align: left;
	transition: all .5s;
	font-family: 'Nova Square', cursive;
	font-size: 100%;
	border-radius: 5px;
}
#myBtn:hover {
	background-color: black;
	color: purple;
	margin: 0 0 3px 1em;
	border: 1px solid purple;
}
#cornerBtn {
	display: none; /* Hidden by default */
	position: fixed;
	left: 5px;
	bottom: 150px;
	z-index: 99; /* Make sure it does not overlap */
	border: 1px solid black;
	outline: none; /* Remove outline */
	font-weight: bold;
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: .5em .5em;
	margin: 0 1em 3px 0;
	font-family: 'Nova Square', cursive;
	font-size: 100%;
	border-radius: 5px;
	background-color: rgba(0,0,0,.6);
	color: white;
	transition: all .5s;
}
#cornerBtn:hover {
	background-color: rgba(0,0,0,1);
	color: blue;
	border: 1px solid blue;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Video Wrapper                                              ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
.videowrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin: 0 auto;
	border: 6px ridge #808080;
	box-shadow: 5px 5px 15px 10px #000050;
}
.videowrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.caption p {
	margin: 2em;
	line-height: 1.5;
	font-weight: bold;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Homepage                                                   ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
#homepage {
	float: left;
	max-width: 1280px;
	width: 80%;
	margin: 0 auto;
	line-height: 1.5;
}
#homepage div {
	background-color: rgba(0,0,0,.75);
	margin: 1em;
	padding-bottom: 2em;
	border: 1px solid navy;
	border-radius: 25px;
}
#homepage h3 {
	text-align: center;
	font-size: 200%;
	font-variant: small-caps;
	margin: 15px 0;
}
#homepage img {
	display: block;
	max-width: 1080px;
	width: 100%;
	margin: 20px auto;
	border: 5px ridge navy;
	border-radius: 25px;
	box-shadow: 10px 10px 25px black;
}
#homepage h4 {
	font-size: 150%;
	font-variant: small-caps;
	padding: 15px 1em;
	border-bottom: 1px solid navy;
	margin: 30px auto 15px;
}
#homepage p {
	margin-left: 1em;
}
#homepage ul {
	margin-left: 3em;
}
#homepage div p a {
	text-decoration: none;
	color: white;
}
#homepage div p a:hover {
	text-decoration: underline;
}
.bandInfoLabel {
	font-size: 80%;
	font-variant: small-caps;
	font-style: italic;
	color: blue;
	margin-right: 9px;
}
#bandSummary p {
	margin: 0 2em 2em;
}
#top20songs {
	column-count: 3;
}
#top20songs ol {
	font-size: 110%;
	text-align: center;
}
#top20songs li {
	font-size: 80%;
	text-align: left;
	margin-left: 2.5em;
}
/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Image Gallery                                              ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
#gallerypage {
	background-color: rgba(0, 0, 0, 0);
	
}
#gallery {
	width: 100%;
	margin: 0 auto;
}
/* Flexbox Layout for Image Gallery */
.row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
	flex: 25%;
	max-width: 25%;
	padding: 0 4px;
}

.column img {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
	border: 3px ridge silver;
	border-radius: 10px;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Discography Page                                           ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
#discography {
	margin: 0 auto;
	line-height: 1.5;
}
#discography h5 {
	clear: both;
	font-size: 250%;
	background-color: black;
	border: 1px solid navy;
	margin: 35px 0;
	padding: 10px 1em;
	color: white;
	border-radius: 50px;
	text-shadow: 1px 1px 2px blue, 0 0 25px blue, 0 0 5px blue;
}
#discography h6 {
	clear: both;
	font-size: 200%;
	background-color: navy;
	margin: 70px 0 15px;
	padding: 10px 1em;
	color: white;
	border-radius: 50px;
	text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
}
.pimgLeft img, .pimgRight img {
	max-width: 500px;
	border-radius: 10px;
	box-shadow: -10px -10px 20px #1a1a1a, 10px 10px 20px #1a1a1a;
	width: 100%;
}
.pimgLeft img {
	float: left;
	margin: 0 1em 1em 3em;
}
.pimgRight img {
	float: right;
	margin: 0 3em 1em 1em;
}
.ptxtRight h7, .ptxtLeft h7 {
	font-size: 110%;
	color: blue;
	display: block;
	border-bottom: 1px solid navy;
	margin: 1em .25em 1em;	
	padding: .5em;	
}
.ptxtRight p, .ptxtLeft p, .ptxtLeft ol, .ptxtRight ol {
	font-size: 90%;
	margin: 1em 2.5em 1em;
}
.ptxtLeft ol, .ptxtRight ol {
	margin-left: 5em;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Footer                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
footer {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 3em 0;
	background-color: #404040;
	background-image: url("../images/5dfab6ce855cc20c514e79f6.jfif");
	border-top: 3px ridge #f0f0f5;
}
footer p {
	font-size: 90%;
	font-weight: bold;
	text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
	font-variant: small-caps;
	text-align: center;
}

/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          Hide SlickNav in                                           ******
******                                          full-screen view                                           ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
****************************************************************************************************************/
.slicknav_menu {
	display: none;
}








/****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
******                                          MEDIA QUERIES                                              ******
******                                                                                                     ******
******                                                                                                     ******
******                                                                                                     ******
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
*****************************************************************************************************************
******                                          Up to 1215px                                               ******
*****************************************************************************************************************
****************************************************************************************************************/
@media only screen and (max-width: 1215px) {
	
	/* remove the sidebar from the homepage and make the rest of the page full width */
	.bookmarks {
		display: none;
	}
	#homepage, #discography {
		float: none;
		width: 99%;
		margin: 0 auto;
	}

}

/****************************************************************************************************************
*****************************************************************************************************************
******                                          Up to 850px                                                ******
*****************************************************************************************************************
****************************************************************************************************************/
@media only screen and (max-width: 850px) {
	
	/* image gallery - drop down from 4 columns to 3 columns */
	.column {
		flex: 33.3%;
		max-width: 33.3%;
	}
	.pimgLeft img, .pimgRight img {
		float: none;
		display: block;
		margin: 0 auto;
	}
	
}

/****************************************************************************************************************
*****************************************************************************************************************
******                                          Up to 767px                                                ******
*****************************************************************************************************************
****************************************************************************************************************/
@media only screen and (max-width: 767px) {
	
	/*  Hide the navigation menu and display the slicknav compact menu  */
	.nav_menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
		background-color: black !important;
	}
	.slicknav_menu ul li a {
		color: blue !important;
		font-size: 120% !important;
	}
	
	/*  Increase body and main width and decrease font size  */
	body, main {
		width: 100%;
		font-size: 85%;
	}
	
	/*  Removed float from header image, display as block and auto margins to center in display  */
	header img {
		float: none;
		display: block;
		margin: 0 auto;
		padding: 1em 0;
		max-width: 60%;
	}
	h1 {
		font-size: 120%;
		text-align: center;
	}
	
	/*  Remove float from section and increase width to 100%  */
	section {
		float: none;
		width: 100%;
		margin: 1em 0 2em;
	}
	
	/*  Hide the bookmarks sidebar  */
	.bookmarks {
		display: none;
	}
	
	/*  Increase width of article and div to 100%, remove side margins and side padding and remove border radius  */
	article, div {
		width: 100%;
		margin: 0 0 2em;
		padding: 2em 0;
		border-radius: 0;
	}
	
	/*  Remove border and box shadow from videos and resize to 100% width  */
	.videowrapper {
		border: 0;
		box-shadow: none;
		width: 100%;
	}
	
	/*  reset the "twocol" class to one column  */
	.twocol {
		font-size: 80%;
		column-count: 1;
	}
	
	/*  Gallery page - reset to 2 columns  */
	.column {
		flex: 50%;
		max-width: 50%;
		padding: 0;
	}
	.row {
		padding: 0;
	}
	
	/*  homepage image, remove border, border radius and box shadow and side margins  */
	#homepage img {
		display: block;
		max-width: 1080px;
		width: 100%;
		margin: 5px auto;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	#homepage div {
		margin: 0 auto;
		padding-bottom: 2em;
		border: none;
		border-radius: 0;
	}
	
	.pimgLeft img, .pimgRight img {
		border-radius: 0;
		box-shadow: none;
	}
	.ptxtLeft, .ptxtRight {
		width: 100%;
		margin: 0;
	}
	.ptxtLeft p, .ptxtRight p {
		padding: 0 1em;		
	}
	#cornerBtn {
		left: 0px;
		bottom: 0px;
	}
	#discography h5 {
		font-size: 150%;
		margin: 15px 0;
		padding: 5px .5em;
		border-radius: 0;
		border-top: 1px solid navy;
		border-bottom: 1px solid navy;
		border-left: 0;
		border-right: 0; 
	}
	#discography h6 {
		font-size: 150%;
		margin: 15px 0;
		padding: 5px .5em;
		border-radius: 0;
	}
	#top20songs {
		column-count: 1;
		width: 90%;
		margin: 0 auto;
	}
	#top20songs ol {
		border-top: 1px solid navy;
		margin-bottom: 15px;
	}

}
/****************************************************************************************************************
*****************************************************************************************************************
******                                          Up to 600px                                                ******
*****************************************************************************************************************
****************************************************************************************************************/
@media (max-width: 600px) {
	.column {
		flex: 100%;
		max-width: 100%;
	}
	.column img {
		border: 0;
		border-radius: 0;
	}
}