/*
 * Globals
 */

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  text-shadow: none; /* Prevent inheritance from `body` */
  border: .05rem solid #fff;
}
.btn-secondary {
  color: rgba(0,0,0,0.8);
  background-color: #fff;
  transition: 0.5s;
  width: 100%;
}
.btn-secondary:hover {
  color: white;
  width: 50%;
  border: none;
}
.btn-secondary:focus {
  color: black;
}
/*
 * Base structure
 */

html,
body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  background-color: #333;
  background-image: url(bataan-img/bataan-plaza.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

body {
  display: flex;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}



.container {
  max-width: 700px;
}


/*
 * Header
 */
header {
 	margin-top: 2rem;
 	margin-bottom: 20rem;
 }
header .fa {
	color: white;
	margin-left: 5px;
}
#nav img {
	max-width: 50px;
}
.nav-brand {
  font-size: 3rem;
  font-weight: 1000;
  color: rgba(255,255,255,0.9);
  margin-top: 5px;
}

.nav .nav-link {
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
  font-size: 2rem;
}

.nav .nav-link:hover,
.nav .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav .active {
  color: white;
  border-bottom-color: #fff;
}

/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}
.cover h3 {
	font-size: 2.5rem;
}
.cover p {
	font-size: 1.5rem;
	font-weight: 400;
	text-indent: 2rem;
}
.cover .btn {
	font-size: 2rem;
}

@media (min-width: 754px) {
  .nav-brand {
    float: left;
  }
  .nav {
    float: right;
  }
}

@media (max-width: 574px) {
	header {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
}

footer {
  margin-top: 3rem;
}
#social-media-label {
  font-size: 1.5rem;
  opacity: 90%;
}
#social-media {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}
#social-media-email {
  font-style: italic;
  font-size: 1rem;
  opacity: 90%;
}