/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body umum */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #111;
  color: #fff;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
header .logo img {
  height: 50px;
}

/* Navigasi */
nav a {
  margin-left: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
}

nav a:hover {
  color: #ff9800;
}

/* Section judul halaman */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #111, #333);
  color: white;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #ddd;
}

/* Grid produk */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 4px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card .price {
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 15px;
}

.card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.card .btn:hover {
  background: #ff9800;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  background: #fff;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #222;
}

.hero-text h1 span {
  color: #000; /* bisa diganti warna aksen */
  font-weight: bold;
}

.hero-text p {
  margin: 20px 0;
  color: #555;
  line-height: 1.6;
}

.btn-utama {
  display: inline-block;
  padding: 10px 20px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-utama:hover {
  background: #444;
}

.hero-img img {
  max-width: 400px;
  border-radius: 10px;
}