/* Styles Khusus Rumah Hub Platform - Elegant White & Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --primary-emerald: #0F3A2C;
  --primary-emerald-light: #185944;
  --accent-gold: #C29B38;
  --accent-gold-light: #DFB755;
  --bg-page: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F8FAFC;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-page);
  color: #1E293B;
}

.font-serif-title {
  font-family: 'Playfair Display', serif;
}

/* Glassmorphism White Navbar */
.glass-nav-white {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
}

/* Custom Badges */
.badge-gold {
  background: #FEF3C7;
  color: #854D0E;
  border: 1px solid #FCD34D;
}

.badge-emerald {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

/* Card Hover Animations */
.card-hover {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(15, 58, 44, 0.08), 0 8px 10px -6px rgba(15, 58, 44, 0.04);
  border-color: #CBD5E1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Modal Overlay */
.modal-overlay {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(5px);
}

/* Progress Bar Soft Glow */
.progress-glow {
  box-shadow: 0 0 10px rgba(194, 155, 56, 0.35);
}
