/* FONT SETUP */
@font-face {
  font-family: "ivypresto";
  src: url("../assets/fonts/Ivy-Presto-Headline-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.ivypresto {
  font-family: "ivypresto", sans-serif;
}

@font-face {
  font-family: "neue";
  src: url("../assets/fonts/NeueHaasDisplayThin.ttf") format("truetype");
  /* font-weight: 100; */
}

.neue {
  font-family: "neue";
  letter-spacing: 1.1px;
  line-height: 1.15;
}

@font-face {
  font-family: "neue-bold";
  src: url("../assets/fonts/HelveticaNeue-Roman.otf") format("opentype");
  /* font-weight: 100; */
}

.neue-bold {
  font-family: "neue-bold";
  /* letter-spacing: 1.1px;
    line-height: 1.15; */
}
.gradient-text {
  /* Define the gradient */
  background: linear-gradient(67deg, #fbddbd 0%, #a68059 47%, #303030 100%);

  /* Clip the background to the text shape */
  -webkit-background-clip: text;
  background-clip: text;

  /* Make the actual text transparent so the background shows through */
  color: transparent;

  /* Optional: Ensure it works on older webkit browsers */
  -webkit-text-fill-color: transparent;
}

body {
  background-color: #ffffff;
}
.bg-gold-gradient {
  background: linear-gradient(to right, #f3bc83 0%, #a68059 38%, #3e4755 100%);
}
/* Higher specificity so these beat Tailwind's injected utilities (load after style.css) */
a .kits-dropdown-download,
span.kits-dropdown-download {
  color: rgb(99 99 99 / 0.9) !important;
  -webkit-text-fill-color: rgb(99 99 99 / 0.9) !important;
  letter-spacing: normal;
}
/* Desktop: fixed grid so description column has same start/end every row */
@media (min-width: 864px) {
  div.kits-row-inner {
    display: grid !important;
    grid-template-columns: 260px 360px 120px;
    gap: 2rem;
    align-items: center;
    flex-direction: unset;
    justify-content: space-between;
  }
}

/* Sticky wings background – fixed behind all content, subtle throughout the page */
.wings-bg-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  height: 100%;
  margin: 0 auto;
  filter: brightness(0.9);
}
.hospitality-dot.active {
  background-color: #fff;
}
.hospitality-dot:not(.active) {
  background-color: transparent;
}

.footer-main {
  position: relative;
  z-index: 10;
  background-color: #0a0a0a;
}

/* Get in Touch section: dark background with red accent */
.getintouch-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Mobile: vertical form background */
@media (max-width: 768px) {
  .getintouch-bg {
    background-image: url("../assets/images/formVertical.png");
  }
}
/* Desktop: horizontal form background */
@media (min-width: 769px) {
  .getintouch-bg {
    background-image: url("../assets/images/form.png");
  }
}

.error-message {
  color: #f52500;
  font-size: 12px;
  font-weight: 500;
  /* margin-top: 5px; */
  display: block;
}

/* Section 6: white background fading to transparent at the bottom */
.section-fade-bottom {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 55%,
    rgba(255, 255, 255, 0) 100%
  );
}
/* Advantage section: fade from transparent at top to white (overrides Tailwind md:bg-[unset]) */
section.section-fade-top {
  background: linear-gradient(
    to top,
    #ffffff 0%,
    #ffffff 55%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}
/* Force native select dropdown list to use light theme so option text is dark/readable */
#stateSelect,
#citySelect {
  color-scheme: light;
}
/* Ensure option text is dark when dropdown opens (Chrome/Edge respect this in some versions) */
#stateSelect option,
#citySelect option {
  background-color: #fff;
  color: #000;
}


.btn-whatsapp-pulse {
  color: rgb(255, 255, 255);
  position: fixed;
  bottom: 35px;
  right: 10px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0px;
  height: 0px;
  z-index: 99;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  background: rgb(37, 211, 102);
  padding: 24px;
  text-decoration: none;
  border-radius: 50%;
}
