:root {
  --mbp-brown: #8b5a2b;
  --mbp-brown-dark: #5b3816;
  --mbp-brown-header: #8c5b2f;      /* lebih terang dari footer */
  --mbp-brown-header2: #b27434;     /* gradasi ke warna lebih muda */
  --mbp-cream: #f8f1e7;
  --mbp-cream-light: #fbf6ef;
  --mbp-text: #2f2b26;
  --mbp-accent: #c8102e;            /* merah logo */
}

/* GLOBAL -------------------------------------------------- */
* { box-sizing: border-box; }
body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mbp-text);
  background: #ffffff;
  scroll-behavior: smooth;
}
a { text-decoration: none; }

/* NAVBAR / HEADER ----------------------------------------- */
.navbar {
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  background: linear-gradient(80deg,
              #d9964c,
              #e7ba64) !important;
  backdrop-filter: blur(12px);
}

.mbp-logo {
  height: 32px;
  width: auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff !important;
  letter-spacing: .03em;
  font-size: 1rem;
}

.navbar-brand span:first-child {
  font-weight: 700;
  font-size: .9rem;
}

.navbar-brand span:last-child {
  font-size: .75rem;
  font-weight: 400;
  opacity: .9;
}

.navbar-nav .nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: #fdf5ec !important;
  position: relative;
  padding-bottom: .1rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffe4c2;
  transition: width .2s ease-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}

/* HERO ---------------------------------------------------- */
#home {
  padding-top: 90px;
  background:
    linear-gradient(135deg,
      rgba(139,90,43,.25),
      rgba(248,241,231,.85)),
    url("https://images.pexels.com/photos/245731/pexels-photo-245731.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center/cover fixed;
  position: relative;
  color: #2f251c;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255,255,255,.96),
      rgba(255,255,255,.9),
      rgba(255,255,255,0.7));
}

.hero-inner {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  padding: .2rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(139,90,43,.35);
  background: rgba(248,241,231,.85);
  color: var(--mbp-brown-dark);
  margin-right: .4rem;
  margin-bottom: .4rem;
}

.hero-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--mbp-brown-dark);
}

.hero-sub {
  font-size: .95rem;
  color: #5d5349;
}

.btn-mbp-primary {
  background: var(--mbp-brown-dark);
  color: #fff;
  border-radius: 999px;
  padding: .65rem 1.5rem;
  font-size: .85rem;
  font-weight: 600;
  border: none;
}

.btn-mbp-primary:hover {
  background: var(--mbp-accent);
  color: #fff;
}

.btn-mbp-ghost {
  border-radius: 999px;
  border: 1px solid var(--mbp-brown-dark);
  color: var(--mbp-brown-dark);
  padding: .6rem 1.4rem;
  font-size: .85rem;
  font-weight: 500;
  background: transparent;
}

.btn-mbp-ghost:hover {
  background: var(--mbp-brown-dark);
  color: #fff;
}

.hero-card {
  border-radius: 1rem;
  border: none;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.hero-card-title {
  color: var(--mbp-brown-dark);
}

.stat-pill {
  background: var(--mbp-cream-light);
  border-radius: .8rem;
  padding: .6rem .9rem;
  font-size: .8rem;
  border: 1px solid #eadaca;
  height: 100%;
}

.stat-pill strong {
  display: block;
  color: var(--mbp-brown-dark);
  font-size: 1rem;
}

/* SECTION TITLES ------------------------------------------ */
.section-title h2 {
  color: var(--mbp-brown-dark);
  font-weight: 700;
}
.section-title p {
  font-size: .9rem;
  color: #7a7066;
}

/* ABOUT --------------------------------------------------- */
#about {
  background: var(--mbp-cream-light);
}

.about-card {
  border-radius: 1rem;
  border: none;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.about-title {
  color: var(--mbp-brown-dark);
}

.about-list li {
  margin-bottom: .35rem;
}

/* PRODUK -------------------------------------------------- */
#produk {
  background: #fff;
}

.produk-card {
  border-radius: 1rem;
  border: 1px solid #ebdfd0;
  box-shadow: 0 6px 15px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
}

.produk-card::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: var(--mbp-accent);
  top: 0;
  left: 1.5rem;
}

.produk-card h5 {
  color: var(--mbp-brown-dark);
  font-weight: 600;
}

/* GALLERY ------------------------------------------------- */
#gallery {
  background: var(--mbp-cream);
}

.gallery-img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  height: 220px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  filter: saturate(1.05);
}

.gallery-img:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  filter: saturate(1.2);
}

/* FOOTER -------------------------------------------------- */
footer {
  background: var(--mbp-brown-dark);
  color: #f7eee4;
  font-size: .85rem;
}

footer a {
  color: #ffe1c0;
}

footer a:hover {
  color: #ffffff;
}

/* RESPONSIVE ---------------------------------------------- */
@media (max-width: 768px) {
  #home { padding-top: 85px; }
  .hero-title { font-size: 1.6rem; }
}


/* KONTAK KAMI --------------------------------------------- */
.contact-section {
  background: var(--mbp-cream-light);
  border-top: 1px solid #eadaca;
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.8rem 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-left: 4px solid var(--mbp-accent);
}

.contact-card h5 {
  color: var(--mbp-brown-dark);
}

.contact-card a {
  color: var(--mbp-brown-dark);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}
