/* Base Styles & Main Lander */
* {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

.navbar-brand {
  text-transform: uppercase;
}

.navbar-brand:focus,
.navbar-brand:hover {
  font-weight: 400 !important;
  color: #00acff !important;
}

.bold {
  font-weight: 700;
}

nav li {
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
}

nav a {
  color: #333333;
  text-decoration: none;
}

nav a:focus,
nav a:hover {
  color: #00acff !important;
  text-decoration: underline;
  font-weight: 500;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

main {
  height: 90vh;
}

#main-lander--left,
#main-lander--center,
#main-lander--right {
  height: 90vh;
  background-color: #333333;
  color: #00acff;
  padding-left: 0;
  padding-right: 0;
  text-align: right;

}

#main-lander--left h2,
#main-lander--center h2,
#main-lander--right h2 {
  width: 100%;
  margin-bottom: 50px;
  padding-right: 20px;
  font-size: 26pt;
  font-weight: 300;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.75);
}

#main-lander--left:focus,
#main-lander--center:focus,
#main-lander--right:focus,
#main-lander--left:hover,
#main-lander--center:hover,
#main-lander--right:hover {
  cursor: pointer;
}

#main-lander--left {
  background-image: url('../img/production-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#main-lander--center {
  background-image: url('../img/theatrical.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
}

#main-lander--right {
  background-image: url('../img/coaching-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer {
  padding-top: 10px;
  padding-bottom: 10px;
}

footer p {
  margin: 3px auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 10pt;
  font-weight: 300;
}

footer a {
  color: #333333;
  text-decoration: underline;
}

footer a:focus,
footer a:hover {
  color: #00acff !important;
  font-weight: 500;
}

/* Performance Styles */
#performance {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
}

#performance h1 {
  margin: 15px auto;
  font-size: 24pt;
  font-weight: 600;
}

#performance--left,
#performance--right {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Production Styles */
#production {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
}

#production h1 {
  margin: 15px auto;
  font-size: 24pt;
  font-weight: 600;
}

#production--left,
#production--mid,
#production--right {
  padding-top: 20px;
  padding-bottom: 20px;
}

#imdb-logo {
  margin: 15px auto;
  max-width: 300px !important;
}

/* Coaching Styles */
#coaching {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
}

#coaching h1 {
  margin: 15px auto;
  font-size: 24pt;
  font-weight: 600;
}

#coaching--mid {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Contact Styles */
#contact {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
}

#contact h1 {
  margin: 15px auto;
  font-size: 24pt;
  font-weight: 600;
}

#contact--mid {
  padding-top: 20px;
  padding-bottom: 20px;
}

#contact .img-fluid {
  max-width: 100px;
}

@media only screen and (max-width: 767px) {
  /* Base Styles & Main Lander */
  nav ul {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  nav li {
    margin: 10px auto;
  }

  main {
    height: auto;
  }

  #main-lander--left,
  #main-lander--center,
  #main-lander--right {
    height: 80vh;
    flex-wrap: wrap;
  }

  #main-lander--center {
    border-top: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
    border-left: 0;
    border-right: 0;
  }

  /* Performance Styles */
  #performance {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }

  #performance--left,
  #performance--right {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Production Styles */
  #production {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }

  #production--left,
  #production-mid,
  #production--right {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Coaching Styles */
  #coaching {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }

  #coaching--mid {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Contact Styles */
  #contact {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }

  #contact--mid {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}