* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
}

/* === NAVBAR === */
.navbar {
  width: 100%;
  background: #fdfdfd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 30px;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* === LEFT (LOGO) === */
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, gold, #e5e5e5);
  border-radius: 14px;
  box-shadow:
    4px 4px 10px rgba(0,0,0,0.1),
    -4px -4px 10px rgba(255,255,255,0.9),
    inset 1px 1px 3px rgba(255,255,255,0.6),
    inset -2px -2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-2px);
  box-shadow:
    6px 6px 14px rgba(0,0,0,0.15),
    -4px -4px 12px rgba(255,255,255,0.9),
    inset 1px 1px 3px rgba(255,255,255,0.5),
    inset -2px -2px 5px rgba(0,0,0,0.05);
}

.logo-box img {
  height: 48px;
  width: auto;
}
/* === CENTER BRAND === */
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  background: linear-gradient(145deg, #bfa46f, #fff6da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.1),
    -1px -1px 2px goldenrod;
  transition: all 0.3s ease;
}

.brand-name:hover {
  transform: translateY(-2px);
  text-shadow:
    3px 3px 6px rgba(0,0,0,0.15),
    -2px -2px 3px rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

/* === RIGHT MENU === */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #a68d5a;
}

/* === DROPDOWN === */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #444;
}

.dropdown-menu li a:hover {
  background: #f3f3f3;
  color: #a68d5a;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #444;
  margin: 4px 0;
  border-radius: 5px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .navbar-center {
    order: 1;
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    display: none;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
}

/* === BANNER === */
.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-in-out;
}

.banner:hover .banner-image {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.45));
}

/* Text di atas gambar */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.3s forwards;
}

/* === Title Shine Effect === */
.banner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(
    120deg,
    #fff6d1 0%,
    #c8a64a 30%,
    #f3e7b5 45%,
    #fff6d1 60%,
    #c8a64a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  animation: goldShine 6s linear infinite;
}

.banner-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(145deg, #c8a64a, #f1dc91);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 16px rgba(0,0,0,0.3);
}

/* === Animations === */
@keyframes goldShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* Gambar banner menyesuaikan penuh layar */
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* tampil penuh tanpa ruang kosong */
  object-position: center;
}

/* Perbaikan untuk layar kecil agar tidak terpotong parah */
@media (max-width: 768px) {
  .banner {
    height: 75vh;
  }
  .banner-image {
    object-fit: contain; /* di HP, tampil utuh walau ada sedikit ruang */
    background-color: #fdf9f9; /* warna lembut di pinggir */
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .banner {
    height: 70vh;
  }
  .banner-title {
    font-size: 30px;
  }
  .banner-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* === PROMO SECTION === */
.promo {
  background: #fff9f0;
  padding: 60px 40px;
  text-align: center;
}

.promo-title {
  font-size: 36px;
  color: #b89237;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.promo-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.promo-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.label-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(45deg, #f6d365, #fda085);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.promo-item h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  color: #333;
}

.btn-order {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #c8a64a, #f1dc91, #c8a64a);
  background-size: 200% auto;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  animation: shine 3s linear infinite;
}

.btn-order:hover {
  transform: translateY(-3px);
}

/* === Animasi kilau tombol === */
@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* === Animasi fade-up === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .promo-item img {
    height: 150px;
  }
  .promo-title {
    font-size: 24px;
  }
}
/* === Efek Fade-Up Berurutan (Staggered) === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efek delay untuk tiap item promo */
.promo-item:nth-child(1) { animation-delay: 0.1s; }
.promo-item:nth-child(2) { animation-delay: 0.2s; }
.promo-item:nth-child(3) { animation-delay: 0.3s; }
.promo-item:nth-child(4) { animation-delay: 0.4s; }
.promo-item:nth-child(5) { animation-delay: 0.5s; }
.promo-item:nth-child(6) { animation-delay: 0.6s; }
.promo-item:nth-child(7) { animation-delay: 0.7s; }
.promo-item:nth-child(8) { animation-delay: 0.8s; }
.promo-item:nth-child(9) { animation-delay: 0.9s; }
.promo-item:nth-child(10) { animation-delay: 1.0s; }
.promo-item:nth-child(11) { animation-delay: 1.1s; }
.promo-item:nth-child(12) { animation-delay: 1.2s; }

/* Tambahkan efek melayang lembut */
.promo-item:hover img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* === ABOUT SECTION === */
.about-section {
  background: #f8f6f2;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #c8a64a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(145deg, #c8a64a, #f1dc91);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 16px rgba(0,0,0,0.3);
}
.about-content span {
  color: #d4af37;
}

.about-content a {
  color: #c8a64a;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-content a:hover {
  color: #b28e2f;
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content h2 {
    font-size: 26px;
  }
  .about-content p {
    font-size: 15px;
  }
}

/* === ORDER SECTION === */
.order-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fff, #f8f8f8);
  text-align: center;
}

.order-container {
  max-width: 750px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.order-title {
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 10px;
}

.order-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
textarea {
  flex: 1;
  min-width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .form-group input,
  .form-group select {
    min-width: calc(50% - 10px);
  }
}

input:focus, select:focus, textarea:focus {
  border-color: #b99f75;
  box-shadow: 0 0 8px rgba(185,159,117,0.4);
}

/* Tombol WhatsApp Berkilau */
.btn-whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp span {
  position: relative;
  z-index: 2;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-whatsapp:hover::before {
  left: 120%;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}
/* === TESTIMONI SECTION === */
.testimoni-section {
  background: #fffdf9;
  padding: 80px 20px;
  text-align: center;
}

.testimoni-title {
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 10px;
}

.testimoni-subtitle {
  color: #777;
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.testimoni-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimoni-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimoni-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 50px;
  height: 100%;
  background: rgba(255, 215, 150, 0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.testimoni-card:hover::before {
  left: 120%;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.testimoni-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.testimoni-card h4 {
  font-weight: 600;
  color: #b99f75;
  font-size: 0.95rem;
}
/* === FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* === AREA LAYANAN (MINIMALIS) === */
.area-layanan {
  text-align: center;
  padding: 50px 20px 40px;
  background: #fdfdfd;
  border-top: 1px solid #eee;
}

.area-layanan h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #b99f75;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.area-layanan p {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 700px;
  margin: 0 auto;
}

.area-grid a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
}

.area-grid a:hover {
  background: #b99f75;
  color: #fff;
  border-color: #b99f75;
  transform: translateY(-2px);
}

/* === FOOTER SECTION === */
.footer-section {
  background: linear-gradient(180deg, #fff, #f8f8f8);
  padding: 60px 20px 30px;
  color: #444;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #b99f75;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #555;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b99f75;
}

.footer-contact a {
  color: #b99f75;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e6e6e6;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #666;
}

.footer-bottom a {
  color: #b99f75;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* === FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* === HERO BANNER SECTION (Versi Tengah Fix) === */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* penuh layar */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 90%;
  max-width: 700px;
  line-height: 1.3;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  display: inline-block;
}

/* Tombol Order Sekarang */
.order-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, #d4af37, #f8e58c);
  color: #000;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: glowPulse 2s infinite alternate;
  cursor: pointer;
}

.order-btn:hover {
  transform: scale(1.07);
}

/* Efek berkilau */
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px #d4af37, 0 0 20px #f8e58c; }
  100% { box-shadow: 0 0 25px #f8e58c, 0 0 40px #fff8b3; }
}

/* Responsif */
@media (max-width: 768px) {
  .hero-banner {
    height: 75vh;
    object-fit: contain;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .order-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

body {
  margin: 0;
  padding: 0;
}

.navbar {
  z-index: 100;
}

.hero-banner {
  margin-top: 80px; /* sesuaikan dengan tinggi navbar kamu */
}
/* === NAVBAR FIX & HAMBURGER RESPONSIVE === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-box img {
  height: 50px;
  width: auto;
}

.navbar-center h1 {
  font-size: 50px;
  font-weight: 700;
  color: #b38b00;
  text-align: center;
  margin: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #b38b00;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  white-space: nowrap;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #222;
}

.dropdown-menu a:hover {
  background-color: #f3f3f3;
  color: #b38b00;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #222;
  transition: 0.3s;
}

/* === RESPONSIVE MODE === */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar-center h1 {
    font-size: 30px;
  }
}
