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


/* Font imports */
:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* Custom CSS Variables */
  --primary-color: #f2974b;
  --secondary-color: #51332d;
  --background-color: #ffffff;
  --text-primary: #2c2c2c;
  --text-secondary: #51332d;
  --border-radius: 12px;
  --shadow-light: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-medium: 0 8px 16px rgba(0,0,0,0.1);
  --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
}
#root {
  margin: auto;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
}
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}
/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 151, 75, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px 10px rgba(242, 151, 75, 0.3);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Utility classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}
.float {
  animation: float 3s ease-in-out infinite;
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}
.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}
/* Glass morphism effect */
.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Button hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}
/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* Responsive typography */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  /* Better mobile spacing */
  .MuiContainer-root {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  /* Mobile-friendly cards */
  .MuiCard-root {
    margin-bottom: 16px;
  }
  
  /* Better mobile buttons */
  .MuiButton-root {
    min-height: 44px;
  }
}
/* Extra small devices */
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .MuiContainer-root {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
/* Improve touch targets on mobile */
@media (hover: none) and (pointer: coarse) {
  .MuiIconButton-root {
    min-width: 44px;
    min-height: 44px;
  }
  
  .MuiButton-root {
    min-height: 44px;
    padding: 12px 24px;
  }
}
/* Print styles */
@media print {
  * {
    background: white !important;
    color: black !important;
  }
}