        @font-face {
  font-family: 'segoeu';
  src: url('../fonts/segoeuithis.ttf') format('opentype');
  font-style: normal;
}

          @font-face {
  font-family: 'segoeu bold';
  src: url('../fonts/Segoe UI Bold.woff') format('woff');
  font-style: normal;
}

          @font-face {
  font-family: 'Segoe UI';
  src: url('../fonts/Segoe UI.woff') format('woff');
  font-style: normal;
}
    
    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI';
      width: 100%;
    }

    header {
      height: 11vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .logo1 {
      width: 6.5vw;
    }

.offer-strip {
  width: 100%;
  background-color: #ff8303;
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

    .hero {
      min-height: 90vh;
      background-image: url("../images/mello.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
          display: flex;
    align-items: center;
    justify-content: center;
    }

    /* Overlay */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .hero-content {
      position: relative;
      max-width: 100vw;
      padding: 40px;
      width: 100%;
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }

    /* Logo */
    .logo {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .logo span {
      color: #1fd1e5;
      font-family: 'segoeu bold';
    }

    /* Pills */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      margin-bottom: 15px;
      font-family: 'Segoe UI';
      color: #fff;
    }

    .headline {
      font-size: 52px;
      font-weight: 700;
      margin: 10px 0 20px;
      
    }
    
 .hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  display: inline-flex;
  gap: 0; /* removes default spacing */
}

/* All letters */
.wave-text span {
  display: inline-block;
  animation: wave 3s ease-in-out infinite;
}

/* HELLO = white */
.wave-text .hello {
  color: #ffffff;
}

/* MELLO = blue */
.wave-text .mello span {
  color: #41b6e6;
}

.hello1 {
 letter-spacing: -24px;
  margin: 0;
  padding: 0;
}
.short-content {
    width: 800px !important;
    font-size: 20px !important;
}
/* Tighten spacing between hello & mello */
.wave-text .mello {
  margin-left: 0.1em; /* adjust: 0 = touching, 0.15 = comfy */
}

/* Wave animation */
@keyframes wave {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-12px); }
  40%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* Stagger animation */
.wave-text span:nth-child(1)  { animation-delay: 0s; }
.wave-text span:nth-child(2)  { animation-delay: 0.1s; }
.wave-text span:nth-child(3)  { animation-delay: 0.2s; }
.wave-text span:nth-child(4)  { animation-delay: 0.3s; }
.wave-text span:nth-child(5)  { animation-delay: 0.4s; }
.wave-text span:nth-child(6)  { animation-delay: 0.5s; }
.wave-text span:nth-child(7)  { animation-delay: 0.6s; }
.wave-text span:nth-child(8)  { animation-delay: 0.7s; }
.wave-text span:nth-child(9)  { animation-delay: 0.8s; }
.wave-text span:nth-child(10) { animation-delay: 0.9s; }


    .description {
      width: 100%;
      font-size: 25px;
      line-height: 1.6;
      margin-top: 15px;
      margin-bottom: 25px;
      color: #e5e5e5;
          text-align: center;
          font-family: 'Segoe UI';
          padding: 0px 60px;
    }

    /* Buttons */
    .buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
          justify-content: center;
    align-items: center;
    }

    .btn-primary {
      background: #41b6e6;
      color: #000;
      padding: 16px 28px;
      border-radius: 14px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
       cursor: pointer;
    }

    .btn-outline {
      background: rgba(0,0,0,0.4);
      color: #fff;
      padding: 16px 28px;
      border-radius: 14px;
      font-size: 16px;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.3);
      text-decoration: none;
       cursor: pointer;
    }
    
    .features-section {
  width: 100%;
  padding: 8vh 5vw;
  background: #f9fafb;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 3vw;
  max-width: 90vw;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  width: 30%;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.icon-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border-radius: 1.2rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 2.2rem;
  height: 2.2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #111827;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6em;
  color: #6b7280;
}

.delivery-zones {
  width: 100%;
  padding: 5vh 6vw;
  background: #fff;
  border-radius: 1.5rem;
  border: 0.1rem solid #dff7ff;
}

/* Heading */
.dz-heading {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.dz-icon {
  font-size: 2rem;
  color: #00bcd4;
}

.dz-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* Subtitle */
.dz-subtext {
  font-size: 1rem;
  margin-top: 1.5vh;
  color: #6c7a89;
  max-width: 60vw;
}

/* Grid Layout */
.dz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  margin-top: 4vh;
}

/* Cards */
.dz-card {
  background: #f5f7f9;
  border-radius: 1.2rem;
  padding: 3vh 2vw;
  border-top: 0.3rem solid #00cfff;
  min-height: 35vh;
}

/* Titles */
.dz-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5vh;
}

.dz-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2vh;
}

/* Text */
.dz-list {
  font-size: 0.9rem;
  line-height: 1.6em;
  color: #333;
}

.dz-info {
  margin-top: 2vh;
  font-size: 0.9rem;
  line-height: 1.7em;
  color: #6c7a89;
}

/* Button */
.dz-btn {
  display: inline-block;
  margin-top: 3vh;
  padding: 1vh 1.5vw;
  background: #22d3ee;
  color: #000;
  font-size: 0.85rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
}

.dz-btn.wide {
  padding: 1.2vh 2vw;
  font-size: 0.9rem;
}

/* Map Card */
.map-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-card img {
  width: 90%;
  height: auto;
  border-radius: 1rem;
}

    /* ================= 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;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
        
       .hero {
         background-image: url("../images/mello.jpg");

      min-height: 85vh;
      }
      .logo1 {
    width: 25.5vw;
}

      .logo {
        font-size: 36px;
      }

      .headline {
        font-size: 36px;
      }

      .description {
        font-size: 18px;
        padding: 0px 4px;
      }

      .hero-content {
        padding: 0px 24px;
      }
      
      .hello1 {
 letter-spacing: -13px;
      }

 .features-container {
    flex-direction: column;
    gap: 4vh;
  }

  .feature-card {
    width: 100%;
  }
  
    .dz-grid {
    grid-template-columns: 1fr;
  }

  .dz-subtext {
    max-width: 100%;
  }

  .dz-card {
    padding: 4vh 5vw;
  }

  .dz-btn {
    padding: 1.5vh 5vw;
  }
    }
    
      @media (min-width: 380px) and (max-width: 768px) {
          .hero {
         background-image: url("../images/mello.jpg");

      min-height: 78vh;
      }
      
       .hero-title {
  font-size: clamp(3.5rem, 6vw, 6rem);
       }
       
      .logo1 {
    width: 25.5vw;
}

      .logo {
        font-size: 36px;
      }

      .headline {
        font-size: 36px;
      }

      .description {
        font-size: 22px;
        padding: 0px 4px;
      }

      .hero-content {
        padding: 0px 24px;
      }
      
      .hello1 {
 letter-spacing: -13px;
      }
      
         .pill {
                 font-size: 18px;
         }
         
         .btn-primary {
    padding: 13px 15px;
    font-size: 21px;
             
         }
         
          .btn-outline {
                  padding: 13px 15px;
    font-size: 21px;
          }
    }
