* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  min-height: 100dvh;
  background: url("assets/bg-sunset-v2.jpg") no-repeat;
  background-size: contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.85) 100%
  );
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  text-align: center;
}

.content h1 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
}

.content h1 strong {
  font-weight: 700;
}

.mbr {
  display: none;
}

.content p {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 32px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(180deg, #ff2a2a, #b10000);
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(255,0,0,0.45);
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(255,0,0,0.65);
}

/* FOOTER */
.footer-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #fff;
  z-index: 2;
  text-align: center;
}

/* =====================
   RESPONSIVE
===================== */
/* TABLET */
@media (max-width: 1024px) and (min-width: 577px) {
  .hero {
    background-size: cover;
  }
  
  .footer-text {
    white-space: nowrap;      /* paksa 1 baris */
    overflow: hidden;
    text-overflow: ellipsis;  /* aman jika kepanjangan */
    font-size: 18px;
    padding: 0 24px 16px;
  }
}

/* MOBILE */
@media (max-width: 992px) {
  .hero {
    justify-content: center;
    padding: 60px 40px;
    background-position: left center;
  }

  .content {
    text-align: center;
  }

  .content p {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .hero {
    background: url("assets/bg-sunset-mobile-v2.jpg") no-repeat center;
    background-position: top center;
    background-size: contain;
  }

  .overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 60%,   /* tetap transparan sampai 60% */
      rgba(0,0,0,0.4) 75%,
      rgba(0,0,0,0.8) 90%,
      rgba(0,0,0,1) 100%
    );
  }

  .content {
    margin-top: 95%;
    padding-bottom: 24px;
  }

  .content h1 {
    font-size: 20px;
  }

  .mbr {
    display: inline;
  }

  .content p {
    font-size: 14px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 32px;
  }
  .footer-text {
    white-space: nowrap;      /* paksa 1 baris */
    overflow: hidden;
    text-overflow: ellipsis;  /* aman jika kepanjangan */
    font-size: 12px;
    padding: 0 24px 16px;
  }
}

@media (max-width: 320px) {
  .hero {
    background-size: cover;
  }

  .overlay {
    background: linear-gradient(
      90deg, 
      rgba(0, 0, 0, 0.15) 0%, 
      rgba(0, 0, 0, 0.6) 55%, 
      rgba(0, 0, 0, 0.85) 
      100%
    );
  }

  .content {
    margin-top: 45%;
  
  }

  .content p {
    font-size: 12px;
  }

  .footer-text {
    font-size: 7px;
  }
}
