        @font-face {
  font-family: 'Lato-Bold';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-style: normal;
}

        @font-face {
  font-family: 'Lato-Light';
  src: url('../fonts/Lato-Light.ttf') format('truetype');
  font-style: normal;
}

        @font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-style: normal;
}
    
    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lato-Regular';
      width: 100%;
    }

    /* ================= HEADER ================= */
  header {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center; /* keeps center logo centered */
  position: relative;      /* important */
  padding: 1rem;
}

/* LEFT LOGO */
.footer-logo {
  position: absolute;
  left: 1rem;   /* adjust spacing if needed */
  width: 4.5vw;
}

/* CENTER LOGO */
.logo {
  width: 20.5vw;
}
    
     /* ================================
   HERO SECTION
================================ */
.hero {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}


/* ================================
   GRADIENT OVERLAY (Dark → Light)
================================ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

background: linear-gradient(
  to bottom,
  #fbc2d2 10%,
  #fff 90%
);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;

  width: 100%;
  height: 100%;
  display: flex;
  margin: auto 0;
}

/* ================================
   LEFT TEXT SECTION (65%)
================================ */
.hero-text {
      flex: 0 0 65%;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 2rem;
    position: relative;
}

.hero-content1 {
  margin: auto 0;
}


  .feature-strip {
  width: 100%;
  background:  #fbc2d2;
  padding: 4vh 6vw;

  display: flex;
  justify-content: space-between;
  gap: 3vw;

  flex-wrap: wrap;
  margin-top: 3%;
}

.feature-box {
  flex: 1;
  min-width: 25%;
}

.feature-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1vh;
  color: #222;
}

.feature-box p {
    margin-top: 1.15rem;
  font-size: 1.4rem;
  color: #444;
  line-height: 1.5em;
  font-weight: 300;
}

/* Pink Vertical Line */
.line {
  width: 0.25em;
  height: 1.3em;
  background: #ff4f7b;
  display: inline-block;
}

.rating {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .stars {
        color: #f095b0;
        font-size: 38px;
        letter-spacing: 5px;
    }

    .rating-text {
        font-size: 24px;
        font-weight: 600;
            margin-top: 7px;
            color: #000;
    }

    .rating-text span {
        font-weight: 400;
        letter-spacing: 1px;
    }

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
 font-family: 'Lato-Bold';
  line-height: 1.2;
  margin-bottom: 2vh;
  color: #000;
}

.hero-text p {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 3vh;
  color: #000;
}

/* Join Button */
.hero-btn {
  display: block;       /* important */
  width: fit-content;   /* keeps button size tight */
  margin: 0 auto;       /* centers it */

  padding: 0.9rem 2.5rem;
  background: white;
  color: black;
  font-size: 1.1rem;
  font-weight: 800;
  border: 2px solid #000;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #f7c76b;
}

/* ================================
   RIGHT FORM SECTION (35%)
================================ */
.hero-form {
    flex: 0 0 35%;
    background: rgba(0, 0, 0, 0.65);
    /*padding: 2.5rem;*/
    /* border-radius: 1.5rem; */
    backdrop-filter: blur(12px);
    color: white;
    height: 100%;
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hsfc-Step__Content {
    padding: 0 !important;
}

.hero-form h2 {
  font-size: 1.6rem;
      margin: 3vh 0;
  font-family: 'Lato-Bold';
}

/* Form Inputs */
.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.hero-form input {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  border: none;
  outline: none;
  font-size: 1rem;
}

/* Form Button */
.form-btn {
  padding: 0.6rem 2.5rem;
  background: white;
  color: black;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Lato-Bold';
}

.form-btn:hover {
 background: #f7c76b;
}

    .tooltip-wrapper {
      position: relative;
      display: inline-block;
      text-align: center;
    }

    .tooltip-text {
      visibility: hidden;
      opacity: 0;
      width: 220px;
      background: black;
      color: white;
      text-align: center;
      padding: 8px;
      border-radius: 6px;

      position: absolute;
      bottom: 120%;
      left: 50%;
      transform: translateX(-50%);

      transition: 0.3s ease;
      font-size: 13px;
      z-index: 10;
    }

    .tooltip-text::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);

      border-width: 6px;
      border-style: solid;
      border-color: black transparent transparent transparent;
    }

    .tooltip-wrapper:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
    }

    .form-btn:disabled {
      background: gray;
      cursor: not-allowed;
      opacity: 0.8;
    }
    
  
    
    




  @media (max-width: 376px) {
      .hero-content {
          flex-direction: column;
        text-align: center;
        /* gap: 4vh; */
        height: 130vh !important;
}
  }

   
    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
        
        header {
    height: 9vh;
    padding: 0rem; 
}

      .logo {
            width: 60vw;
      }
      
      .hero {
            height: auto;
    width: 100vw;
    padding: 0 0vw;
    justify-content: center;
  }

.hero-content {
          flex-direction: column;
        text-align: center;
        /* gap: 4vh; */
        height: 100vh;
}

.hero-text {
  flex: 100%;
      color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0px 1rem;
}

.hero-form {
          flex: 100%;
        width: 100%;
        height: auto;
        padding: 0px;
}

.hero-form form {
    width: 75vw;
}

.form-row {
  flex-direction: column;
}

.stars {
    font-size: 30px;
}

.rating {
    gap: 6px;
    margin-bottom: 10px;
            display: flex;
        flex-direction: column;
                align-items: start;
}

.rating-text {
    text-align: start;
    font-size: 12px;
        margin-top: 0px;
}

.rating-text span {
    letter-spacing: 0px;
}

.hero-text h1 {
    font-size: clamp(2rem, 3vw, 4.2rem);
    text-align: start;
            line-height: 2.5rem;
}

.hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.6rem);
    text-align: start;
    /* font-weight: 100; */
}

.form-btn:disabled {
    margin-bottom: 2vh;
}

  


        .footer-logo {
            width: 25vw;
        }

  

 
    }
    
    
 /* ================= FOOTER ================= */
    footer {
      height: 7vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      background: #000;
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }
