
/* Backup styles for when Tailwind CDN fails */
body {
  background-color: #fff7ed; /* orange-50 equivalent */
  color: #1f2937; /* gray-800 equivalent */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  margin: 0;
  padding: 0;
}

.bg-orange-50 { background-color: #fff7ed !important; }
.bg-white { background-color: #ffffff !important; }
.text-gray-800 { color: #1f2937 !important; }
.text-white { color: #ffffff !important; }

/* Hero section */
header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Button styles */
.bg-gradient-to-r {
  background: linear-gradient(to right, #f97316, #ef4444) !important;
  color: white !important;
  padding: 1rem 3rem !important;
  border-radius: 1rem !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-weight: bold !important;
  font-size: 1.125rem !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.bg-gradient-to-r:hover {
  background: linear-gradient(to right, #ea580c, #dc2626) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.4) !important;
}

/* Grid layouts */
.grid {
  display: grid !important;
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.gap-8 {
  gap: 2rem !important;
}

/* Card styles */
.bg-white {
  background-color: white !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
}

.bg-white:hover {
  border-color: #fed7aa !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(-0.5rem) !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
}
