:root {
  --bg-color: #f0f0f0;
  --navbar-color: white;
  --bg-darken: rgba(0,0,0,0.9);
}

@font-face {
  font-family: roboto;
  src: url(rsc/Roboto-Regular.ttf);
}

* {
  font-family: roboto;
  font-size: 15pt;
}

h1 {
  font-size: 24pt;
}

body {
  margin: 0px;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: unset;
}

.in-text-link {
  text-decoration: underline;
}

.nav-carousel-container > .navbar {
  position: absolute;
  /*background-color: rgba(0,0,0,0);*/
}

.nonfooter-wrapper > .navbar {
  position: relative;
  box-shadow: 0 0 10px var(--bg-darken);
  background-color: var(--bg-darken);
}

h1, h2 {
  text-align: center;
}

.carousel-container  {
  width: 100vw;
  position: relative; /*needed to allow for overlapping (via position:absolute) but size-constrained (via width:, height:) divs in carousel*/
}

@media (min-height: 1200px){
  .carousel-container {
    height: 1200px;
  }
}

@media (max-height: 1200px){
  .carousel-container {
    height: 100vh;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width:100vw;
  z-index: 2;
  box-sizing: border-box;
  padding: 0% 10% 0% 10%;
  overflow: hidden; /*to 'clear' the float*/
  background-color: rgb(0,0,0,0.5);
}

.navbar-hamburger-container {
  width: 50px;
  height: 50px;
}

.hamburger-open {
  mask: url("rsc/hamburger.png");
  -webkit-mask: url("rsc/hamburger.png");
}

.hamburger-close {
  mask: url("rsc/close.png");
  -webkit-mask: url("rsc/close.png");
}

.hamburger-light {
  background-color: white;
}

.navbar-logo-container {
  display: flex;
  height: 100px;
  padding: 5px;
}
.navbar-logo {
  height: 100%
}

.navbar-logo-container a img {
  height: 100%;
}

.navbar-item-container {
  display: flex;
  justify-content: space-between;
}

.navbar-item {
  margin: 20px;
}

.navbar-light {
  color: white;
}

.navbar-dark {
  color: black;
}

.navbar-hidden {
  display: none;
}

.navbar-flex-col {
  flex-direction: column;
}

.navbar-dropdown-hidden {
  height: 0px;
}

.menu-slideover-container {
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 100%;

  transition: left 0.5s ease;

  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;

  background-color: var(--bg-darken);
}

.menu-slideover-container a{
  margin: 10px 0 10px 0;
  font-size: 36pt;
}

.contact-form-field {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.5);
  border-radius: 5px;
  margin-bottom: 2px;
  padding: 0px;
  width: 100%;
  resize: vertical;
}

.contact-form-container input{
  height: 50px;
}

.contact-form-container input[type=submit]{
  width: 25%;
}

.contact-form-errors {
  color: red;
}

@media (max-width: 800px){
  .contact-grid-container {
    grid-template-columns: 1fr;
  }

  .gallery-flex-item {
    width: 100%;
  }

  .navbar {
    padding: 0%;
  }

  .navbar-hamburger-container {
    margin: 0 25px 0 25px;
  }

  .navbar-item-container {
    display: none;
  }

  .menu-slideover-container-visible  {
    left: 0px;
  }

  .menu-slideover-container-hidden  {
    left: 100%;
  }
}

@media (min-width: 800px){
  .contact-grid-container {
    grid-template-columns: repeat(2, 1fr);
    width: 1200px;
  }

  .gallery-flex-item {
    height: 400px;
  }

  .navbar-hamburger-container {
    display: none;
  }

  .menu-slideover-container  {
    display: none;
  }
}

@media (min-width: 1100px){
  .content-wrapper p{
    max-width: 1024px;
  }

  .contact-form-container {
    width: 600px;
  }
}

@media (max-width: 1100px){
  .content-wrapper{
    padding: 0% 5% 0% 5%;
  }

  .contact-form-container {
    width: 100%;
  }
}

.gallery-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0% 0% 0% 0%;
  gap: 1vw;
}

.gallery-flex-item {
  cursor: pointer;
}

.gallery-modal-container {
  display: none;
  z-index: 3;
  position: fixed;
  background-color: rgba(0,0,0,0.75);
  width: 100%;
  height: 100%;
  top: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.gallery-modal-inner-container {
  width: 95%;
  height: 95%;
}

.nonfooter-wrapper{
  min-height: calc(100vh - 200px);
  padding-bottom: 50px;
}

.footer{
  height: 150px;
  background-color: white;
  color: black;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.footer-links-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 2%;
}

.footer p{
  margin: 0px;
}

.content-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper img{
  max-width: 100%
}
