@font-face {
  font-family: "Kalbe System";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/Kalbe_System_regular/KalbeSystem-Regular.woff2") format("woff2");
}

body {
  min-height: 100vh;
  font-family: "Kalbe System", sans-serif;
  display: flex;
  flex-direction: column;
}

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

/* HERO SECTION */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.container {
  width: 70%;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-footer {
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.text-content h1 {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  color: #000;
}

.text-content p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  max-width: 32rem;
}

.image-wrapper {
  display: flex;
  justify-content: center;
}

.image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  height: auto;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Large screens */
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-content h1 {
    font-size: 4.5rem;
  }

  .text-content p {
    font-size: 1.25rem;
  }

  .image-wrapper {
    justify-content: flex-end;
  }

  .image-box {
    max-width: 700px;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .text-content h1,
  .text-content p {
    text-align: center;
    margin-bottom: 0.8rem;
  }

  .container-footer {
    place-items: center;
  }

  .partners-grid {
    flex-direction: column;
    justify-content: center;
  }
}

/* PARTNERS SECTION */
.partners {
  min-height: 20vh;
  border-top: 1px solid #e5e5e5;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.label {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 32px;
}

.partners-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box {
  width: 240px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  background-color: #75b647;
  padding: 1rem 0;
  color: white;
  text-align: center;
  margin-top: auto;
}
