/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family:
    'Figtree',
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  background-color: #fff;
  color: rgba(29, 29, 29, 1);
  overflow: hidden;
}

/* Container styling */
.coming-soon-container {
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
}

/* Secondary blur background */
.blur-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background-color: rgba(105, 230, 212, 1);
  transform: translate(-50%, -50%);
  filter: blur(800px);
  z-index: 20;
}

/* Circles */
.outer-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.middle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
}

.texture-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1500px;
  height: 450px;
  z-index: 10;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.texture-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1500px;
  height: 450px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.text-content {
  position: relative;
  z-index: 30;
  text-align: center;
}

.text-box {
  max-width: 600px;
  margin: 0 auto;
}

.brown-package {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translate(-16%, -50%);
  z-index: 20;
}

.truck-box {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translate(16%, -50%);
  z-index: 20;
}

.pin-map {
  position: absolute;
  top: 25%;
  left: 25%;
  transform: translateY(-25%);
  z-index: 20;
}

.opened-box {
  position: absolute;
  top: 25%;
  right: 25%;
  transform: translateY(-25%);
  z-index: 20;
}

.white-truck {
  position: absolute;
  bottom: 20%;
  left: 25%;
  transform: translateY(50%);
  z-index: 20;
}

.box-mover {
  position: absolute;
  bottom: 20%;
  right: 25%;
  transform: translateY(50%);
  z-index: 20;
}

.text-box h2 {
  font-weight: 600;
  font-size: 40px;
  color: rgba(29, 29, 29, 1);
  margin-bottom: 1rem;
}

.text-box p {
  color: rgba(99, 99, 99, 1);
  font-size: 20px;
  line-height: 1.6;
}

.coming-soon {
  display: block;
  margin: 2rem auto 0;
  max-width: 100%;
  width: 320px;
  height: 320px;
}

.float-icon {
  width: 96px;
  height: 96px;
}

/* Responsive: apply smaller font sizes on mobile */
@media (max-width: 768px) {
  .text-box h2 {
    font-size: 24px;
  }

  .text-box p {
    font-size: 14px;
  }

  .text-content {
    text-align: center;
    padding-right: 16px;
    padding-left: 16px;
  }

  .float-icon {
    width: 64px;
    height: 64px;
  }

  .coming-soon {
    width: 180px;
    height: 180px;
  }

  .brown-package {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-40%, -50%);
    z-index: 20;
  }

  .truck-box {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(40%, -50%);
    z-index: 20;
  }

  .pin-map {
    position: absolute;
    top: 10%;
    left: 15%;
    z-index: 20;
  }

  .white-truck {
    position: absolute;
    bottom: 15%;
    left: 15%;
    z-index: 20;
  }

  .box-mover {
    position: absolute;
    bottom: 15%;
    right: 15%;
    z-index: 20;
  }

  .opened-box {
    position: absolute;
    top: 10%;
    right: 15%;
    z-index: 20;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .text-box h2 {
    font-size: 32px;
  }

  .text-box p {
    font-size: 16px;
  }

  .text-content {
    text-align: center;
    max-width: 600px;
  }

  .float-icon {
    width: 80px;
    height: 80px;
  }

  .coming-soon {
    width: 280px;
    height: 280px;
  }

  .brown-package {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(35%, -50%);
    z-index: 20;
  }

  .truck-box {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-35%, -50%);
    z-index: 20;
  }

  .pin-map {
    position: absolute;
    top: 10%;
    left: 15%;
    z-index: 20;
  }

  .white-truck {
    position: absolute;
    bottom: 15%;
    left: 15%;
    z-index: 20;
  }

  .box-mover {
    position: absolute;
    bottom: 15%;
    right: 15%;
    z-index: 20;
  }

  .opened-box {
    position: absolute;
    top: 10%;
    right: 15%;
    z-index: 20;
  }
}
