body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

h1, h2 {
  text-align: center;
  margin-bottom: 0.5em;
}

a.btn {
  display: inline-block;
  background: #DAA520;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
a.btn:hover {
  background: #b98b10;
}

.hero {
  background: url('assets/hero.jpg') center center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 8px;
}

.tentang, .keunggulan, .koleksi, .cta {
  padding: 60px 20px;
  background: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.grid img {
  width: 100%;
  border-radius: 8px;
}
.grid .item p {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.keunggulan ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: auto;
}
.keunggulan ul li {
  margin: 10px 0;
  font-size: 1.1em;
}

.cta {
  background: #DAA520;
  color: white;
  text-align: center;
}

footer {
  background: #1a1a1a;
  color: white;
  padding: 20px 0;
  text-align: center;
}
