@font-face {
  font-family: "Neue-Montreal";
  src: url("../fonts/neuemontreallight.woff2") format("woff2"),
    url("../fonts/neuemontreallight.woff") format("woff"),
    url("../fonts/neuemontreallight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Neue-Montreal";
  src: url("../fonts/neuemontrealregular.woff2") format("woff2"),
    url("../fonts/neuemontrealregular.woff") format("woff"),
    url("../fonts/neuemontrealregular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Neue-Montreal";
  src: url("../fonts/neuemontrealmedium.woff2") format("woff2"),
    url("../fonts/neuemontrealmedium.woff") format("woff"),
    url("../fonts/neuemontrealmedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Neue-Montreal";
  src: url("../fonts/neuemontrealbold.woff2") format("woff2"),
    url("../fonts/neuemontrealbold.woff") format("woff"),
    url("../fonts/neuemontrealbold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "pp-editorial";
  src: url("../fonts/ppeditorialnewultralight.woff2") format("woff2"),
    url("../fonts/ppeditorialnewultralight.woff") format("woff"),
    url("../fonts/ppeditorialnewultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "pp-editorial";
  src: url("../fonts/ppeditorialnewultralightItalic.woff2") format("woff2"),
    url("../fonts/ppeditorialnewultralightItalic.woff") format("woff"),
    url("../fonts/ppeditorialnewultralightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "pp-editorial";
  src: url("../fonts/ppeditorialnewregular.woff2") format("woff2"),
    url("../fonts/ppeditorialnewregular.woff") format("woff"),
    url("../fonts/ppeditorialnewregular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "pp-editorial";
  src: url("../fonts/ppeditorialnewultrabold.woff2") format("woff2"),
    url("../fonts/ppeditorialnewultrabold.woff") format("woff"),
    url("../fonts/ppeditorialnewultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
body {
  font-family: "Neue-Montreal", sans-serif;
}

.navbar-transition {
  transition: background-color 0.3s ease;
}

.mobile-menu {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

/* Demo content height */
.demo-content {
  height: 200vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.hero-bg {
  background-image: url(../assets/hero.jpg);
  background-size: cover;
  background-position: center;
}
.more-bg {
  background-image: url(../assets/more.webp);
  background-size: cover;
  background-position: center;
}
.exactly-bg {
  background-image: url(../assets/exactly.webp);
  background-size: cover;
  background-position: center;
}
.bigbox-bg {
  background-image: url(../assets/bigbox.webp);
  background-size: cover;
  background-position: center;
}
.help-bg {
  background-image: url(../assets/help.webp);
  background-size: cover;
  background-position: center;
}
.check-bg {
  background-image: url(../assets/checkbg.webp);
  background-size: cover;
  background-position: center;
}
.join-bg {
  background-image: url(../assets/join.webp);
  background-size: cover;
  background-position: center;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin-right: 3rem;
  flex-shrink: 0;
}

/* Duplicate the content for seamless loop */
.marquee-content::after {
  content: "";
  display: inline-block;
  width: 3rem;
}
.more-blur {
  backdrop-filter: blur(7px);
}

*/ .form-radio {
  height: 20px;
  width: 20px;
  color: #29db64;
}

.ship-border {
  border: 1px solid;
  border-image-source: linear-gradient(
    133.25deg,
    rgba(252, 248, 230, 0.3) 13.62%,
    rgba(150, 148, 137, 0.2) 74.24%
  );
}
.ship-blur {
  border: 1px solid;

  border-image-source: linear-gradient(
    133.25deg,
    rgba(252, 248, 230, 0.3) 13.62%,
    rgba(150, 148, 137, 0.2) 74.24%
  );
}
/* Styles for input fields when they are selected/focused */
input:focus {
  color: #999687;
  /* outline: none; */
  border: 1px solid #8ff15f;
}

/* Styles for input placeholders */
input::placeholder {
  color: #999687;
  opacity: 1;
}

/* For older WebKit browsers (e.g., Safari, Chrome < 57) */
input::-webkit-input-placeholder {
  color: #999687;
}

/* For older Firefox browsers (e.g., Firefox < 19) */
input:-moz-placeholder {
  color: #999687;
  opacity: 1;
}

/* For IE 10 and 11 */
input:-ms-input-placeholder {
  color: #999687;
}

.input-label {
  display: block;
  color: #120e00;
  font-size: 1rem;

  font-family: "Neue-Montreal", sans-serif;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

/* Keyframes for simple fade-in */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Class to apply the animation */
.section-visible {
  animation: fade-in-up 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

/* Initially hide the sections so they don't pop in before JS adds the class */
.animated-section {
  opacity: 0;
  /* Optional: If you don't use translateY in animation, use this for initial position */
  /* transform: translateY(50px); */
}
