/* Muzarks Private Limited - Developer-Grade Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --color-brand: #059669;
  --color-brand-dark: #047857;
  --color-brand-light: #10b981;
  --color-gold: #f59e0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #059669;
}

/* Developer Card Classes */
.dev-card-light {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-card-light:hover {
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.dev-card-dark {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-card-dark:hover {
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-emerald {
  background-color: #059669;
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn-emerald:hover {
  background-color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-gold {
  background-color: #f59e0b;
  color: #0f172a;
  transition: all 0.2s ease;
}

.btn-gold:hover {
  background-color: #d97706;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

/* Text Gradients */
.text-gradient-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Soft Animations */
@keyframes softPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-soft-pulse {
  animation: softPulse 2.5s ease-in-out infinite;
}

/* Nav Active Link */
.nav-link.active {
  color: #059669;
  font-weight: 700;
}

/* Toast */
#dev-toast {
  transition: opacity 0.3s ease, transform 0.3s ease;
}