/* ================================
   IMPORT FONT FIGTREE
================================ */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Figtree', sans-serif;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  padding: 100px 0; /* full tinggi layar laptop */
  background: url('../asset/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero h1 {
  font-weight: 800;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ================================
   CONTACT SECTION
================================ */
#contact {
  padding: 80px 0;
  background: #f8f9fa;
}

#contact img {
  max-width: 100%;
  border-radius: 16px;
}

#contact h2 {
  font-weight: 700;
}

#contact hr {
  width: 80px;
  height: 4px;
  background: #0d6efd;
  border: none;
  margin: 16px 0 24px;
}

#contact p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ================================
   MAP FRAME
================================ */
#contact iframe {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ================================
   FOOTER
================================ */
footer {
  margin-top: 80px;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

  .hero {
    padding: 70px 16px;
  }

  #contact {
    padding: 60px 16px;
  }

  #contact h2 {
    text-align: center;
  }

  #contact hr {
    margin-left: auto;
    margin-right: auto;
  }

  #contact img {
    margin-bottom: 24px;
  }

  footer {
    padding: 20px 12px;
  }
}
