/* Reset dan Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  background-color: white;
  color: #0D3B70;
  margin: 0;
  padding: 0;
}

/* Area Utama */
.hero {
  background-color: #0D3B70;
  color: white;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Logo kiri atas */
.logo {
  position: absolute;
  top: 58px;
  left: 30px;
}

/* Container untuk gambar dan teks */
.logo-container {
  display: flex;
  align-items: center;
}

/* Gambar Logo */
.logo-image {
  width: 150px; 
  height: auto;
  margin-left: -20px;
  padding: 0;
}

/* Teks Logo */
.logo-text {
  text-align: left; 
  margin-left: -33px;
}

.logo-text h1 {
  font-size: 25px; 
  font-weight: 400;
  margin: 0; 
  line-height: 1; 
}

.logo-text .subtitle {
  font-size: 25px; 
  font-weight: 400;
  margin: 0; 
}

.bold {
  font-weight: 650;
}

/* Konten Tengah */
.content {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.tagline {
  font-size: 30px;
  margin-bottom: 10px;
  margin-top: 105px;
}

.description {
  font-size: 22px;
  margin-bottom: 30px;
}

/* Tombol */
.start-button {
  display: inline-block;
  padding: 6px 24px;
  border: 1.5px solid white;
  border-radius: 999px;
  background: transparent;
  color: white;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 85px;
}

.start-button:hover {
  border: 1.5px solid #C0C0C0;
  background: #C0C0C0;
  transition: background 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}


/* Media Query untuk HP */
@media (max-width: 640px) {
  .logo-container {
    gap: 4px;
  
  }

  .logo-image {
    width: 90px;
  }

  .logo-text h1 {
    font-size: 17px;
  }

  .logo-text .subtitle {
    font-size: 17px;
  }

  .tagline  {
    font-size: 18px;
    margin-top: 15px;
  }

  .description {
    font-size: 14px;
  }

  .start-button {
    font-size: 10px;
    padding: 6px 20px;
    margin-top: 40px;
  }
}