/* Import base boilerplate reset/normalize */
@import url('./boilerplate.css');

/* Import the actual theme styles */
@import url('./theme.css');

/* Fix image paths - theme CSS references images/ relative to theme dir */
/* We've placed images in /images/ so paths like url(images/foo.png) need updating */

/* Gallery styles from WP custom CSS */
.page .gallery {
  margin: 20px auto;
}
.page .gallery .gallery-item {
  float: left;
  margin: 11px;
  text-align: center;
  width: 30%;
}
.page .gallery img {
  box-shadow: gray 0 0 30px;
  margin: 15px;
}
.page .gallery img:hover {
  box-shadow: green 0 0 30px;
  margin: 15px;
}
.page .gallery .gallery-caption {
  margin-left: 0;
  font-family: Source Sans Pro;
  font-weight: 400;
  font-size: 19px;
  margin-top: 15px;
}

/* Mobile menu toggle */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .menu.menu-open {
    display: block;
  }
  #access .menu-icon {
    display: block !important;
    cursor: pointer;
    padding: 12px;
    font-size: 24px;
  }
}

/* Google Maps responsive container */
.google-maps iframe {
  max-width: 100%;
}
