/* Global Style */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #dfe9f3, #ffffff);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  max-width: 480px;
  width: 100%;
  padding: 24px;
}

/* Language Switch */
.lang-switch {
  text-align: right;
  margin-bottom: 15px;
}

.lang-switch button {
  padding: 6px 12px;
  margin-left: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #4285F4;
  color: #fff;
  transition: 0.3s;
}

.lang-switch button:hover {
  background: #2a62c9;
}

/* Headings & Text */
h1 {
  font-size: 22px;
  margin: 12px 0;
  color: #222;
  text-align: center;
}

h3 {
  text-align: center;
  margin: 30px 0 15px;
  font-size: 16px;
  color: #444;
}

.logo-inline {
  height: 1em;
  width: auto;
  vertical-align: middle;
}

p {
  line-height: 1.6;
  color: #444;
  font-size: 14px;
}

/* Foto Profil / Logo */
.foto {
  text-align: center;
  margin-top: 10px;
}

.foto img {
  max-width: 120px;
  border-radius: 50%;
  border: 3px solid #eee;
}

/* Deskripsi Singkat */
.shortdesc2 {
  color: #000;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.shortdesc2 ul {
  list-style-type: none;
  padding: 0;
  margin: 12px 0;
  text-align: left;
}

.shortdesc2 ul li {
  padding: 6px 0;
  font-size: 14px;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.checklist li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}


/* Link List (Produk) */
.linklist {
  margin-top: 16px;
}

.linklist a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.5;
  text-align: left;
}

.linklist a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Judul produk */
.linklist a strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* Keterangan produk */
.linklist a small {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  font-weight: normal;
}

/* Coming Soon */
.comingsoon {
  background-color: #9E9E9E !important;
  opacity: 0.85;
  cursor: not-allowed;
  position: relative;
}

.comingsoon span {
  font-size: 12px;
  margin-left: 6px;
  background: #ffc107;
  color: #000;
  padding: 2px 6px;
  border-radius: 6px;
}

/* Responsive Coming Soon Badge */
@media (max-width: 480px) {
  .comingsoon span {
    font-size: 12px;   /* perkecil tulisannya */
    padding: 1px 4px;  /* padding lebih kecil */
  }
}

/* Video Responsive */
.video-container {
  margin: 20px 0;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000; /* biar ada background hitam kalau loading */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 12px;
}

/* CTA Box */
.cta {
  margin-top: 25px;
  padding: 20px;
  background: #f0f9ff;
  border: 1px solid #007BFF;
  border-radius: 12px;
  text-align: center;
}

.cta h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.cta a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: #007BFF;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta a:hover {
  background: #0056b3;
}

/* Back Home Button */
.back-home {
  margin-top: 30px;
  text-align: center;
}

.back-home a {
  display: inline-block;
  padding: 12px 24px;
  background: #444;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.back-home a:hover {
  background: #222;
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 30px;
}
