@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Coolvetica";
  src: url("coolvetica/Coolvetica%20Rg.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Coolvetica" sans-serif;
  line-height: 1.6;
  color: #131010;
  background-color: #f8f8f8;
}

.hero {
  height: 30vh;
  background: linear-gradient(to bottom, #f8f8f8, #f5e3cc);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  flex-direction: column;
}

.hero h2 {
  font-size: 34px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #543a14;
}
.hero p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #543a14;
}

.isi {
  margin-top: 50px;
}

.Cerita {
  margin-left: 20px;
  margin-right: 20px;
}

.Cerita h3 {
  margin-bottom: 15px;
  font-family: "Coolvetica", sans-serif;
  font-weight: 400;
}

.Cerita p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.Cerita ul {
  list-style: none;
  padding: 0;
  display: list-item;
}

#horizontal {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

#horizontal img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: auto;
  align-self: center;
  border-radius: 10px;
}

.daftar-fitur {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 32px;
  margin-bottom: 58px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.fitur {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fitur:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ikon {
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.teks h3 {
  font-family: "Coolvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #131010;
}

.teks p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #543a14;
}

#text {
  text-align: center;
  font-family: "Coolvetica", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-top: 60px;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero {
    height: 45vh;
    padding: 0 30px;
  }

  #horizontal {
    gap: 20px;
    max-width: 90%;
  }

  #horizontal img {
    max-width: 400px;
  }

  .daftar-fitur {
    gap: 20px;
    margin: 50px auto;
    width: 90%;
  }

  .fitur {
    padding: 18px 20px;
  }

  .teks h3 {
    font-size: 16px;
  }

  .teks p {
    font-size: 13px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    height: 40vh;
    padding: 0 15px;
  }

  .hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 14px;
  }

  .isi {
    margin-top: 30px;
  }

  .Cerita {
    margin-left: 15px;
    margin-right: 15px;
  }

  #horizontal {
    flex-direction: column;
    gap: 20px;
  }

  #horizontal img {
    max-width: 100%;
  }

  #text {
    text-align: center;
    font-family: "Coolvetica", sans-serif;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #543a14;
  }

  .daftar-fitur {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px auto;
    width: 90%;
  }

  .fitur {
    padding: 15px 18px;
    gap: 12px;
  }

  .ikon {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }

  .teks h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .teks p {
    font-size: 13px;
  }
}
