* {
  /*
  TODO:
  - investigate use cases when outline is for good
  */
  outline: 0;
}

/* --- Top menu --- */

.top-bar {
  padding-top: 1em;
}

.top-bar, .top-bar ul {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.96);
}

.top-bar .menu {
  background-color: transparent;
}

.top-bar .menu a {
  font-size: 1.125em;
  color: #888;
}

.top-bar .menu a:hover {
  color: #000;
}

.top-bar .menu .active a {
  color: #fff;
  background-color: #000;
}

.top-bar .menu .topbar-title a {
  line-height: 0em;
  margin-top: 0.25em;
  margin-right: 1em;

  font-family: 'Parisienne', cursive;
  font-size: 2.5em;
  text-transform: none;
  color: #000;
}

/* --- Mobile menu --- */

.title-bar .title-bar-title {
  float: right;
  font-family: 'Parisienne', cursive;
  font-size: 1.5em;
  line-height: 1em;
}

.mobile-menu {
  position: absolute;
  width: 100%;

  opacity: 0;
  visibility: hidden;
  background-color: #000;

  transition: visibility 0s, opacity .125s ease-in-out;
  -moz-transition: visibility 0s, opacity .125s ease-in-out;
  -webkit-transition: visibility 0s, opacity .125s ease-in-out;  
}

.mobile-menu.active {
  opacity: 1.0;
  visibility: visible;
}

.mobile-menu .menu a {
  color: #fff;
}

.mobile-menu .menu .active a {
  background-color: #888;
}

/* --- Posts --- */

.posts .row {
  margin-top: 2em;
}

.posts .fade {
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;  
}

.posts .row .image {
  text-align: center;
}

.posts .row .image img {
  max-height: 600px;
}

.posts .circle-dots .item {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 0.4em;
  margin-right: 0.25em;
  background-color: #eee;
}

.posts .more-photos.button {
  background-color: #fff;
  color: #888;
  border: 1px solid #888;
  border-radius: 1.5em;
}

.posts .circle-dots .item:hover {
  background-color: #000;
}

.posts h2 {
  font-size: 4.5em;
}

.posts h2 a {
  color: #000;
}

.posts hr {
  margin-top: 0;
}

.posts em {
  font-style: normal;
  color: #888;
}

/* --- Gallery --- */

.gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 999;
}

.gallery .close {
  position: absolute;
  top: 0em;
  right: 0.5em;
  font-size: 3em;
  color: #fff;
  opacity: 0.5;
}

.gallery .prev {
  position: absolute;
  left: .5em;
  top: 50%;
  font-size: 2em;
  color: #fff;
  opacity: 0.5;
}

.gallery .next {
  position: absolute;
  right: .5em;
  top: 50%;
  font-size: 2em;
  color: #fff;
  opacity: 0.5;
}

.gallery .close:hover,
.gallery .prev:hover,
.gallery .next:hover {
  opacity: 1.0;
}

.gallery .slides {
  height: 100%;
  width: 100%;
}

.gallery .slides > .slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;  
}

.gallery .slides > .image.slide {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.gallery .fade.slides > .slide {
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;  
}

.gallery .fade.slides > .slide {
  opacity: 0;
}

.gallery .fade.slides > .active.slide {
  opacity: 1.0;
}

/* --- Page --- */

.page {
  margin-top: 2em;
}

/* --- Footer --- */

.footer {
  margin-top: 3em;
  color: #888;
  font-size: 0.875em;
}
