:root {
  --pink-main: #ff9ecf;
  --pink-dark: #e35f98;
  --bg-light: #fff7fb;
  --text-main: #333333;
  --text-muted: #777777;
  --radius-lg: 20px;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 251, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-main), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: 0.2s;
}

.nav-links a:hover {
  background: rgba(227, 95, 152, 0.08);
  color: var(--pink-dark);
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 158, 207, 0.15);
  color: var(--pink-dark);
  margin-bottom: 0.8rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink-dark);
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.hero p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-dark));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(227, 95, 152, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: var(--pink-dark);
  color: var(--pink-dark);
}

.hero-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-info span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--pink-dark);
}

.hero-image-wrapper {
  background: radial-gradient(circle at top, #ffd3ec, #f7c0e2, #fbe9f5);
  border-radius: 50%;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  max-width: 340px;
  margin-left: auto;
}

.hero-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe5f4, #f8c6e5);
  position: relative;
  overflow: hidden;
}

.hero-circle::after {
  content: "K";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--pink-dark);
  box-shadow: var(--shadow-soft);
}

/* SECTION – MENU */
.section-title {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.card-title {
  font-weight: 600;
}

.card-tag {
  font-size: 0.78rem;
  color: var(--pink-dark);
  background: rgba(255, 158, 207, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.2rem;
}

.card-price {
  margin-top: 0.2rem;
  font-weight: 600;
  color: var(--pink-dark);
}

/* CONTACT */
.contact-box {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffe7f4, #ffd3ec);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.contact-box strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 1.5rem 0 2rem;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    margin: 1rem auto 0;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-box {
    align-items: flex-start;
  }
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.hero-logo {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  background: white;
  padding: 1rem;
}

