/* CSS custom properties */
:root {
  --color-bg: #0A0A0A;
  --color-primary: #C9A96E;
  --color-text: #FFFFFF;
}

/* Reset Dasar */
* {
  box-sizing: border-box;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  
  /* scrollbar-none utilities untuk Webkit dan non-Webkit */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

/* Font-face mapping */
.font-sans, body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-serif, h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

/* Utility Class Tambahan */
.text-balance {
  text-wrap: balance;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

/* Scroll Line Animation */
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.animate-scroll-line {
  animation: scrollLine 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ─── Phone Mockup (Showcase) ──────────────── */
.phone-mockup-sm {
  width: 180px;
  height: 360px;
  border: 6px solid #1A1A1A;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,169,110,0.08);
  background: #000;
  flex-shrink: 0;
  transition: box-shadow 0.5s, transform 0.5s;
}

.phone-mockup-sm::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #1A1A1A;
  border-radius: 2px;
  z-index: 10;
}

.phone-mockup-sm iframe {
  width: 375px;
  height: 812px;
  transform: scale(0.48);
  transform-origin: top left;
  pointer-events: none;
  border: none;
}

/* ─── Color Swatch ─────────────────────────── */
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.2s;
}
.color-dot:hover {
  transform: scale(1.3);
}

/* ─── Coming Soon Badge ────────────────────── */
.badge-soon {
  background: rgba(201,169,110,0.12);
  color: var(--color-primary);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(201,169,110,0.25);
}

