/* Herefordshire Trail CSS */

/* Include padding and border in the total width of all elements */
* {
  box-sizing: border-box;
}

html {
  font-family: "Arial", sans-serif;
}

/* Heading */
header {
  background-image: url(../images/HeaderBanner.jpg);
  background-position: left;
  background-repeat: repeat-x;
  height: 172px;
}

#trailLogo {
  height: 152px;
  width:  152px;
}

.headerImg {
  padding-top: 10px;
  padding-left: 10px;
  float: left;
}

.headerTxt {
  padding-left: 10px;
  width: 100%;
  height: 172px;
  display: table-cell;
  vertical-align: middle;
}

h1 {
  color: #f2f2f2;
  font-size: 40px;
}


/* Images scale down on small screens */
img {
  max-width: 100%;
  height: auto;
}

/* Div floating left */
.left {
  float: left;
}

/* Indented para */
.indent {
  margin-left: 20px;
}

/* Resize footer to match Ramblers image height */
#footerBanner {
  max-height: 95%;
  width: auto;
}

.footer {
  clear: left;
}

/* -- Map Pages -- */

/* Map sidebar */
.mapSidebar {
  float: left;
  max-width: 600px;
}

/* Sidebar Header */
.sbh {
  margin-bottom: 0;
}

/* Sidebar paragraph */
.sbp {
  margin-top: 0;
  padding-left: 40px;
}

/* Sidebar list */
.sbl {
  padding-left: 40px;
}

/* Section number */
.num {
  color: white;
  background-color: #C01B00;
  display: inline-block;
  width: 35px;
  text-align: center;
}

/* Map image */
.countyM {
  max-height: 850px;
  width: auto;
}



/* -- Navigation -- */
/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #C01B00;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  
  
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  h1 {
    font-size: 25px;
  }
}