.video-section h2 {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: bold;
}
.video-section video {
  border: 3px solid #ffd700;
  border-radius: 10px;
}

.product-card h5 {
  font-size: 1rem;  /* lebih kecil */
  font-weight: 600;
}
.product-card p {
  font-size: 0.85rem; /* deskripsi lebih kecil */
}
.product-card .card-body {
  padding: 12px;
}
.social-icons a {
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #fff176 !important;
}
.social-icons a {
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700 !important;
}
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  color: #fff !important;
}
/* Floating WhatsApp */
.wa-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 90px; /* agak naik biar tidak tabrakan dengan tombol call */
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Floating Call */
.call-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #ffc107;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.call-float:hover {
  transform: scale(1.1);
  background-color: #e0a800;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}

.text-gold {
  color: #d4af37;
  font-weight: bold;
}

/* Card produk elegan */
.product-card {
  background: #111;
  color: #fff;
  border: 1px solid #d4af37;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card img {
  border-radius: 15px 15px 0 0;
  transition: transform 0.5s ease;
}

/* Hover efek */
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.product-card:hover img {
  transform: scale(1.1);
}

/* Harga dengan warna emas */
.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d4af37;
  margin: 10px 0;
}
.text-gold {
  color: #d4af37;
  font-weight: bold;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #d4af37;
  border-radius: 50%;
  padding: 10px;
}

.carousel-item {
  transition: transform 1s ease-in-out, opacity 0.8s ease-in-out;
}
.navbar {
  border-bottom: 1px solid #d4af37;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 1px;
}
#hero {
  padding-top: 200px; /* jarak dari header */
}
/* Biar konten tidak tertutup navbar */
body {
  padding-top: 80px; /* tinggi navbar */
}

.hero-section {
  margin-top: 20px; /* jarak tambahan antara header dan hero */
}
.navbar {
 /* background-color: #d000 !important; /* emas klasik */
  background: linear-gradient(90deg, #111 0%, #333 100%) !important;

}

/* Navbar awal transparan */
.navbar {
  background: transparent;
  transition: background-color 0.6s ease, box-shadow 0.6s ease;
}

.navbar .nav-link {
  color: #fff !important; /* teks putih saat transparan */
  font-weight: 500;
}

.navbar .brand-text {
  color: #fff !important; /* logo/brand putih saat transparan */
}

/* Navbar saat discroll berubah jadi emas */
.navbar.scrolled {
  background-color: #d4af37 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .brand-text {
  color: #000 !important; /* teks hitam biar kontras di atas emas */
}

.navbar.scrolled .nav-link:hover {
  color: #fff !important;
}
/* Efek animasi */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled .brand-text,
.navbar.scrolled .nav-link {
  animation: fadeInDown 0.6s ease forwards;
}

/* Efek hover glow emas */
.navbar .nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 5px #ffd700,
               0 0 10px #ffd700,
               0 0 20px #ffec8b;
  transition: all 0.3s ease-in-out;
}

/* Logo glow saat hover */
.navbar .brand-text:hover {
  color: #fff !important;
  text-shadow: 0 0 5px #ffd700,
               0 0 15px #ffd700,
               0 0 25px #ffec8b;
  transition: all 0.3s ease-in-out;
}
.contact-section {
  background: #000; 
}

.text-gold {
  color: #d4af37 !important;
}

.btn-gold {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  border: none;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #bfa133;
  color: #fff;
}

.contact-form {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid #d4af37;
}
.contact-section {
  background: #000;
}

.text-gold {
  color: #d4af37 !important;
}

.btn-gold {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  border: none;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #bfa133;
  color: #fff;
}

.contact-form {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid #d4af37;
}
/* Hover glow untuk ikon sosial */
.contact-section .d-flex a {
  transition: all 0.3s ease-in-out;
}

.contact-section .d-flex a:hover {
  color: #ffd700 !important; /* emas cerah */
  text-shadow: 0 0 5px #ffd700,
               0 0 10px #ffd700,
               0 0 20px #ffec8b;
  transform: scale(1.2); /* sedikit membesar */
}
/* Hover glow untuk ikon kontak (alamat, telepon, email) */
.contact-section p i {
  transition: all 0.3s ease-in-out;
}

.contact-section p i:hover {
  color: #ffd700 !important; /* emas cerah */
  text-shadow: 0 0 3px #ffd700,
               0 0 6px #ffd700,
               0 0 12px #ffec8b;
  transform: scale(1.1); /* sedikit membesar */
}

.contact-section {
  background: #000;
}

.text-gold {
  color: #d4af37 !important;
}

.form-title, .info-title {
  font-weight: 700;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
  color: #d4af37;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid #d4af37;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  background-color: #111;
  border: 1px solid #444;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 5px #d4af37;
}

/* Hover glow ikon sosial */
.info-maps .d-flex a {
  transition: all 0.3s ease-in-out;
}

.info-maps .d-flex a:hover {
  color: #ffd700 !important;
  text-shadow: 0 0 5px #ffd700,
               0 0 10px #ffd700,
               0 0 20px #ffec8b;
  transform: scale(1.2);
}

/* Hover glow ikon kontak */
.info-maps p i {
  transition: all 0.3s ease-in-out;
}

.info-maps p i:hover {
  color: #ffd700 !important;
  text-shadow: 0 0 3px #ffd700,
               0 0 6px #ffd700,
               0 0 12px #ffec8b;
  transform: scale(1.1);
}

/* Google Maps border emas */
.info-maps iframe {
  border: 2px solid #d4af37;
  border-radius: 8px;
}

/* Flex seimbang form & info-maps */
.contact-section .row > div {
  display: flex;
}

.contact-form-wrapper, .info-maps {
  flex: 1 1 auto; /* tinggi menyesuaikan */
}
.footer-section {
  background-color: #000;
}

.border-gold {
  border-color: #d4af37 !important;
}

.footer-links a {
  color: #d4af37;
  transition: 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.footer-social a {
  transition: all 0.3s ease-in-out;
}

.footer-social a:hover {
  color: #ffd700;
  transform: scale(1.2);
}
/* Hero Section */
.hero-section {
  height: 70vh; /* sebelumnya 100vh, sekarang lebih pendek */
  background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .hero-section {
    height: auto; /* biar menyesuaikan konten */
    padding: 4rem 1rem;
  }
}

/*.hero-section {
  height: 100vh;
  background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* Overlay untuk gelapkan background */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
} 



/* Konten hero di atas overlay */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeSlideIn 1.5s ease-out forwards;
}

/* Judul dengan glow animasi */
.welcome-title {
  font-size: 3rem;
  font-weight: 700;
  animation: glowText 2s ease-in-out infinite alternate;
  margin-bottom: 1rem;
}

/* Subtitle / deskripsi */
.hero-content p {
  font-size: 1.25rem;
}

/* Tombol hero */
.btn-gold {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #ffd700;
  color: #000;
  transform: scale(1.05);
}

/* Animasi fade-in + slide */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animasi glow teks */
@keyframes glowText {
  0% {
    text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37;
  }
  100% {
    text-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700;
  }
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
