/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*Emd of css reset*/

/*Main Text*/
body{
	transition: 0.5s;
	margin:0 200px;
	border: 1px solid lightgray;
}

/*Pairing Logo and Text*/
.headerFix{
	display: flex;
	align-items: center;
	margin: 17px 50px;
}

/*Header "soulcatsband" Text*/
h1 {
	font-family:'Oswald','Gill Sans','Gill Sans MT',Calibri,'Trebuchet MS',sans-serif;
	font-size:2.5em;
	color:#000000;
}

/*Soul Cats Band Logo*/
.logo {
	max-width:3.375em;
	padding-right: 30px;
}

/*Navbar*/
nav {
	font-family:'Gill Sans','Gill Sans MT',Calibri,'Trebuchet MS',sans-serif;
	font-size:1.5em;
	margin-left:auto;
}
nav ul{
	padding-right:50px;	
}
nav li {
	display:inline-block;
	padding:0 6px;
}

/*Fix for the Links */
nav a {
	color:#363636;
	text-decoration:none
}
nav ul li a:hover {
	color:#000;
	cursor:pointer
}

/*Bolded & Clickable elements*/
.bold{
	font-weight: bold;
	color:#363249;
}
.bold:hover {
	color:#000;
	cursor:pointer
}

/*Both Display Basics*/
.mobile{
	display: none;
}
.desktop{
	background-color:#ffffff;
	display:flex;
	align-items:center;
}

/*Sticky Header and fixes*/
header{
	position: fixed;
	width: 100%;
	margin-left:-200px;
	top:0;
	z-index: 5;
	box-shadow: 0 5px 5px -2px #00000054;
}

/*Main Image and Text*/
.hero{
	background-color: #000;
	background-image: url(images/HeroImage.jpg);
	background-position-y: center;
	margin-top: 74px;
	background-size: 150%;
}
.hero2{
	background-color: #000;
	background-image: url(images/Bob\ Thronburgh2.jpg);
	background-position-x: right;
	margin-top: 74px;
	background-size: 100%;
}
.hero3{
	background-color: #000;
	background-image: url(images/Greg\ Gorman2.jpg);
	background-position-y: center;
	background-position-x: left ;
	margin-top: 74px;
	background-size: 150%;
}
.hero4{
	background-color: #000;
	background-image: url(images/Soul\ Cats.jpeg);
	background-position-y: center;
	background-position-x: left ;
	margin-top: 74px;
	background-size: 150%;
}
.heroText{
	color: white;
	text-align: center;
	font-size: 3em;
	padding:10svh 0;
	font-family: 'Kaushan Script';
}
.bigLettering{
	font-family: 'Mr Dafoe';
	font-size:3em;
}

/*Hero text for other pages*/
.heroText2{
	font-size: 2.5em;
	padding:5svh 0;

}
.bigLettering2{
	font-size:2em;
}

/*Fancy Slide In Transition*/
.hidden{
	opacity: 0;
	filter:blur(2px);
	transform: translateX(-25%);
	transition:all 2s;
}
.show{
	filter:blur(0px);
	transform: translateX(0);
	opacity: 1;
}

/*Font Awesome Icons For Boxes*/
.icon{
	font-size: 4em;
	min-width:67px;
	text-align: center;
	box-sizing: border-box;
}

/*Alternating Colors of Boxes*/
.white{
	background-color: white;
}
.gray{
	background-color: lightgray;
}

/*Front Page Box*/
.box{
	padding:50px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

/*Videos Box*/
.box2{
	padding:50px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

/*Flex break code*/
.break {
	flex-basis: 100%;
	height: 0;
}

/*Default Text*/
.txt{
	color:black;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.75em;
	line-height: 1.75em;
	padding:2px;
	justify-self: left;
	word-break: break-word;
}

/*Default bullets*/
.bullets{
	font-size: 1.5em;
	line-height: 1.5em;
	width: 100%;
}

/*Default Images*/
.images{
	width:100%
}

/*Buttons*/
.linkButton{
	background-color: #323232;
	border: 0px;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.75em;
	text-align: center;
	padding:10px;
	transition: 0.5s;
}
.linkButton a{
	color: white;
	text-decoration: none;
}
.linkButton:hover{
	background-color: rgb(84, 84, 84);
	transition: 0.5s;
	
}
.linkButton a:hover{
	cursor: pointer;
	background-color: rgb(84, 84, 84);
	color:#ffffff;
	transition: 0.5s;
}

.heading{
	color: black;
	text-align: center;
	font-size: 3em;
	font-family: 'Kaushan Script';
	padding:15px;
}

footer{
	width:100%;
	box-shadow: 0 -5px 5px -2px #00000054;
	background-color: white;
	text-align: center;
	font-size:1em;
	display:flex;
	align-items: center;
	justify-content: space-evenly;
}
footer a{
	color:black
}
footer i{
	font-size: 4em;
	padding:12px
}

/*Contact Form Necessary details*/
.required{
	color:red;
}
#address{
	display: none;
}
.buttonCustom{
	border: 0cm;
	border-radius: 25px;
	background-color: #1c1c1c;
	color: whitesmoke;
	padding:17px;
	font-size: 1.75em;
	line-height: 1.75em;
	margin:25px;
}
.fullSize{
	background-color: #ffffff;
	border: 1px solid #d3d3d3;
	padding:2px;
	height:2em;
	font-size: 1em;
	line-height: 1em;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}
.textArea{
	background-color: #ffffff;
	border: 1px solid #d3d3d3;
	padding:2px;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	resize: none;
	font-size: 1em;
	line-height: 1em;
	height:125px;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.padding{
	padding:12px 25px;
}

/*Details for Song List Page*/
.songs{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	text-align: center;
}

/*Tablet size */
@media screen and (max-width:1024px){
	body{
		margin:0 80px;
		font-size: 14px;
	}
	header{
		margin-left: -80px;
	}
	.desktop{
		display: block;
		text-align: center;
	}
	.hero2{
		margin-top: 86px;
	}
	.hero3{
		margin-top: 86px;
	}
	.hero4{
		margin-top: 86px;
	}
	.heroText3{
		font-size: 2.5em;
	}
	.hero{
		margin-top: 86px;
	}
	.headerFix{
		margin: auto;
		justify-content: center;
		padding: 10px;
	}
	nav ul{
		padding-right:0 ;
	}
	nav li{
		padding:5px;
	}
	
	.bigLettering{
		font-size: 3em;
	}
	.box{
		padding:25px;
	}
	footer i{
		font-size: 2.5em;
		padding:12px
	}
}

/*Small Tablet */
@media screen and (max-width:600px) {
	body{
		font-size: 12px;
		margin:0;
	}
	header{
		margin-left: 0;
	}
	.txt{
		font-size: 2em;
	}
	
	.bigLettering{
		font-size: 2.8em;
	}
	.icon{
		font-size: 3em;
	}
	.hero2{
		margin-top: 78px;
	}
	.hero3{
		margin-top: 78px;
	}
	.hero4{
		margin-top: 78px;
	}
	.hero{
		margin-top: 78px;
	}
	footer{
		flex-direction: column;
	}
	.padding{
		padding:10px 20px;
	}
}

/*Cell Screen*/
@media screen and (max-width:411px){
	body{
		font-size: 16px;
	}
	.desktop{
		display:none;
	}
	.mobile{
		display: block;
	}
	.hamburger{
		color:black;
		font-size: 1.875em;
	}
	#icon{
		width:50px;
	}
	.header {
		background-color: #ffffff;
		display: flex ;
		justify-content: space-around;
		padding:10px;
		align-items: center;
		font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
		font-weight: bold;
		position: sticky;
		top:0;
		z-index: 2;
	}
	.mainMenu {
		height: 100%;
		position: fixed;
		width: 0;
		top: 0;
		left: 0;
		background-color: #ffffff;
		overflow-x: hidden;
		transition: 0.5s;
		font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
		z-index: 3;
	}
	.mainMenu a {
		padding: 8px 8px 16px 33px;
		text-decoration: none;
		font-size: 1.4em;
		color: #0a0c0f;
		display: block;
	}
	.hero{
		margin-top: 54.16px;
	}
	.hero2{
		margin-top: 54.16px;
	}
	.hero3{
		margin-top: 54.16px;
	}
	.hero4{
		margin-top: 54.16px;
	}
	.mainMenu .closebtn {
		top: 0px;
		font-size: 4.25em;
		font-weight: bold;
		padding: 6px 8px 16px 33px;
	}
	nav li{
		padding-right:0px;
		width:fit-content;
	}
	h1{
		font-size: 1.6em;
		transition: 0.5s;
	}
	nav ul{
		display: flex;
		justify-content: right;
		flex-direction: column;
		padding-right:0;
	}
	.txt{
		font-size: 1em;
		line-height: 1.1em;
	}
	
	.bigLettering{
		font-size: 1.8em;
	}
	footer i{
		font-size: 2em;
		padding:10px
	}
	.textArea{
		font-size: 1.1em;
		line-height: 1.1em;
	}
	.padding{
		padding:8px 10px;
	}
}

/*Teeny Screens */
@media screen and (max-width:360px){
	body{
		font-size: 14px;
	}
	footer i{
		font-size: 1.5em;
		padding:8px
	}
	.padding{
		padding:8px 5px;
	}
}