body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

nav {
  background: #1da0e0;
  color: white;
  padding: 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 10px;
}

nav .logo {
  font-size: 20px;
  font-weight: bold;
}

nav .menu {
  display: none;
  flex-direction: column;
  background: #444;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
}

nav .menu a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
}

nav .menu a:hover {
  background: #555;
}

.navbar h2 {
  margin: 0;
  font-size: 20px;
  line-height: 60px;
  color: #fff;
}

/* Hamburger icon */
.hamburger {
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
  position: absolute;
  left: 0;
  width: 100%;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}

/* Welcome text */
.welcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  text-align: center;
}

.welcome h1 {
  font-size: 32px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

/* Paragraf Penyedia */
.welcome p {
  font-size: 22px;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 9px;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-align: center;
}

.SELAMAT {
  color: #FFBC4C;
  margin-right: 10px;
}

.DATANG {
  color: #1da0e0;
}

/* Paragraf tambahan */
.welcome .tagline {
  font-size: 16px;
  color: #555;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-align: justify;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #FFBC4C;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
}

.product-card .price {
  font-size: 16px;
  color: #E43636;
  margin-bottom: 12px;
}

.order-btn {
  display: inline-block; 
  background: #1da0e0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.order-btn:hover {
  background: #1da0e0;
}

.see-more {
  text-align: center;
  margin-top: 20px;
}

.see-more-btn {
  display: inline-block;
  background: #2ab540;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.see-more-btn:hover {
  background: #2ab540;
}

.category-section {
  text-align: center;
  margin: 70px auto 60px; /* atas 60px, kanan-kiri auto, bawah 40px */
  max-width: 800px;
  padding: 0 20px;
}

.category-section h2 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.category-line {
  border: none;
  border-top: 2px solid #1da0e0;
  margin: 15px auto 25px;
  width: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  column-gap: 20px; /* jarak antar kolom */
  row-gap: 30px;    /* jarak antar baris lebih jauh */
}

.category-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* bayangan default */
}

.category-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.category-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* bayangan lebih tebal saat hover */
}

.faq {
  background: #FFBC4C;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
  margin-bottom: 5px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1da0e0;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

/* Testimoni */
.testimoni {
  padding: 40px 20px;
  text-align: center;
  margin-top: 5px;
}

.testimoni h2 {
  margin-bottom: 30px;
}

.testimoni-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimoni-item {
  flex: 1 1 calc(50% - 20px);
  max-width: 300px;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #FFBC4C;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background: none;
}

.testimoni-item:nth-child(3) {
  flex: 1 1 100%;
  max-width: 300px;
  margin: 0 auto;
}

.testimoni-item h4,
.testimoni-item span {
  color: #1da0e0;
  font-weight: bold;
}

.avatar {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Statistik Simpel */
.stats-simple {
  text-align: center;
  margin: 20px auto 55px auto;
  max-width: 900px;
  padding: 0 20px;
}

.stats-simple p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

/* Background popup */
.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* Konten iklan */
.popup-content {
  background: #1da0e0;
  border-radius: 12px;
  position: relative;
  padding: 5px;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.4s ease;
}

/* Gambar iklan */
.popup-img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Tombol close */
.close-btn {
  position: absolute;
  top: 1px;
  right: 12px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}

/* Sembunyikan default */
.hidden {
  display: none !important;
}

.info-button {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;       /* ukuran tombol */
  height: 50px;
  display: block;
  z-index: 9999;
}

.info-button img {
  width: 100%;          /* sesuai dengan size tombol */
  height: 100%;         /* sesuai dengan size tombol */
  max-width: 100%;      /* jangan melebihi tombol */
  max-height: 100%;
  object-fit: contain;   /* jaga proporsi gambar */
  border-radius: 50%;    /* jika ingin bundar */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Tombol WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

/* Checkbox hack */
#menu-toggle {
  display: none;
}

#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

#menu-toggle:checked ~ .menu {
  display: flex;
}

@media(min-width: 768px) {
  .hamburger {
    display: none;
  }
  nav .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
  }
  nav .menu a {
    padding: 10px 15px;
  }
}

.footer {
  background: #0ea5e9; /* abu-abu terang */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 25px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.footer-left h3 {
  margin: 0;
  font-size: 1.4rem;
}

.footer-left p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

.footer-right p {
  margin: 0 0 5px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Sosial media: kotak agak rounded */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  background: #fff; /* abu-abu */
  border-radius: 8px;  /* agak membulat */
  transition: transform 0.3s, background 0.3s;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: #d1d5db; /* biru saat hover */
}

/* Garis pemisah */
.footer-separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .social-icons a {
    margin: 5px;
  }
    }
