@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: #fff;
  color: #333;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  z-index: 9999;
}

.logo {
  font-weight: 600;
}

.menu-btn {
  font-size: 24px;
  cursor: pointer;
}

/* MENU DROPDOWN */
.menu {
  position: fixed;
  top: 70px;
  right: 20px;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.3s;
}

.menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
}

.menu a:hover {
  background: #f5f5f5;
}

/* HERO */
.hero {
  margin-top: 10px;
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffd6e0, #ffeef3);
}

.hero h1 {
  font-size: 32px;
}

.hero p {
  margin-top: 10px;
}

.profile {
  width: 120px;
  transition: 0.3s;
}

.btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 25px;
  background: #A0C888;
  color: white;
  border-radius: 30px;
  text-decoration: none;
}

/* SECTION */
.section {
  padding: 60px 20px;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 160px));
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  max-width: 250px;
}

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

.card img {
  width: 100%;
  border-radius: 10px;
}

/* BUTTON WA */
.wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  text-decoration: none;
  
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

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

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 15px;
  color: #777;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99999;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 20px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content img {
  width: 100%;
  border-radius: 15px;
}

.modal-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.anime {
  color: #777;
  margin-bottom: 10px;
}

.price {
  background: #F2C2CE;
  color: #345;
  padding: 8px;
  border-radius: 10px;
  margin: 10px 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  width: fit-content;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* bullet */
.detail-list li::before {
  content: "✦";
  color: #ff9ecb;
  font-size: 14px;
  width: 10px;
  text-align: center;
}

.note-list {
  margin-top: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}

.gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 10px;
}

.gallery img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  flex-shrink: 0;
}

.about-text p {
  margin-top: 10px;
}