/* ─── IMLEK THEME TOKENS ─────────────────────────────── */
/* Gold accent for Imlek — blends with sage design system */
:root {
  --imlek-gold: #c9a84c;
  --imlek-gold-light: #e8d08a;
  --imlek-red: #c0392b;
}

/* ─── HERO ───────────────────────────────────────────── */
.imlek-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.imlek-hero__bg {
  position: absolute;
  inset: 0;
}

.imlek-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.imlek-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 34, 28, 0.9) 0%,
    rgba(28, 34, 28, 0.35) 55%,
    rgba(28, 34, 28, 0.05) 100%
  );
}

.imlek-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 7% 8%;
  max-width: 680px;
}

.imlek-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 0.8rem 0 1.4rem;
}

.imlek-hero__title em {
  font-style: italic;
  color: var(--imlek-gold-light);
}

.imlek-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 2.2rem;
}

/* Imlek CTA button — gold themed */
.btn-primary.imlek-btn {
  background: var(--imlek-gold);
}

.btn-primary.imlek-btn:hover {
  background: #a8883d;
}

/* ─── ARTICLE ────────────────────────────────────────── */
.imlek-article {
  background: var(--cream);
}

.imlek-article__inner {
  max-width: 780px;
  margin: 0 auto;
}

.imlek-article__lead p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.imlek-article__prose p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

/* ─── PRODUCTS ───────────────────────────────────────── */
.imlek-products {
  padding-bottom: 5rem;
}

.imlek-product-block {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.imlek-product-block__header {
  margin-bottom: 1.5rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--imlek-gold);
}

.imlek-product-block__name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--charcoal);
}

.imlek-product-block__name em {
  font-style: italic;
  color: var(--imlek-gold);
}

/* Default: 3-col */
.imlek-product-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* 2-col variant */
.imlek-product-block__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
}

.imlek-product-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
  background: var(--stone);
  transition: transform 0.4s var(--ease);
}

.imlek-product-item:hover img {
  transform: scale(1.04);
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.imlek-cta {
  text-align: center;
}

.imlek-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.imlek-cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin: 0.8rem 0 1rem;
}

.imlek-cta__title em {
  font-style: italic;
  color: var(--imlek-gold-light);
}

.imlek-cta__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.imlek-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .imlek-product-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .imlek-product-block__grid--2 {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .imlek-product-block__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.floating-about {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4f6f52; /* bisa sesuaikan */
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-about:hover {
  background-color: #3b5440;
  transform: translateY(-3px);
}
/* =========================
   NAVBAR BASE
========================= */
.nav {
  position: fixed;
}

.nav__right {
  position: relative; /* penting buat anchor dropdown */
}
/* DESKTOP MENU */
.nav__links {
  display: flex;
  gap: 2.5rem;
}

/* HAMBURGER DEFAULT (HIDDEN DI DESKTOP) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* =========================
   MOBILE MENU (FLOATING)
========================= */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 220px;

  background: #2f3e34;
  border-radius: 16px;
  padding: 1.5rem;

  display: flex;
  flex-direction: column;
  gap: 1.2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: all 0.25s ease;

  z-index: 2000;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* =========================
   MENU LINKS
========================= */
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: 0.2s;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

/* =========================
   CLOSE BUTTON
========================= */
.mobile-menu__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
