/* Custom CSS for StormCloud Landing Page */
/* Base styles from index.css converted to standard CSS */

:root {
  --background: hsl(220, 20%, 8%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(220, 18%, 12%);
  --card-foreground: hsl(210, 40%, 98%);
  --popover: hsl(220, 20%, 10%);
  --popover-foreground: hsl(210, 40%, 98%);
  --primary: hsl(195, 100%, 50%);
  --primary-foreground: hsl(220, 20%, 8%);
  --secondary: hsl(220, 15%, 20%);
  --secondary-foreground: hsl(210, 40%, 98%);
  --muted: hsl(220, 15%, 18%);
  --muted-foreground: hsl(215, 20%, 65%);
  --accent: hsl(195, 100%, 50%);
  --accent-foreground: hsl(220, 20%, 8%);
  --destructive: hsl(0, 72%, 51%);
  --destructive-foreground: hsl(210, 40%, 98%);
  --border: hsl(220, 15%, 20%);
  --input: hsl(220, 15%, 20%);
  --ring: hsl(195, 100%, 50%);
  --radius: 0.5rem;
}

* {
  border-color: var(--border);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, hsla(195, 100%, 50%, 0.15), hsl(220, 20%, 12%));
}

.bg-gradient-card {
  background: linear-gradient(180deg, hsl(220, 18%, 14%), hsl(220, 18%, 10%));
}

.shadow-glow {
  box-shadow: 0 0 40px hsla(195, 100%, 50%, 0.3);
}

.text-primary {
  color: var(--primary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.bg-card {
  background-color: var(--card);
}

.border-border {
  border-color: var(--border);
}

.text-foreground {
  color: var(--foreground);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.bg-background {
  background-color: var(--background);
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

/* Hover effects */
.hover\:border-primary\/50:hover {
  border-color: hsla(195, 100%, 50%, 0.5);
}

.hover\:bg-primary\/10:hover {
  background-color: hsla(195, 100%, 50%, 0.1);
}

.hover\:bg-primary\/20:hover {
  background-color: hsla(195, 100%, 50%, 0.2);
}

.hover\:bg-primary\/90:hover {
  background-color: hsla(195, 100%, 50%, 0.9);
}

.hover\:text-primary:hover {
  color: var(--primary);
}

.hover\:shadow-\[0_0_60px_hsl\(195_100\%_50\%\/0\.4\)\]:hover {
  box-shadow: 0 0 60px hsla(195, 100%, 50%, 0.4);
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Card hover effect */
.group:hover .group-hover\:bg-primary\/20 {
  background-color: hsla(195, 100%, 50%, 0.2);
}

/* Responsive utilities */
@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

