:root {
  --kream: #f6f1e9;
  --hijau: #2f5d3a;
  --oranye: #e07a5f;
  --abu: #6b6b6b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--kream);
  color: var(--hijau);
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

/* LOGO IMAGE */
.logo img {
  height: 45px;
  cursor: pointer;
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: var(--hijau);
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: var(--oranye);
}

/* ================= HERO ================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
}

.hero-text p {
  margin: 15px 0 25px;
  color: var(--abu);
}

/* BUTTON */
.btn {
  display: inline-block;
  background: var(--oranye);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

/* HERO IMAGE */
.hero-image img {
  width: 350px;
}

/* ================= FEATURES ================= */
.features {
  padding: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
/* ================= ABOUT ================= */
.about {
  padding: 80px 60px;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: auto;
  color: var(--abu);
  line-height: 1.8;
}

/* ================= TESTIMONI ================= */
.testimoni {
  padding: 80px 60px;
  background: #efe8dd;
  text-align: center;
}

.testimoni h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.testi-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testi-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testi-card p {
  font-style: italic;
  color: var(--abu);
  margin-bottom: 15px;
}

.testi-card h4 {
  color: var(--hijau);
  font-weight: 600;
}

/* ================= CONTACT ================= */
.contact {
  padding: 80px 60px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact p {
  color: var(--abu);
  margin-bottom: 8px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--hijau);
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}


.card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--abu);
}

/* ================= KOLEKSI LILIN ================= */
.koleksi {
  padding: 90px 60px;
  text-align: center;
}

.koleksi h2 {
  font-size: 34px;
  margin-bottom: 50px;
  color: var(--hijau);
}

.koleksi h2 span {
  color: var(--oranye);
}

.koleksi-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.koleksi-card {
  background: white;
  padding: 30px 25px;
  width: 260px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.koleksi-card:hover {
  transform: translateY(-8px);
}

.koleksi-card img {
  width: 60px;
  margin-bottom: 20px;
}

.koleksi-card h3 {
  margin-bottom: 10px;
  color: var(--hijau);
}

.koleksi-card p {
  color: var(--abu);
  font-size: 15px;
}
