body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(to right, #E9B500, #B25800);
  }

  .menu-bar {
    background-color: #333645;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
  }
  
  .menu-logo img {
    text-align: left;
    box-sizing: border-box;
    max-height: 40px;
    text-decoration: none;
  }
  
  .menu-item {
    display: inline-block;
    margin: 0 15px;
    color: #FCFD9F;
    text-decoration: none;
  }
  
  .menu-item:hover {
    text-decoration: none;
  }
  
  .menu-bar .menu-item {
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 5px;
  }

  .menu-bar .menu-item:hover {
    background-color: #FCFD9F;
    border-color: #333645;
    color: #333645;
  }

  .menu-bar .menu-item.active {
    background-color: #FCFD9F;
    border-color: #333645;
    color: #333645;
  }
  
  .filler-image-container {
    width: 100vw;
    height: calc(100vh - 50px);
    overflow: hidden;
  }
  
  .filler-image {
    width: 100%;
    height: auto;
    filter: blur(3px);
    object-fit: cover;
  }

  .main-content-container {
    text-align: center;
    padding: 60px;
    color: #333;
    width: 100%;
    height: auto;
    margin: 50px auto;
  }

  .main-content-container img {
    max-width: 100%;
    max-height: 70%;
  }
  
  .main-content-text {  
    font-family: 'Banschrift Semi Bold', sans-serif;
    font-size: 28px;
    font-weight: bold;
    padding-left: 16%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 16%;
    color: #333645;
  }

  .main-content-header h1{
    text-align: center;
    padding-top: 5%;
    padding-bottom: 2%;
    font-family: 'Banschrift Semi Bold', sans-serif;
    font-size: 40px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    color: #333645;
  }

  .main-content-header h2{
    padding-top: 2%;
    padding-left: 16%;
    font-family: 'Banschrift Semi Bold', sans-serif;
    font-size: 40px;
    font-weight: bold;
    width: 50%;
    box-sizing: border-box;
    color: #333645;
  }

  .main-content-logo img {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 20%;
  }
  
  .main-content-map iframe {
    width: 67%;
    height: 400px;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    margin: auto;
  }

  .image-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #FCFD9F;
    font-family: 'Banschrift Semi Bold', sans-serif;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .background-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FCFD9F;
    font-family: 'Banschrift Semi Bold', sans-serif;
    font-size: 4vw;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    padding: 20px;
    text-align: center;
  }

  .image-container {
    width: 28%;
    position: relative;
    display: inline-block;
    margin: 35px; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  }

  .gallery-container {
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .gallery-item {
    margin-bottom: 20px;
    width: 28%;
    
  }

  .gallery-item img {
    max-width: 100%;
    height: auto;
    border: 0px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3)
  }

  #gallerySelector {
    width: 200px;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 20px;
    background-color: #333;
    color: #FCFD9F;
  }
  
  .image-row {
    width: 100%;
  }

  .form-control {
    max-width: 300px;
    margin: 0 auto;
  }

  .form-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .form-container .main-content-text,
  .form-container .main-content-container {
    width: 48%;
    margin-bottom: 20px;
  }

  @media (max-width: 767px) {
    .form-container .main-content-text,
    .form-container .main-content-container {
      width: 100%; 
    }
  }
  .bottom-bar {
    background-color: #333;
    color: #FCFD9F;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  .bottom-right-text {
    width: 48%;
    text-align: right;
  }
  
  .bottom-left-text {
    width: 48%;
    text-align: left;
  }