#topbanner {
  background-color: #181818;
  width: 100%;
  overflow: hidden;
}

#philly-skyline-banner {
  background-image: url("../images/banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1401 / 342;
  max-height: 500px;
  width: 100%;
  display: block;
}

#topbar {
  left: 0;
  width: 100%;
  display: block;
  background-color: #181818;
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: visible;
  z-index: 1;
  text-align: center;
  float: none;
  position: relative;
  transition: all 0.3s ease;
}

#topbar.fixed {
  position: fixed;
  top: 70;
  left: 0;
  z-index: 1000;
  background-color: #1e1e1e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.menu-button {
  display: inline-block;
  color: gold;
  text-align: center;
  text-decoration: none;
  background-color: #404040;
  
  position: static;
  padding: 10px 20px 10px 20px;
  margin: 0;

  transition: all 0.2s;
}

.menu-label {
  display: inline;
  margin-left: 4pt;
}

.mobile-hidden {
  display: inline-block;
}

#mobile-hamburger {
  display: none;
}

.menu-button:hover {
  background-color: #545454;
  color: gold;
  text-decoration: none;
}

.selected:hover {
  background-color: #686868 !important;
  color: gold;
  text-decoration: none;
}

.selected {
  display: inline-block;
  color: gold !important;
  text-align: center;
  text-decoration: none;
  background-color: #686868 !important;
  
  position: static;
  padding: 10px 20px 10px 20px;
  margin-top: 5px;
  margin-bottom: 5px;

  transition: all 0.2s;
}

p a:link {
  color: #00CCFF;
}

p a:visited {
  color: #00CCFF;
}

.menu-button {
  font-size: 18pt;
}

@media (min-width: 800px) {
  .menu-button {
    font-size: 14pt;
  }
}

@media (min-width: 1000px) {
  .menu-button {
    font-size: 18pt;
  }
}

@media (min-width: 1500px) {
  .menu-button {
    font-size: 16pt;
  }
}

@media (min-width: 1650px) {
  .menu-button {
    font-size: 18pt;
  }
}


@media (max-width: 768px) {
  #topbanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  #topbar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    white-space: normal;
  }

  .menu-button,
  .selected {
    font-size: 12pt;
    padding: 14px;
    color: white;
    margin: 0;
    width: 50%;
    box-sizing: border-box;
  }

  #header-row {
    border-left-style: solid;
    border-left-color: #282828;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-color: #282828;
    border-right-width: 1px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    height: 70px;
    width: 100%;
  }

  #mobile-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    background-color: #282828;
    border-style: none;
    color: #909090;
    font-size: 28pt;
    width: 20%;
    min-width: 70px;
    height: 70px;
  }

  #philly-skyline-banner {
    background-repeat: no-repeat;
    background-position-x: 300%;
    background-position-y: center;
    background-size: cover;
    display: inline-flex;
    height: 70px;
  }

  .mobile-hidden {
    display: none !important;
  }
}
