/* Custom styles & utilities for Sentul City Landing Page */

@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;1,600&display=swap');

:root {
  --primary-emerald: #064e3b;
  --secondary-emerald: #047857;
  --accent-gold: #d97706;
  --gold-light: #fef3c7;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Glassmorphism Navigation & Cards */
.glass-nav {
  background: rgba(6, 78, 59, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Hero Gradient Overlay */
.hero-overlay {
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
}

/* Gold Accent Shimmer Effect */
.gold-badge {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

/* Pulse animation for CTA Buttons */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
}

.pulse-wa {
  animation: pulse-subtle 2.5s infinite;
}

/* Floating WhatsApp Badge */
.wa-float-container {
  z-index: 999;
}

/* Modal styling */
.modal-backdrop {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #064e3b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #047857;
}

/* Notification badge ping */
@keyframes ping-slow {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping-slow {
  animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
