        @font-face {
  font-family: 'My Font Bold';
  src: url('../fonts/My Font Bold.ttf') format('truetype');
  font-style: normal;
}

        @font-face {
  font-family: 'gotham-pro-medium';
  src: url('../fonts/gotham-pro-medium.ttf') format('truetype');
  font-style: normal;
}


    
    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'gotham-pro-medium';
      width: 100%;
    }

    /* ================= HEADER ================= */
    header {
      height: 13vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .logo {
          width: 15vw;
    }
    
     /* ================================
   HERO SECTION
================================ */
.hero {
  width: 100%;
    height: 110vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

/* ================================
   BACKGROUND SLIDER
================================ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

/* ================================
   GRADIENT OVERLAY (Dark → Light)
================================ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0) 100%
  );

  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;

  width: 100%;
  height: 100%;
  display: flex;
}

/* ================================
   LEFT TEXT SECTION (65%)
================================ */
.hero-text {
      flex: 0 0 70%;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 4rem;
     position: relative; 
}

.hero-text-nav {
  position: absolute;
    top: 5vh;
    left: 10rem;

  display: flex;
  gap: 2rem;
  z-index: 6;
}

.hero-text-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'My Font Bold';
  position: relative;
  transition: 0.3s ease;
}

/* underline hover */
.hero-text-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #f7c76b;
  transition: 0.3s ease;
}

.hero-text-nav a:hover::after {
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-family: 'My Font Bold';
  line-height: 1.2;
  margin-bottom: 2vh;
}

.hero-text p {
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 3vh;
  font-family: 'gotham-pro-medium';
}

/* Join Button */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 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: 'My Font Bold';
}

.hero-btn:hover {
  background: #f7c76b;
}

/* ================================
   RIGHT FORM SECTION (35%)
================================ */
.hero-form {
    flex: 0 0 30%;
    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;
}

.hero-form h2 {
  font-size: 1.6rem;
  margin-bottom: 4vh;
  font-family: 'My Font 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: 'My Font 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;
    }


/* ================================
   OFFER STRIP SECTION
================================ */
.offer-strip {
  width: 100%;
  padding: 4vh 6vw;
  background: #141218;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
}

/* ================================
   OFFER ITEM
================================ */
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2vw;
  flex: 1;
}

/* ================================
   ICON CIRCLE
================================ */
.offer-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;

  background: rgba(255, 200, 100, 0.08);
  color: #f7c76b;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
}

/* ================================
   TEXT CONTENT
================================ */
.offer-text h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.6vh;
  font-family: 'My Font Bold';
}

.offer-text p {
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6em;
  font-family: 'gotham-pro-medium';
}

.footer {
  width: 100%;
  padding: 3vh 6vw;
  background: #000;

  display: flex;
  justify-content: space-around;
  align-items: center;

  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
   font-family: 'gotham-pro-medium';
}

/* Privacy Policy Link */
.footer .privacy-link {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer1{
    color: white;
}

.footer .privacy-link:hover {
  color: #f7c76b;
}

  @media (max-width: 376px) {
      .hero-content {
          flex-direction: column;
        text-align: center;
        /* gap: 4vh; */
        height: 195vh !important;
}
  }

   
    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
        
         .hero-text-nav {
        top: 4vh;
        left: 5%;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

      .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: 145vh;
}

.hero-text {
  flex: 100%;
      color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 1rem;
}

.hero-form {
          flex: 100%;
        width: 100%;
        height: auto;
        padding: 0px;
}

.hero-form form {
    width: 75vw;
}

.form-row {
  flex-direction: column;
}

 

  /* Overlay stronger on mobile */
  .hero::before {
    background: rgba(0, 0, 0, 0.75);
  }
  
  .offer-strip {
    flex-direction: column;
    text-align: center;
  }

  .offer-item {
    flex-direction: column;
    align-items: center;
  }

  .offer-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
  
   .footer {
    flex-direction: column;
    gap: 2vh;
    text-align: center;
  }
    }
