/* Professional color scheme matching Zero2one logo - Navy/Indigo with red accents */
:root { 
  --ring: 0 0% 9%;
  --navy-900: rgb(15, 23, 42);
  --navy-800: rgb(30, 41, 59);
  --navy-700: rgb(51, 65, 85);
  --indigo-600: rgb(79, 70, 229);
  --indigo-500: rgb(99, 102, 241);
  --red-600: rgb(220, 38, 38);
  --red-500: rgb(239, 68, 68);
}

html { 
  scroll-behavior: smooth; 
}

/* Navigation Links */
.nav-link {
  transition: opacity 0.2s;
  color: var(--navy-700);
}

.nav-link:hover {
  opacity: 0.7;
}

/* Card Component */
.card {
  border: 1px solid rgb(226, 232, 240);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Button Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition: opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
}

/* Primary Button - Solid indigo theme */
.btn-primary {
  background-color: var(--indigo-600);
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Outline Button */
.btn-outline {
  border: 1px solid rgb(226, 232, 240);
  background-color: transparent;
}

.btn-outline:hover {
  opacity: 0.7;
}

/* Badge */
.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  background-color: rgb(238, 242, 255);
  color: var(--indigo-600);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Section headers */
h1, h2, h3 {
  color: var(--navy-900);
}
