body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #000000;
  color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #F0E68C;
}

.hero-overlay h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.cta-button {
  background: #F0E68C;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  margin-top: 20px;
  opacity: 0;
}

.cta-button:hover {
  background: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-box {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 8px 20px;
  border-radius: 10px;
}

.nav-left, .nav-right {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a,
.nav-left li a,
.nav-right li a {
  color: #F0E68C;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.nav-links li a::after,
.nav-left li a::after,
.nav-right li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #F0E68C;
  transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-left li a:hover::after,
.nav-right li a:hover::after {
  width: 100%;
}

.logo img {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-box {
  background-color: #000;
  border: 1px solid #F0E68C;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ABOUT SECTION */
.about-section {
  background-color: #000;
  color: #F0E68C;
  padding: 100px 20px;
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section h2 {
  margin-bottom: 40px;
}

.about-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}

/* Gambar kiri */
.about-image-box {
  background-color: #111;
  border: 2px solid #F0E68C;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-box img {
  width: 250px;
  height: auto;
  border-radius: 10px;
}

/* Teks kanan */
.about-text {
  flex: 1;
  font-size: 1.2em;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image-box img {
    width: 80%;
  }
}
/* SERVICES */
#services {
  background-color: #111;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
}

.service-box {
  background-color: #000;
  border: 2px solid #F0E68C;
  border-radius: 10px;
  max-width: 700px;
  margin: 30px auto;
  padding: 20px;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 16px;
}

.service-table th, .service-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F0E68C;
  text-align: left;
}

.service-table th {
  background-color: #1a1a1a;
  color: #F0E68C;
}

.service-table tr:last-child td {
  border-bottom: none;
}

/* TESTIMONIALS */
#testimonials {
  padding: 60px 20px;
  background-color: #000;
  color: #F0E68C;
  text-align: center;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.testimonial-box {
  border: 2px solid #F0E68C;
  border-radius: 10px;
  padding: 10px;
  background-color: #111;
  width: 400px;
  height: 400px;
  overflow: hidden;
}

.testimonial-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons img {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* CONTACT SECTION */
#contact {
  background-color: #111;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
}

.contact-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.contact-left {
  flex: 1;
  min-height: 350px;
}

.contact-left iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.8;
}

.map-container {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.map-container.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-right {
    text-align: center;
  }
}

/* FOOTER */
footer {
  background: #000000;
  color: #F0E68C;
  text-align: center;
  padding: 20px;
}

/* OTHER GLOBAL STYLES */
h1, h2 {
  color: #F0E68C;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

blockquote {
  font-style: italic;
  margin: 20px;
  border-left: 4px solid #F0E68C;
  padding-left: 16px;
  color: #F0E68C;
}

a {
  color: #F0E68C;
}

.cursor {
  display: inline-block;
  animation: blink 0.7s steps(1) infinite;
  font-weight: bold;
  color: #F0E68C;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Asal */
#about-image-box {
  cursor: zoom-in;
  transition: transform 0.4s ease;
  z-index: 1;
  position: relative;
}

/* Gambar dibesarkan */
#about-image-box.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2.5);
  z-index: 9999;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* Blur background bila zoom */
body.zooming::before {
  content: \"\";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Auto-crop untuk HD full */
  z-index: 1;
  filter: brightness(0.5); /* Gelapkan sikit supaya teks lebih jelas */
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #F0E68C;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.cta-button {
  background: #F0E68C;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #fff;
}

#social {
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center; /* ✅ Ini penting */
}

#social h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about-section {
  position: relative;
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* Gambar latar belakang dan kesan blur */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Image/AboutBack.png") no-repeat center center / cover;
  filter: blur(4px) brightness(0.6);
  z-index: 0;
}

.about-section {
  background-color: #000;
  color: #F0E68C;
  min-height: 50vh;
  padding: 100px 20px;
  text-align: center;
}

/* Untuk semua kandungan supaya tidak di belakang blur */
.about-section * {
  position: relative;
  z-index: 1;
}

/* Gambar di atas */
.about-image-box {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.about-image-box img {
  width: 100%;
  max-width: 300px;      /* ✅ Consistent size */
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.about-image-box img:hover {
  transform: scale(1.05);
}

/* Ayat di bawah gambar */
.about-text-box {
  margin: 0 auto;
  max-width: 700px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.about-text {
  font-size: 1.4em;
  line-height: 1.3;
  color: #F0E68C;
  text-align: center;
}

#promo {
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center; /* ✅ Ini penting */
}

/* Shop Section */
#shop {
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
}

/* Baris untuk susun kotak secara mendatar */
.shop-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: nowrap; /* ✅ ini kunci utama — elakkan susun bawah */
  overflow-x: auto;   /* ✅ jika terlalu sempit, boleh scroll ke kanan */
}

/* Kotak Produk */
.shop-box {
  background-color: #111;
  border: 2px solid #F0E68C;
  border-radius: 12px;
  padding: 10px;
  width: 300px;
  flex: 0 0 auto; /* ✅ kekalkan saiz tetap untuk flex item */
  text-align: center;
}

/* Gambar Produk */
.shop-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Kotak Harga */
.price-tag {
  background-color: #F0E68C;
  color: #000;
  padding: 8px 16px;
  margin-top: 12px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 1em;
}

/* Animasi masuk dari bawah + zoom */
.animate-shop {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-shop.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Hover effect kecil */
.shop-box img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}