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

:root {
  --bg: #0a0a10;
  --bg-2: #12121c;
  --gold: #d4af37;
  --gold-light: #f0d98c;
  --cream: #f5f0e6;
  --muted: #a8a3b0;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Partikel ===== */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.particles span {
  position: absolute; bottom: -10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: translateY(-105vh); opacity: 0; }
}

/* ===== HERO ===== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 90px 20px 70px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 90%, rgba(120,90,30,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.hero-inner { text-align: center; max-width: 820px; animation: fadeUp 1s ease both; }

.badge {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(212,175,55,0.4);
  padding: 8px 20px; border-radius: 999px; background: rgba(212,175,55,0.07);
}

.title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 700; line-height: 1.12; margin-top: 26px;
  background: linear-gradient(180deg, #fff, var(--gold-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.title-accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.ornament { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 26px 0; color: var(--gold); }
.ornament span { display: block; height: 1px; width: 90px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament.small span { width: 60px; }

.date { font-size: 1.5rem; letter-spacing: 2px; color: var(--cream); font-weight: 500; }
.tagline { margin: 14px auto 0; max-width: 520px; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ===== Countdown ===== */
.countdown {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  margin: 44px 0 40px; flex-wrap: wrap;
}
.cd-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px; min-width: 82px; padding: 18px 12px;
  backdrop-filter: blur(6px);
}
.cd-num {
  display: block; font-size: 2.4rem; font-weight: 600; color: var(--gold-light);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.cd-label { display: block; margin-top: 8px; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.cd-sep { font-size: 2rem; color: var(--gold); opacity: 0.6; }

/* ===== Tombol ===== */
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all .25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8962e);
  color: #1a1408; box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(212,175,55,0.45); }
.btn-ghost { border: 1px solid rgba(212,175,55,0.4); color: var(--gold-light); }
.btn-ghost:hover { background: rgba(212,175,55,0.1); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--gold); text-decoration: none; font-size: 1.1rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ===== Section umum ===== */
.section-inner { max-width: 900px; margin: 0 auto; padding: 80px 22px; text-align: center; }
.kicker { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
h2 { font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 2.8rem); margin-top: 14px; font-weight: 600; }
.lead { margin: 20px auto 0; max-width: 640px; color: var(--muted); font-weight: 300; line-height: 1.8; }

/* ===== About ===== */
.about { position: relative; z-index: 1; background: var(--bg-2); border-top: 1px solid rgba(212,175,55,0.12); }

/* ===== Detail ===== */
.detail { position: relative; z-index: 1; background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 42px; }
.card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 18px; padding: 30px 22px; transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.5); }
.card-icon { font-size: 2rem; }
.card h3 { margin: 14px 0 8px; font-family: var(--serif); font-size: 1.2rem; color: var(--gold-light); }
.card p { color: var(--muted); line-height: 1.6; font-weight: 300; }
.map-btn { margin-top: 40px; }

/* ===== Footer ===== */
.footer { position: relative; z-index: 1; background: var(--bg-2); border-top: 1px solid rgba(212,175,55,0.12); }
.footer .section-inner { padding: 60px 22px; }
.footer-title { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-light); margin-top: 14px; }
.footer-sub { color: var(--muted); margin-top: 8px; font-weight: 300; }

/* ===== Animasi ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
