* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}


body {
  background: #f7f4ec;
  color: #3f3a32;
}

.btn {
  padding: 10px 18px;
  border: none;
  background: #b5ad8a;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #f7f4ec;
}

.navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu-toggle {
  display: none;
}

.hero {
  background: #dedac9;
  padding: 40px 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 100px);
  gap: 60px;
}

.hero-text h2 {
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-text p {
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  /*3DBase*/
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  -webkit-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -moz-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -ms-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -o-transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover effect */
.hero-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.22), 0 20px 30px rgba(0, 0, 0, 0.12);
}

section {
  padding: 80px;
}

.tag {
  display: inline-block;
  background: #c7c2a3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 16px;
}

.our-story {
  padding: 100px 80px;
  background: #ffffff;
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.story-tag {
  display: inline-block;
  background: #cfd6c3;
  color: #3f3a32;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 16px;
  margin-bottom: 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.story-text {
  max-width: 460px; /* batasi lebar teks */
}

.story-text h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 28px;
}

.story-desc {
  font-size: 15px;
  line-height: 1.9; /* bikin lebih airy */
  color: #6b665d;
  margin-bottom: 22px; /* jarak antar paragraf */
}

.story-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: #cfd6c3;
  color: #3f3a32;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/* RIGHT CARD */
.story-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.story-card {
  background: linear-gradient(145deg, #dedede, #cfcfcf);
  padding: 40px;
  min-height: 420px;
  border-radius: 24px;
  width: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.feature {
  background: #f7f6f2;
  border-radius: 18px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.feature .icon {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #5f5a52;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-card {
    width: 100%;
  }
}

.our-collection {
  padding: 100px 80px;
  background: #f7f4ec;
}

.collection-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.collection-tag {
  display: inline-block;
  background: #cfd6c3;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.collection-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #3f3a32;
}

.collection-subtitle {
  font-size: 14px;
  color: #8a857c;
  margin-bottom: 60px;
}

/* GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -moz-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -ms-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -o-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  /*rasiocardelegan*/
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 16px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* potong rapi, tidak gepeng */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.product-info h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-info span {
  font-size: 12px;
  color: #a3a096;
}

.price {
  margin-top: 8px;
  font-weight: 600;
  color: #3f3a32;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

.our-process {
  padding: 100px 80px;
  background: #ffffff;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TAG */
.process-tag {
  display: inline-block;
  background: #cfd6c3;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 16px;
  margin-bottom: 16px;
}

/* TITLE */
.process-title {
  font-size: 34px;
  margin-bottom: 70px;
  color: #3f3a32;
}

/* STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* STEP ITEM */
.process-step {
  text-align: center;
  max-width: 240px;
  margin: auto;
}

.step-number {
  font-size: 22px;
  color: #c7c2a3;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

/* ICON BULAT */
.step-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  background: #a6ad8a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* TEXT */
.process-step h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #3f3a32;
}

.process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #8a857c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 100px 80px;
  background: #f7f4ec;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TAG */
.testimonials-tag {
  display: inline-block;
  background: #cfd6c3;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* TITLE */
.testimonials-title {
  font-size: 34px;
  margin-bottom: 60px;
  color: #3f3a32;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
}

/* STARS */
.stars {
  color: #e0b973;
  font-size: 14px;
  margin-bottom: 14px;
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: #6b665d;
  margin-bottom: 26px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #cfd6c3;
  color: #3f3a32;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user strong {
  display: block;
  font-size: 13px;
}

.testimonial-user span {
  font-size: 12px;
  color: #9a968d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #5a4634;
  color: #f3f1ec;
  padding: 80px 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 16px;
  color: #d6d1c8;
}

/* TITLES */
.footer h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: #d6d1c8;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-size: 13px;
  margin-bottom: 10px;
  color: #d6d1c8;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.social-icons {
  display: flex; /* KUNCI */
  flex-direction: row; /* PAKSA KE SAMPING */
  gap: 12px;
}
/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
}
/* ===============================
   NAVBAR ACTIVE LINK
   =============================== */

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar ul li a.active {
  color: #8b6f4e;              /* warna saat diklik */
  border-bottom: 2px solid #8b6f4e;
}

/* ===============================
   HERO MOBILE FIX
   =============================== */
@media (max-width: 768px) {
  .hero {
    padding: 10px 0 28px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .hero-content {
    grid-template-columns: 1fr; /* satu kolom */
    gap: 32px;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h2 {
    font-size: 30px; /* lebih proporsional */
    line-height: 1.25; /* rapat tapi nyaman */
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 24px;
    color: #5f5a52; /* sedikit lebih soft */
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    /*kontrollebar*/
    aspect-ratio: 3 / 4;
    /*KUNCI*/
    height: auto;
    /*biarikutrasio*/
    object-fit: cover;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
  }
}

/* ===============================
   MOBILE NAVBAR SIMPLIFIED
   =============================== */
@media (max-width: 768px) {
  .navbar {
    justify-content: center; /* logo di tengah */
  }

  .navbar ul,
  .navbar .btn {
    display: none; /* sembunyikan menu & order now */
  }

  .navbar .logo {
    font-size: 24px; /* opsional: sedikit diperbesar */
  }
}
