@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #2E7D32;
  --accent: #81C784;
  --secondary: #1976D2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(ellipse at 10% 0%, rgba(46, 125, 50, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(25, 118, 210, 0.02) 0%, transparent 45%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
}

/* Glassmorphism card - Premium Light */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(226, 232, 240, 0.5);
}

/* Primary button - Luxury Dark */
.btn-primary {
  display: inline-flex;
  items-center: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #0f172a;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 25px -5px rgba(203, 213, 225, 1);
}

.btn-primary:hover {
  background-color: #2E7D32;
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -5px rgba(203, 213, 225, 1);
}

/* Secondary button - Warm Accent */
.btn-secondary {
  display: inline-flex;
  items-center: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #10b981;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 25px -5px rgba(209, 250, 229, 1);
}

/* Custom scrollbar - Minimalist */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
  background: #E2E8F0;
  border-radius: 10px;
  border: 2px solid #F8FAFC;
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}
