/* ================================
   CSS VARIABLES - CUSTOMIZE HERE
   ================================ */
:root {
  /* Brand Colors */
  --Red-ish: #a47370;
  --PurplePoop: #a49aab;
  --BlueThing: #364752;
  --SadGreen: #9c9f73;

  --primary-color: #364752;      /* Main brand color (previously used in blueText) SS green */
  --secondary-color: #9c9f73;    /* Accent color (yellow buttons) */
  --tertiary-color: #364752;     /* Dark variant */

}
body,
.container {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  text-align: center;
}
body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.25rem !important;
  line-height: 1.25 !important;
}
.container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-display {
  display: none;
}
.imageBackground {
  position: relative;
}
.imageOverlay,
.colorOverlay {
  position: absolute;
  max-width: 100%;
}
.imageOverlay {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-item {
  position: relative;
  display: block;
  width: 100%;       
  height: 600px;
  max-height: 600px;
}

.colorOverlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;   
  max-height: 600px;
  object-fit: cover; 
  background-color: #608063;
}
.carousel-img {
  display: block;
  width: 100%;       
  max-height: 600px;
  object-fit: cover; 
}
h2 {
  font-size: 28px !important;
}
.customBtn,
.formBtn,
.customBtnHeader {
  font-size: 28px !important;
  color: var(--tertiary-color) !important;
}
.customBtn {
  background-color: var(--secondary-color) !important;
}
.formBtn {
  background-color: var(--secondary-color) !important;
  color: white !important;
}
.customBtnHeader {
  background-color: white !important;
  border: 2px solid var(--tertiary-color)!important;
  font-size: 32px !important;
}
.headerLink:hover {
  border-bottom: 5px solid 
#2f6b7d;
  padding-bottom: 0.5rem !important;
  color: 
#2f6b7d !important;
}
.headerText {
  font-size: 4rem !important;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}
.blueText {
  color: var(--primary-color);
}
.borderBox {
  border-radius: 20px !important;
  background-color: 
#f6f5ec;
  max-width: 100%;
}
.eventWidth {
  width: 40% !important;
}
.formWidth {
  width: 55% !important;
}
.formInput {
  border-radius: 0 !important;
}
.beigeBackground {
  background-color: 
#f6f5ec !important;
}
.footerFont {
  font-size: 0.75rem !important;
}
.aboutImg {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  max-width: 100%;
}
.aboutImgSpacing {
  width: 33.333%;
  padding: 0;
}
.aboutTextSpacing {
  width: 45%;
  padding: 0 0 0 3rem;
  Line-height: 1.75;
}
.greenBorder {
  border-top: 5px solid 
#008000;
}
.greenText {
  color: 
#008000;
}
.sansSerif {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 4px;
}
.subText {
  font-size: 2rem;
  margin-top: 10px;
  color: white;
}
/* Font Colors /
.text-copper {
color: var(--copper) !important;
}
/ Background Colors */
.bg-copper {
background-color: var(--copper) !important;
}
@media only screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
  .eventWidth {
    width: 70% !important;
  }
  .formWidth {
    width: 80% !important;
  }
  .headerText {
    font-size: 2.5rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .headerText {
    font-size: 1.5rem !important;
  }
  .subText {
    font-size: 1rem;
  }
  .aboutImg {
    border-radius: 0;
    max-width: 100%;
  }
  .aboutImgSpacing {
    width: 100%;
  }
  .aboutTextSpacing {
    width: 100%;
    padding: 1rem 1rem 0 1rem;
  }
}