body
{
  background-color: #364049;
  font-family: "Times New Roman";
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

/* Nav bar logic */
.navBar
{
  overflow: hidden;
  background-color: black;
  border-bottom: 5px double #396297;
}

.navBar a
{
  float: left;
  color: white;
  text-align: center;
  padding: 45px 45px;
  text-decoration: none;
  font-size: 25px;
}

.navBarRight
{
  float: right;
}

/* Items in dropdown */
.dropdown
{
  float: left;
  overflow: hidden;
  /*position: relative;
  display: inline-block;*/
}

.dropdown .dropButton
{
  font-size: 25px;
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit;
  padding: 45px 45px;
  cursor: pointer;
}

/* Adds background color to navbar when hovered over */
.navBar a:hover, .dropdown:hover .dropButton
{
  color: #D1AD2A;
}

.navBar .icon
{
  display: none;
}

/* Links in dropdown */
.dropdownContent
{
  display: none;
  position: absolute;
  background-color: black;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.dropdownContent a
{
  border-bottom: 5px double #396297;
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.slideImages
{
  display: none;
}

img
{
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container
{
  padding-top: 100px;
  /* TODO: PADDING ONLY FOR BLURB AT TOP OF LANDING PAGE. GO BACK TO 100PX WHEN TAKEN OUT */
  /* padding-top: 30px; */
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Styles footer */
footer
{
  clear: both;
  background-color: black;
  border-top: 5px double #396297;
  width: 100%;
  flex-shrink: 0;
  z-index: 1;
}

/* Creates two equal columns next to each other */
.column
{
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after
{
  content: "";
  display: table;
  clear: both;
}

.column p
{
  color: white;
  text-align: center;
  font-size: 25px;
}
/* End style for footer */

*
{
  box-sizing: border-box;
}

.menuRow, .merchRow, .barRow
{
  display: flex;
  flex-wrap: wrap;
}

/* Creates two equal columns for menu */
.column2
{
  float: left;
  width: 50%;
  padding: 0px 50px;
}

.column3
{
  float: left;
  width: 33.33%;
  padding: 20px 50px;
}

.column4
{
    float: left;
    width: 25%;
    padding: 0px 50px;
}

.column5
{
  float: left;
  width: 20%;
  padding: 0px 50px;
}

.column2 p, .column3 p, .column4, .column5
{
  color: white;
  text-align: center;
  font-size: 25px;
}

.cardContainer
{
  text-align: center;
  padding-top: 100px;
}

.column3 img, .column5 img
{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

header
{
  color: white;
  text-align: center;
  font-size: 50px;
  padding: 0px;
}

header h3
{
  font-size: 25px;
  padding: 0px;
}

/*.gmap_canvas
{
  height: 500px;
  width: 600px;
}

.map
{
  align-self: center;
  padding: 45px;
  overflow: hidden;
  height: 600px;
  width:600px;
  max-width: 100%;
}*/

.map
{
  overflow: hidden;
  padding-bottom: 46.25%;
  position: relative;
  height: 0;
  margin-left: 250px;
}

.map iframe
{
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  position: absolute;
}

.about
{
  text-align: center;
  font-size: 40px;
  padding: 0px 15px;
  color: white;
}

.show
{
  display: block;
}

#topButton
{
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 2;
  border: none;
  outline: none;
  background-color: #396297;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#topButton:hover
{
  background-color: #D1AD2A;
}

/* Body columns stack on small screens */
@media screen and (max-width: 1150px)
{
  header, .column2, .column3, .column4, .column5
  {
    padding: 0px 50px;
  }
  header
  {
    font-size: 35px;
    padding-top: 30px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .column2, .column3, .column4, .column5
  {
    width: 100%;
  }
  .map
  {
    margin-left: 0px;
    padding-bottom: 120%;
  }
  .map iframe
  {
    width: 100%;
  }
  footer
  {
    z-index: 3;
  }
  .about
  {
    font-size: 25px;
  }
}

/* Navbar items become hidden on small screens */
@media screen and (max-width: 1150px)
{
  .navBar a:not(:first-child), .dropdown .dropButton {display: none;}
  .navBar a.icon
  {
    color: white;
    float: right;
    display: block;
  }
  #MenuButton
  {
    padding-top: 100px;
  }
  .merchRow
  {
    padding-top: 50px;
  }
}

/* Diplay links in navbar as stacked when clicked on */
@media screen and (max-width: 1150px)
{
  .navBar.responsive {position: relative;}
  .navBar.responsive a.icon
  {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navBar.responsive a
  {
    float: none;
    display: block;
    text-align: right;
  }
  .navBar.responsive .dropdown {float: none;}
  .navBar.responsive .dropdownContent {position: relative;}
  .navBar.responsive .dropdown .dropButton
  {
    display: block;
    width: 100%;
    text-align: right;
  }
}
