* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fcf8f8;
  color: #000;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  height: 80px;
  background-color: #fcf8f8;
}
nav a,
.nav-link {
  position: relative;
  padding: 8px 5px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

nav a:hover,
.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover > .nav-link {
  background-color: rgba(0, 0, 0, 0.08);
}

.logo img {
  height: 70px; /* sesuaikan, jangan lebay */
  width: auto;
  display: block;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
nav {
  display: flex;
  align-items: center;
}

nav > a,
.nav-dropdown {
  margin-left: 30px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  cursor: pointer;
  font-weight: 500;
  color: #000;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 2px solid #000;
  min-width: 160px;
  display: none;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #000000;
  color: #fff;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* HERO */
section,
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("GambarFE/bgtest.png") no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title img {
  width: 700px;
  max-width: 90%;
  height: auto;
  margin-bottom: 20px;
}

.tagline {
  margin-bottom: 30px;
  font-size: 14px;
  color: #fff;
}

.btn-download {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.btn-download:hover {
  background: #000;
  color: #fff;
}
/* ABOUT SECTION */
.about {
  padding: 120px 80px;
  background: linear-gradient(
    180deg,
    #D9EAFD 0%,
    #EAF2FB 45%,
    #F8FAFC 100%
  );
}

.about-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.about-main {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-video iframe {
  width: 100%;
  height: 360px;
  border-radius: 14px;
}

/* TEXT */
.about-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  max-width: 90%;
}

/* RIGHT */
.about-thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thumb img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thumb img:hover {
  transform: scale(1.03);
}
/* MERCHANDISE PAGE */
.merchandise-page {
  padding: 120px 60px;
  background: linear-gradient(
    180deg,
    #D9EAFD 0%,
    #EAF2FB 45%,
    #F8FAFC 100%
  );
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

/* GRID 2 HORIZONTAL */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.merch-card {
  border: 2px solid #000;
  padding: 25px;
  text-align: center;
}

.merch-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.merch-card h3 {
  margin-bottom: 10px;
}

.merch-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* HARGA */
.price {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

/* BUTTON BELI */
.btn-buy {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.btn-buy:hover {
  background: #000;
  color: #fff;
}

/* COMMENT SECTION */
.comment-section {
  padding: 120px 60px;
  background: #f9f9f9;
}

.comment-container {
  max-width: 800px;
  margin: auto;
}

.comment-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* FORM */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}

.comment-form input,
.comment-form textarea {
  padding: 12px 15px;
  border: 2px solid #000;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.comment-form button {
  width: 160px;
  padding: 10px;
  border: 2px solid #000;
  background: transparent;
  font-weight: bold;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.comment-form button:hover {
  background: #000;
  color: #fff;
}

/* COMMENT LIST */
.comment-item {
  border: 2px solid #000;
  padding: 20px;
  background: #fff;
  display: flex;
  gap: 15px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-content h4 {
  margin-bottom: 6px;
  font-size: 15px;
}

.comment-content p {
  font-size: 14px;
  line-height: 1.5;
}

.comment-content small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #555;
}
.comment-grid {
  display: grid; /* atau flex */
  gap: 30px;
}
