body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: white;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  border-bottom: 1px solid #222;
}

header h1 {
  color: #d4af37;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 40px;
}

.hero span {
  color: #d4af37;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #d4af37;
  color: black;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #b8962e;
}

/* Section */
section {
  padding: 60px 50px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Card */
.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #d4af37;
}

/* Animasi */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
}
/* ===================== */
/* RESPONSIVE DESIGN */
/* ===================== */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 768px) {

  header {
    padding: 20px;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0f0f0f;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  nav a {
    display: block;
    padding: 15px;
    border-top: 1px solid #222;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 28px;
  }

  section {
    padding: 40px 20px;
  }
}

/* Mobile kecil */
@media (max-width: 480px) {

  .hero h2 {
    font-size: 24px;
  }

  .btn {
    padding: 8px 20px;
  }

  .card {
    padding: 15px;
  }

}
/* Logo + Nama */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-container h1 {
  color: #d4af37;
  font-size: 20px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Wrapper biar bisa crop */
.logo-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  border: 2px solid #d4af37; /* biar premium */
}

/* Ini kuncinya */
.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Fokus ke tengah atas (biar watermark bawah hilang) */
  object-position: center 30%;
}