body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0B1220;
  color: white;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0B1220;
  padding: 15px 30px;
  position: sticky;
  top: 0;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #ccc;
}

nav a:hover {
  color: #fff;
}

.contact-btn {
  background: #fbbf24;
  color: #0B1220 !important;
  padding: 8px 15px;
  border-radius: 20px;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero {
  position: relative;
  height: 100vh; /* penuh layar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  background: url("images/hero-bg1.png") no-repeat center center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* overlay biar teks jelas */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}


.hero h1 {
  font-size: 40px;
  font-weight: bold;
}

.hero span {
  color: #fbbf24;
}

.hero-buttons {
  margin-top: 20px;
}

.btn-primary {
  background: #fbbf24;
  color: #0B1220;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
  max-width: 400px;
  margin: 20px auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
}

.footer {
  background: #0B1220;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 14px;
}

.logo img {
  height: 200px; /* bisa atur 35px / 50px sesuai selera */
  width: auto;
  display: block;
}

.brand {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #f5f5f5; /* biar lebih modern */
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 20px; /* jarak antara logo dan teks */
}

/* Wrapper logo + teks */
.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* jarak logo dan teks */
}

/* Style gambar logo */
.logo img {
  width: 128px;
  height: 128px;
  border-radius: 8px;
}

/* Teks logo */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.about-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: #0B1220; /* background gelap biar kotak lebih kontras */
}

.about-box {
  background: #0B1220;
  padding: 40px;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  color: #f1f1f1;
}

.about-box h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcc00; /* warna aksen emas */
}

.about-box p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-item {
  background: #0B1220;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px);
}

.about-item h3 {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.about-item ul {
  padding-left: 20px;
  list-style: disc;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* default navbar style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0b1320;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* mobile style */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b1320;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Default (desktop) */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.hero-buttons a {
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-buttons a {
    width: 90% !important;
    max-width: 300px;
  }
}

.product-img {
  width: 100%;
  height: 1000px;       /* bisa diubah sesuai selera */
  object-fit: fill;   /* biar proporsional */
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Styling untuk kolom produk */
.product-card {
  color: #fff;                /* teks putih */
  text-align: left;           /* rata kiri */
  font-family: "Arial", sans-serif; /* font tegas */
  font-weight: 600;           /* tebal */
  padding: 20px;
  border-radius: 10px;
  background: #1e1e2f;        /* biar kontras */
}

/* Judul produk */
.product-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* List produk */
.product-card ul {
  list-style-type: disc;  /* bullet normal */
  margin-left: 20px;      /* jarak kiri bullet */
  padding-left: 10px;
}

/* Link dalam produk */
.product-card a {
  color: #fff;                 /* putih */
  text-decoration: none;       /* hilangkan underline */
  font-weight: 500;
}

.product-card a:hover {
  color: #ffcc00;              /* kuning saat hover */
  text-decoration: underline;  /* muncul underline pas hover */
}

.heritage-section {
  padding: 60px 20px;
  background: #111;
  color: #fff;
}

.heritage-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.heritage-item {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.heritage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.heritage-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.about-grid-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.about-grid-images .about-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.about-grid-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-grid-images img:hover {
  transform: scale(1.08);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.card {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #fff;
}
