/**
 * Shared Parallax Header Styles
 * Used by all restaurant menu templates
 */

/* Parallax Header */
.brm-parallax-header {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.brm-parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.brm-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.brm-parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  width: 100%;
}

.brm-parallax-content h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin: 0;
}

.brm-parallax-content .brm-heading-description {
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-top: 15px;
}

/* Responsive */
@media only screen and (max-width: 767px) {
  .brm-parallax-header {
    min-height: 200px;
  }

  .brm-parallax-bg {
    background-attachment: scroll;
  }

  .brm-parallax-content h2 {
    font-size: 24px;
  }
}
