/* RESET DASAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GAYA UMUM */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  background-color: #f8f8f8;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: #333;
}

.navbar-nav {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-item a {
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-item a:hover {
  background-color: #eee;
}

/* BANNER */
.image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.teks-carousel {
  color: black;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* PRODUK */
.thumbnail {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.thumbnail:hover {
  transform: scale(1.02);
}

.thumbnail-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.thumbnail-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  padding: 10px;
}

.caption h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.caption p {
  font-size: 14px;
  color: #666;
}

/* BUTTON */
.btn-block {
  display: block;
  width: 100%;
  background-color: #f07c29;
  color: #fff;
  border: none;
  padding: 10px 0;
  margin-top: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-block:hover {
  background-color: #d8681f;
}

/* FOOTER */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .nav-item a {
    width: 100%;
    padding: 10px;
  }

  .thumbnail-img-wrapper {
    height: 180px;
  }

  .caption h4 {
    font-size: 16px;
  }

  .btn-block {
    font-size: 14px;
    padding: 8px;
  }

  footer {
    font-size: 13px;
  }
}
