* {
  box-sizing: border-box;
}

a {
  color: #323c3f;
  text-decoration: underline;
}

button {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
  height: 100dvh;
  width: 100%;
  background-color: #284f4e;
}

body {
  background-color: #ffffff;
  border: 0 #ffffff;
  display: flex;
  flex-flow: column;
  margin: 0;
  color: #ffffff;
  overscroll-behavior-y: none;
}

body.landing-page {
  background: #000000 !important;
  background-color: #000000 !important;
  border: 0 #000000 !important;
  display: flex;
  flex-flow: column;
  height: 100%;
  margin: 0;
  color: #000000 !important;
}

main {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-flow: column;
}

h1 {
  margin: .67em 0;
  margin-bottom: 40px;
  margin-top: 80px;
  font-weight: bold;
  font-size: 30px;
  line-height: 44px;
  color: #333333;
  text-align: center;
  font-family: Din Condensed, sans-serif;
}

h2 {
  font-size: 18px;
  line-height: 28px;
  margin: 20px 0 20px 0;
  color: #333333;
  text-align: left;
  font-family: Franklin Gothic Cond, sans-serif;
}

h3 {
  font-size: 16px;
  line-height: 28px;
  margin: 20px 0 20px 0;
  color: #333333;
  text-align: left;
  font-family: Franklin Gothic Cond, sans-serif;
}

h4 {
  font-size: 15px;
  line-height: 26px;
  margin: 0 0 10px 0;
  color: #333333;
  text-align: left;
  font-family: Franklin Gothic Cond, sans-serif;
}

p {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 10px 0;
  color: #333333;
  text-align: justify;
  font-family: Franklin Gothic Medium Cond, sans-serif;
}

li {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 10px 0;
  color: #284f4e;
  text-align: justify;
  font-family: Franklin Gothic Medium Cond, sans-serif;
}

.landing-container {
  background: #000000 !important;
  background-color: #000000 !important;
  min-height: 100vh;
  padding-top: 64px;
  padding-bottom: 64px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-image img {
  height: 85vh !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100vw !important;
  display: block;
}

.landing-logo-corner {
  position: fixed;
  right: 2vh;
  bottom: 2vh;
  z-index: 1000;
}

.landing-logo-corner img {
  height: 16vh;
  opacity: 0.85;
  display: block;
}

img.tiny-logo {
  width: 40px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 48px auto 0 auto;
  padding-top: 0;
}

.enter-button {
  color: #eaddc7;
  background-color: #000000;
  padding: 14px 36px;
  font-size: 1.1rem;
  text-align: center;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 24px;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  transition: color 0.2s;
}

.enter-btn:hover {
  color: #fff;
  background: #000000;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #284f4e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-content {
  width: 100%;
  max-width: 420px;      /* Fixed max width for consistent spacing */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.header-links {
  display: flex;
  gap: 32px;
}

.header-links a {
  color: #eaddc7;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: Din Condensed, sans-serif;
  transition: color 0.2s;
}

.header-links a:hover {
  color: #fff;
}

.menu-checkbox,
.menu-toggle,
.header-links-mobile {
  display: none;
}

/* Hamburger icon styling */
.menu-toggle {
  position: absolute;
  right: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 2002;
}
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  position: absolute;
  width: 32px;
  height: 3.6px;
  background: #eaddc7;
  border-radius: 0px;
  transition: 1s;
  content: '';
}
.menu-toggle span {
  top: 14px;
  left: 2px;
}
.menu-toggle span:before {
  content: '';
  top: -10px;
  left: 0;
}
.menu-toggle span:after {
  content: '';
  top: 10px;
  left: 0;
}

.header-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 64px;
  max-width: 64px !important;
  padding: 0;
}

.header-logo img {
  width: 32px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto 0 auto;
  padding-top: 0;
}

.main-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #284f4e;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  height: auto;
}

.footer-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0 4px 0;
}

.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 4px;
  position: static;
}

.footer-links a {
  color: #eaddc7;
  text-align: center;
  font-size: 12px;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  text-decoration: none;
  position: static;
  height: auto;
}

.footer-links a:hover {
  color: #fff;
}

.extras {
  color: #eaddc7;
  text-align: center;
  font-size: 10px;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  position: static;
  margin-bottom: 2px;
  margin-top: 0;
  height: auto;
}

.landing-extras {
  background: #000000 !important;
  background-color: #000000 !important;
  color: #eaddc7;
  text-align: center;
  word-break: normal;
  height: 5%;
  font-size: 10px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  font-family: Franklin Gothic Medium Cond, sans-serif;

}

* {
  box-sizing: border-box;
}

.center-container {
  min-height: 100vh;
  padding-top: 64px;
  padding-bottom: 64px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center-container-shallow {
  padding-top: 16px;
  padding-bottom: 64px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thin-container {
  padding-left: 25%;
  padding-right: 25%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #284f4e #ffffff;
}

.thin-container h2 {
  text-align: center;
}

.banner-container {
  width: 100%; 
  padding-top: 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-container {
  max-width: 350px;
  padding-left: 0%;
  padding-right: 0%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #284f4e #ffffff;
}

.slider {
  background: #ffffff;
  background-color: #ffffff;
  width: 75%;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 100px;
  margin: 16px auto 0 auto;
}

.slides {
  background: #ffffff;
  background-color: #ffffff;
  flex: 1 1 0;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  align-items: center; 
  justify-content: center; 
}

.slide-container {
  background: #ffffff;
  background-color: #ffffff;
  max-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 25%;
  padding-right: 25%;
}

.slider-nav {
  position: fixed;
  left: 0;
  z-index: 2000;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  padding: 16px 16px;
  margin: 0;
  max-width: 20%;
  min-width: 48px;
  border-right: 1.25px solid #284f4e;
}

.slider-nav a {
  margin: 16px 16px;
  text-align: center;
  justify-content: center;
  color: #333333;
  text-decoration: none;
  font-family: Din Condensed, sans-serif;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}

.slider-nav a:hover,
.slider-nav a:focus {
    text-decoration: underline;
}

.slides::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.slides::-webkit-scrollbar-thumb {
  background: #284f4e;
  border-radius: 0px;
}

.slides::-webkit-scrollbar-track {
  background: transparent;
}

.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: 60vh;
  margin-right: 0px;
  background: #ffffff;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
/* 
.slides > div:target {
  transform: scale(0.8); 
}
*/
.slider > a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.5rem 0;
  position: relative;
}

.slider > a:active {
  top: 1px;
}

.slider > a:focus {
  background: #000;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

#mlb2-35356552.ml-form-embedContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ml-form-embedWrapper.embedForm {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.ml-form-embedBody.ml-form-embedBodyDefault.row-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ml-form-embedContent {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.ml-form-embedWrapper.embedForm,
.ml-form-embedBody.ml-form-embedBodyDefault.row-form,
.ml-block-form,
.ml-form-formContent,
.ml-form-fieldRow,
.ml-field-group {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Email input field full width of text block */
.form-control[type="email"],
input[type="email"] {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 12px auto;
  text-align: center;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #284f4e;
  box-sizing: border-box;
  display: block;
  font-family: Franklin Gothic Medium Cond, sans-serif;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

.ml-form-embedSubmit button.primary {
  background: #284f4e !important;
  color: #eaddc7 !important;
  border: none !important;
  font-family: Din Condensed, sans-serif;
  font-size: 1.1rem;
  padding: 12px 32px !important;
  margin: 12px auto 0 auto !important;
  display: block !important;
  letter-spacing: 1px;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-transform: uppercase;
}

.ml-form-embedSubmit button.primary:hover,
.ml-form-embedSubmit button.primary:focus {
  color: #fff !important;
}

.ml-form-embedPermissionsContent p {
  line-height: 16px !important;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
  transform: rotate(0deg);
  }
  100% {
  transform: rotate(360deg);
  }
}

/* Don't need button navigation */
@supports (scroll-snap-type) {
  .slider > a {
    display: none;
  }
}

@media screen and (min-width: 768px) {

}

@media screen and (max-width: 767px) {
    body.landing-page, html.landing-page {
    overscroll-behavior: contain;
    background: #000000 !important;
    background-color: #000000 !important;
  }

  body.landing-page {
    min-height: 100svh;
  }

  .landing-container {
    background: #000000 !important;
    background-color: #000000 !important;
    min-height: 60svh !important;
    padding-top: 0 !important;
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .landing-image img {
    max-height: 90svh !important;
    object-fit: contain;
    min-height: 60svh !important;
    width: auto !important;
    min-width: 0 !important;
    display: block;
  }
  
  .enter-button {
  padding: 0px 0px 6.25vh;
  margin-bottom: 2px;
  }

  .header-links{
    display: none !important; /* Hide desktop nav and logo */
  }
  .menu-toggle {
    display: block;
  }
  .header-links-mobile {
    display: none;
    position: fixed !important;
    top: 48px; /* Adjust to your header height */
    left: 0;
    width: 100vw;
    background: #284f4e;
    flex-direction: column;
    z-index: 9999;
    border-top: 1px solid #eaddc7;
    padding-bottom: 16px;
  }

  .header-links-mobile a {
    color: #eaddc7;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: Din Condensed, sans-serif;
    transition: color 0.2s;
    padding: 16px 0;
    text-align: center;
    z-index: 3001;
    border-bottom: 1px solid #3c6e6d;
    width: 100%;
    display: block;
    background: none;
  }

  .header-links-mobile a:hover {
    color: #fff;
  }
  /* Show mobile menu when hamburger is checked */
  #menu-checkbox:checked ~ .menu-toggle + .header-links.header-links-left + .header-logo + .header-links.header-links-right + .header-links-mobile {
    display: flex;
  }
  /* If the above selector doesn't work due to DOM structure, use JS-free alternative: */
  #menu-checkbox:checked ~ .header-links-mobile {
    display: flex;
  }

  .center-container {
    padding-top: 0px;
  }

  .thin-container {
    padding-left: 15%;
    padding-right: 15%;
  }

  .contact-container {
    max-width: 70%;
    padding-left: 15%;
    padding-right: 15%;
  }

  .slider-nav {
    position: relative !important;
    z-index: 100 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: none;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    border-right: none;
    border-bottom: 1.25px solid #284f4e;
    gap: 0 32px;
  }

  .slide-container {
  padding-left: 10%;
  padding-right: 10%;
  }

}

@media screen and (max-width: 479px) {

  .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
  .ml-form-formContent.horozintalForm { float: left!important; }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
  .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }
}

@font-face {
  font-family: 'Franklin Gothic Medium Cond';
  src: url('./fonts/FGMC.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Franklin Gothic Cond';
  src: url('./fonts/FGC.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Din Condensed';
  src: url('./fonts/DIN.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}