﻿html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  position: relative;
}

#home #content {
  padding-top: 56px;
}

#home .dropdown-menu {
  min-width: 5rem;
}

#home .navbar {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

#stage {
  background: linear-gradient(rgba(20, 20, 20, 0.2), rgba(20, 20, 20, 0.2)),
    url("../images/homepage.jpg") no-repeat center center;

  background-size: cover;
  color: white;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  opacity: 0.8;
}

#stage-caption {
  font-size: 1.4rem;
  font-weight: 200;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

#stage-caption h1 {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.gallery-block {
  padding-bottom: 60px;
}

.gallery-block .heading {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-block .heading h2 {
  text-transform: uppercase;
}

.gallery-block.compact-gallery .item {
  overflow: hidden;
  margin-bottom: 0;
  background: black;
  opacity: 1;
}

.gallery-block.compact-gallery .item .image {
  transition: 0.8s ease;
}

.gallery-block.compact-gallery .item .info {
  position: relative;
  display: inline-block;
}

.gallery-block.compact-gallery .item .description {
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: 1;
  color: #fff;
  transition: 0.8s ease;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.39));
}

.gallery-block.compact-gallery .item .description .description-heading {
  font-size: 1.2em;
  font-weight: bold;
}

.gallery-block.compact-gallery .item .description .description-body {
  margin-top: 5px;
  font-weight: 300;
}

@media (min-width: 576px) {
  .gallery-block.compact-gallery .item .description {
    opacity: 0;
  }

  .gallery-block.compact-gallery .item a:hover .description {
    opacity: 1;
  }

  .gallery-block .zoom-on-hover:hover .image {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.contact-heading {
  margin-top: 10px;
  margin-bottom: 30px;
}

.social-link {
  margin: 5px;
  color: #000000;
}

.social-link:hover {
  text-decoration: none;
}
