/* Custom styles for the redesign - Local fonts only */
/* Using system font stack instead of external Google Fonts */

:root {
  /* Brand Colors */
  --tm-green: #009E49;
  --tm-green-dark: #007A38;
  --tm-green-light: #E5F5EB;
  --tm-gold: #FFD700;
  --tm-gold-light: #FFF9D6;
  
  /* Neutral Colors */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Spacing & Layout */
  --section-padding: 6rem;
  --container-max-width: 1280px;
}

/* Standardized Container */
.std-container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .std-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--gray-900);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Utilities (Tailwind extensions) */
.bg-tm-green { background-color: var(--tm-green); }
.text-tm-green { color: var(--tm-green); }
.border-tm-green { border-color: var(--tm-green); }

.hover-tm-green:hover { background-color: var(--tm-green-dark); }
.text-tm-gold { color: var(--tm-gold); }

/* Premium UI Elements */

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

.glass-dark {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography Enhancements */
.gradient-text {
  background: linear-gradient(135deg, var(--tm-green) 0%, #00C85A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations & Transitions */
.transition-smooth {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 158, 73, 0.15);
}

/* Entrance Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide scrollbar for horizontal scrolling elements */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Parallax Background Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1024px) {
  .parallax-bg {
    background-attachment: scroll; /* Disable on mobile for performance */
  }
}
