@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('https://images.unsplash.com/photo-1608198093002-ad4e005484f0?auto=format&fit=crop&w=1400&q=80') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 20px;
}

.hero {
  max-width: 500px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  border-radius: 15px;
}

.logo .circle {
  width: 90px;
  height: 90px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden; /* biar gambar nggak keluar dari lingkaran */
}

.logo .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* logo akan fit ke lingkaran */
}


.brand {
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0 5px;
}

.tagline {
  font-size: 14px;
  margin-bottom: 30px;
  color: #ddd;
}

.section {
  margin: 25px 0;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #f1c40f;
  margin-bottom: 15px;
}

.btn {
  display: block;
  margin: 10px auto;
  padding: 14px 20px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  max-width: 350px;
}

.btn:hover {
  background: #f1c40f;
  color: #fff;
}
