@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #e67e22;       /* Pumpkin Orange */
  --primary-hover: #d35400;
  --secondary: #2e7d32;     /* Organic Forest Green */
  --secondary-hover: #1b5e20;
  --accent: #f1c40f;        /* Harvest Yellow */
  --dark: #1e293b;
  --light: #f8fafc;
  --sage: #f1f8f5;          /* Light Sage background */
}

body {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--light);
  color: var(--dark);
}

h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

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

/* Custom Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dark {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Custom product hover effects */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card > div:nth-child(2) > div:last-child {
  margin-top: auto;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reveal transition on scroll utilities (fallback/support for AOS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* What We Do section animations */
.step-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  border-color: rgba(230, 126, 34, 0.3);
  box-shadow: 0 20px 25px -5px rgba(230, 126, 34, 0.1), 0 10px 10px -5px rgba(46, 125, 50, 0.04);
}

.step-card:hover .step-icon-wrapper {
  transform: scale(1.15) rotate(8deg);
  background-color: #e67e22; /* pumpkin-500 */
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.step-icon-wrapper {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
