/* base stuff */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
    font-family: 'Ubuntu', sans-serif;
}
header.shadow, footer.shadow {
    box-shadow: 0 0.5rem 0.8rem #00000030, 0 -0.5rem 0.8rem #00000030!important;
}

/* Fix login form */
#MemberLoginForm_LoginForm {
    max-width: 15rem;
}
.btn-toolbar {
    flex-direction: column;
}

/* Header and footer */
.text-bg-custom {
    color: #fff!important;
    background-color: #092b50 !important;
}
address {
    white-space: pre-line;
}

/* Hero image */
.hero {
    font-size: 1.5rem;
    position: relative;
    height: 35rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}
.hero-content {
    background-color: #00000010;
    color: white;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    text-shadow: 2px 2px 5px #000;
}
@media all and (min-width: 800px) {
    .hero {
        height: 45rem;
        font-size: 2rem;
    }
}
@media all and (min-width: 1000px) {
    .hero {
        height: 55rem;
        font-size: 3rem;
    }
}
@media all and (min-width: 1200px) {
    .hero {
        height: 65rem;
        font-size: 3.5rem;
    }
}

/* Messaging Overlay */
#messaging-overlay {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0008;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-top: 10rem;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.overlay-content {
  width: 100%;
  max-width: 50rem;
  background-color: white;
  flex-grow:0;
  margin: 1rem;
  padding: 1rem;
  box-shadow: 20px 20px 10px #3338;
  border-radius: 5px;
}
