@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;
  --border: 0 0% 90%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 10%;
  --card-border: 0 0% 90%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 10%;
  --popover-border: 0 0% 90%;
  --primary: 0 65% 51%; /* #D32F2F */
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 10%; /* #1A1A1A */
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 98%; /* #F9F9F9 */
  --muted-foreground: 0 0% 40%;
  --accent: 0 0% 98%;
  --accent-foreground: 0 0% 10%;
  --destructive: 0 65% 51%;
  --destructive-foreground: 0 0% 100%;
  --input: 0 0% 90%;
  --ring: 0 65% 51%;

  --app-font-sans: 'Open Sans', sans-serif;
  --app-font-heading: 'Montserrat', sans-serif;
  --radius: 0.5rem;
}

body {
  font-family: var(--app-font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--app-font-heading);
}

/* Custom fade-in animation to replace Framer Motion */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Custom delay classes for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Hide scrollbar for slider */
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
