/* Font - DM Serif Text and Newsreader */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');
body{
	font-family: "Newsreader", serif;
	margin: 0; auto;
}
.logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 20px;
}

/* Navigation*/
a:link{
	color: white;
}
a:visited{
	color: white;
}
a:hover{
	color: black;
}
a:active{
	color: black;
}
header{
	text-align: center;
 	background-color: #00195C;
 	color: #ffffff;
 	text-align: center;
 	padding: 20px;
 	background: #1a203d;
 	background: radial-gradient(circle,rgba(26, 32, 61, 1) 0%, rgba(150, 62, 139, 1) 100%);
}


h1{
  font-size: DM Serif Text;
  font-size: 3em;
  margin-left: 50px;
  margin-right: 50px;
  color: #963E8B;
  padding: 5px;
}

h2{
  font-family: "Newsreader";
  display: flex;
  margin-left: 50px;
  margin-right: 50px;
  padding: .25px;
  font-size: 2em;
  text-decoration: underline;
  font-weight: bold;
  color: #8A8088;
}

p{
  font-size:1em;
  font-family: "Newsreader";
  color: black;
  margin-left: 50px;
  margin-right: 50px;
}

nav{
	font-weight: bold;
 	background-color:#963E8B;;
 	text-align: center;
 	line-height: 200%;
 	
}
nav ul{
	list-style-type: none;
	margin: 0;
	padding: 5px;
}
nav li{
	display: inline;
	padding: 5px;
}
nav a:link{
	color:black;	
}
nav a:visited{
	color:black;
}
nav a:hover{
	color:white;
}
nav a:active{
	color:orange;
}

/* Main Section */
main{
	max-width: 1000px;
	margin: 20px auto;
	padding: 10px;
}
.float-right{
  float: right;
  max-width: 30%;
  height: auto;
  padding: 12px;
  margin: 1em;
}

/* Index Homepage Hero image */
.home-hero{
  background-image: url(images/guitars.jpg);
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-hero h1{
  text-align: center;
  color: #ff00fe;
  text-shadow: 2px 2px 2px black;
  margin: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 5);
}
/*Form*/
label {
  float: left;
  width: 5em;
  padding-right: 1em;
  padding-left: 4em;
}
input{
  margin-bottom: .3em;
  padding-left: 4em;
  display: block;
}
input[type="submit"]{
  display: block;
  background-color: hotpink;
  border-radius: 20em;
  width: 25%;
  padding-left: 4em;
  margin-left: 60px;
}
textarea{
  margin-bottom: .3em;
  padding-left: 4em;
  display: block;
  margin-left: 60px;
}
/* Hours Operation */
table{
  border-collapse: collapse;
  margin: 0 auto;
  border: 3px solid #000000;
}
tr:nth-child(even) {
  background-color: #eeeeee;
}
th{
  background-color: rgb(40, 87, 87);
  color: white;
  padding: 10px;
  border-button: 5px solid #00000;
}
td{
  border: 1px solid #ddddd;
  padding: 10px;
}
input{
  background-color: #eeeeee;
}

/* Grooves Embedded Videos */
.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* This is the FOOTER */
footer{
  background-color:#963E8B;
  max-width: auto;
  margin: 30px auto;
  padding: 10px;
  text-align: right;
}
footer a:link{
  color: white;
}
footer a:visited{
  color:lightblue;
}
footer a:hover{
  color:hotpink;
}
footer a:active{
  color: orange;
}


/* Media queries for mobile */
@media only screen and (max-width:768px){
    .hero-image{
        display:none;
    }
}

/*CSS without a media query--applies to all sizes unless overridden*/
h1{
		font-size: 4em;
 }

/* CSS Adjustments for Tablets */
@media only screen and (max-width: 1024px) {
	h1{
		font-size: 2em;
	}
}

/* CSS Adjustments for Smartphones */
@media only screen and (max-width: 768px) {
	h1{
		font-size: 1.5em;
	}
}

