﻿/* 
	Override parts of bootstrap.css
	
	Default font-size is bigger: 16px base
	Don't use Helvetica fonts			
------------------------------------*/

html {
	font-size: 100%;
}
body {
	/* push down the content under the 50px tall fixed nav */
	padding-top: 48px;
	padding-bottom: 24px;

	/* Get rid of Helvetica Nueue, and make it a 16px default font size */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

.tooltip, .popover {
	/* use Arial as default font */
	font-family: Arial, Helvetica, sans-serif;
}

.dropdown-menu {
	/* make the text in the dropdown menu 16px */
	font-size: 16px;
}

.lead {
	/* make .lead style bigger */
	font-size: 18px;
}

@media (min-width: 992px) {
  /* keep the container the same width as the 768px breakpoint */
  .container {
    width: 750px; /*970px;*/
  }
}
@media (min-width: 1200px) {
	/* keep the container the same width as the 768px breakpoint */
  .container {
    width: 750px; /* 1170px; */
  }
}

/* links */

a {
  color: #ea8207;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #ea8207;
  text-decoration: underline;
}

/* 
	BJH specific styles		
	
------------------------------------*/

.bjh-jumbotron {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 7%; /* 7vw; We can use percentage because the bjh-jumbotron is 100% of browser width, % is better supported */
	padding-bottom: 7%; /* 7vw; */
	
	color: #333333;
}
.bjh-jumbotron small {
	color: inherit;
}


/* Add background images to a bjh-jumbotron */

.bjh-jumbotron--orange1 {
	background-color: #ea8207;
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--orange2 {
	background-color: #f69824;
	color: #FEFEFE; /* text is white */
}


.bjh-jumbotron--switchwall1 {
	background-image: url(../photos/Fun6_1920_IMGP7058.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--switchwall2 {
	background-image: url(../photos/Fun5_1920_IMGP7056.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--switchwall3 {
	background-image: url(../photos/Fun_1920_10km-great-wall-tower.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--switchwall4 {
	background-image: url(../photos/Fun_1920_IMG_6863.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--hightower1 {
	background-image: url(../photos/Challenge1_1920_IMG_1054.jpg);
	color: #FEFEFE; /* text is white */
}
.bjh-jumbotron--hightower2 {
	background-image: url(../photos/Challenge2_1920.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--hightower3 {
	background-image: url(../photos/Challenge3_1920.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--hightower4 {
	background-image: url(../photos/Challenge4_1920.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--forest1 {
	background-image: url(../photos/Fun2_1920_IMGP7022.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--forest2 {
	background-image: url(../photos/Fun3_IMGP7023.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--forest3 {
	background-image: url(../photos/Fun4_1920_IMGP7029.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--medals {
	background-image: url(../photos/Medals_1920_MG_0894.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--party1 {
	background-image: url(../photos/Party_1920_IMG_1197.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--party2 {
	background-image: url(../photos/Team_1920_MG_1067.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron--tower1 {
	background-image: url(../photos/Fun_1920_IMGP7043.jpg);
	color: #FEFEFE; /* text is white */
}
.bjh-jumbotron--tower2 {
	background-image: url(../photos/IMGP7044_1920.jpg);
	color: #FEFEFE; /* text is white */
}
.bjh-jumbotron--tower3 {
	background-image: url(../photos/Tower3_MG_6175_1920x900.jpg);
	color: #FEFEFE; /* text is white */
}
.bjh-jumbotron--tower4 {
	background-image: url(../photos/Tower4_MG_6178_1920x900.jpg);
	color: #FEFEFE; /* text is white */
}

.bjh-jumbotron h1 {
	font-weight: bold;
}

.u-m-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.u-m-40 {
	margin-top: 40px;
	margin-bottom: 40px;
}


.u-m-t-48 {
	margin-top: 48px;
}

.u-m-l-150 {
	margin-left: 150px;
}
.w-150 {
	width: 150px;
}

.u-text-shadow {
	text-shadow: 0px 0px 3px rgba(40, 40, 40, 0.3);
}

.bg-orange1 {
	background-color: #ea8207;
	color: #FEFEFE;
}

.bg-orange2 {
	background-color: #f69824;
	color: #FEFEFE;
}

.bg-white {
	background-color: #FFF;
}

.sponsor-logos img {
	margin: 10px;
}

/* wrap up some Chinese text */
.zh {
	font-family: Arial, Helvetica, "Microsoft Yahei","微软雅黑", STXihei, "华文细黑", sans-serif;
}

/* footer stuff */

.bjh-footer-wrap {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
	
	-webkit-justify-content: center;
	justify-content: center;
	
	margin-bottom: 20px;
	max-width: 750px;
	margin-right: auto;
	margin-left: auto;
}
.bjh-footer-logo {
	width: 180px;
	margin-left: 20px;
	border-right: 1px solid #e7e7e7; 
	padding-right: 20px;
}
.bjh-footer-blurb {
	padding: 10px 20px 0 20px;
	line-height: 1;
	
} 	


/* Navbar stuff */
.navbar-default .navbar-brand {
	color: #ea8207;
}
.bjh-nav-signup {
	color: #ea8207;
}

.bjh-nav-signup:hover {
	border-bottom: 2px solid #ea8207;
}

.bjh-logo {
	margin-right: 10px;
	margin-top: 3px;
}
.in .bjh-logo, .collapsing .bjh-logo {
margin-left: 20px;
margin-top: 10px;
margin-bottom: 10px;
}



/* mock up active link based on body class instead of .active class */
.page-home  #nav-home-link {
	background: #e7e7e7;
}
.page-signup  #nav-signup-link {
	background: #e7e7e7;
}
.page-hikes  #nav-hikes-link {
	background: #e7e7e7;
}
.page-info  #nav-info-link {
	background: #e7e7e7;
}