/* -------------------------- */
/* Orange Color #e67e22 */
/* -------------------------- */

/* -------------------------- */
/* Basic Setup */
/* -------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: rgb(236, 236, 236);
  color: #555;
  font: "Lato", "Arial", sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
}

/* -------------------------- */
/* button */
/* -------------------------- */

.btn:link,
.btn:visited,
input[type="submit"] {
  display: inline-block;
  margin-top: 20px;
  padding: 10px;
  font-weight: 30;
  text-decoration: none;
  border-radius: 200px;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
  background-color: #e67e22;
  border: 1px solid #e67e22;
  color: #fff;
}

.btn:active,
.btn:hover {
  background-color: #d36f18;
}

/* -------------------------- */
/* Reusable Components */
/* -------------------------- */

h1 {
  color: rgb(223, 223, 223);
  font-size: 180%;
  font-weight: 80;
  word-spacing: 5px;
}

h2 {
  text-align: center;
  font-weight: 100;
  margin-top: 50px;
}

h2::after {
  display: block;
  height: 2px;
  background-color: #e67e22;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}

h4 {
  text-align: center;
  font-weight: 100;
  margin-top: 30px;
  font-size: 200%;
}

h4::after {
  display: block;
  height: 2px;
  background-color: #e67e22;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-top: 10px;
}

h5 {
  color: rgb(158, 158, 158);
  font-weight: 100;
  text-align: center;
  font-size: 110%;
}

p {
  font-size: 150%;
  font-weight: 50;
  text-align: center;
  margin: 50px 20px 50px 20px;
  line-height: 180%;
}
/* ------Links--------------- */

a:link,
a:active {
  color: #e67e22;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid #e67e22;
  transition: border-bottom.2s, color 0.2s;
}

a:hover,
a:active {
  color: #555;
  border-bottom: 1px solid transparent;
}

/* -------------------------- */
/* Header */
/* -------------------------- */

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.527)),
    url(img/BandShot.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-attachment: fixed;
  border-bottom: 1.5px solid #e67e22;
}

.logo {
  width: auto;
  float: left;
  height: 80px;
  margin-top: 20px;
  margin-left: 20px;
  border-radius: 10px;
  opacity: 0.6;
  border: 2px solid #555;
  transition: transform 0.8s, opacity 0.8s;
}

.logo:hover {
  opacity: 1;
  transform: scale(1.5);
}

/* main nav */

.main-nav {
  float: right;
  list-style: none;
  font-size: 110%;
  margin-top: 50px;
  margin-right: 55px;
}

.main-nav li {
  display: inline-block;
  margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
  border-bottom: 2px solid #e67e22;
}

/* Mobile nav */

.mobile-nav-icon {
  float: right;
  margin-top: 15px;
  cursor: pointer;
  display: none;
  padding-right: 20px;
}

.mobile-nav-icon ion-icon {
  font-size: 200%;
  color: #fff;
}

/* sticky nav */

.logo-sticky {
  display: none;
  height: 50px;
  width: auto;
  float: left;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 20px;
  border-radius: 10px;
  border: 2px solid #555;
  opacity: 0.8;
  transition: transform 0.8s, opacity 0.8s;
}

.logo-sticky:hover {
  transform: scale(1.5);
  opacity: 1;
}

.sticky .logo {
  display: none;
}

.sticky .logo-sticky {
  display: block;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.966);
  box-shadow: 0 2px 2px rgb(224, 224, 224);
  z-index: 9999;
}

.sticky .main-nav {
  margin-top: 18px;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
  padding: 16px 0;
  color: #555;
}

/* Hero */

.hero-text-box {
  text-align: center;
  font-size: 150%;
  padding-top: 230px;
}

/* -------------------------- */
/* Members */
/* -------------------------- */

.members {
  background-color: rgb(236, 236, 236);
  z-index: 9999;
}

.box img {
  margin-top: 50px;
  margin-left: 25%;
  margin-bottom: 40px;
  width: 50%;
  height: auto;
  border-radius: 50%;
  border: 2px solid #e67e22;
  transition: transform 0.8s, opacity 0.8s;
  opacity: 0.98;
}

.box img:hover {
  opacity: 1;
  transform: scale(1.5);
}

.member-name {
  text-align: center;
  margin-bottom: 30px;
}

.members h3 {
  text-align: center;
  margin-bottom: 30px;
}

/* -------------------------- */
/* About */
/* -------------------------- */

.about {
  color: #fff;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(img/original.jpg);
  padding-bottom: 80px;
  border-top: 1.5px solid #e67e22;
  border-bottom: 1.5px solid #e67e22;
}

/* -------------------------- */
/* Shows */
/* -------------------------- */

.shows {
  background-color: rgb(236, 236, 236);
  padding-top: 20px;
  text-align: center;
}

.shows p {
  margin-top: 10px;
}

/* -------------------------- */
/* Music */
/* -------------------------- */

.section-music {
  color: #fff;
  background-color: #000;
  background-image: linear-gradient(rgba(66, 48, 48, 0.8), rgba(0, 0, 0, 0.8)),
    url(img/original.jpg);
  padding-bottom: 80px;
  border-top: 1.5px solid #e67e22;
  border-bottom: 1.5px solid #e67e22;
}

.player {
  margin-left: 25%;
  margin-top: 50px;
  padding-bottom: 50px;
}

/* -------------------------- */
/* Contact Form */
/* -------------------------- */

.section-form {
  background-color: #fff;
  padding-bottom: 30px;
}

.form-headline {
  margin-bottom: 30px;
}

.contact-form {
  width: 60%;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid rgb(170, 170, 170);
}

textarea {
  height: 100px;
}

/* -------------------------- */
/* icons */
/* -------------------------- */

.icons {
  text-align: center;
  color: #e67e22;
  font-size: 200%;
}

/* -------------------------- */
/* footer */
/* -------------------------- */

footer {
  background-color: #333;
  padding: 25px;
}

.footer-nav {
  margin-left: 30px;
  font-size: 80%;
  margin-bottom: 30px;
}

.social-links {
  list-style: none;
  margin-right: 10px;
  float: right;
  margin-top: -8px;
}

.social-links li,
.footer-nav li {
  display: inline-block;
  margin-right: 75px;
}

.social-links li:last-child {
  margin-right: 15px;
}

.copyrite {
  color: #fff;
  font-size: 70%;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
  text-decoration: none;
  border: 0;
  color: #888;
  transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
  color: rgb(230, 230, 230);
}

.social-links li a:link,
.social-links li a:visited {
  font-size: 160%;
}

.logo-facebook,
.logo-twitter,
.logo-google,
.logo-instagram {
  transition: color 0.2s;
  font-size: 88%;
}

.logo-facebook:hover,
.logo-facebook:active {
  color: #3b5998;
}

.logo-twitter:hover,
.logo-twitter:active {
  color: #55acee;
}

.logo-google:hover,
.logol-google:active {
  color: #dd4b39;
}

.logo-instagram:hover,
.logo-instagram:active {
  color: #e95950;
}
