/* Chromoscope Landing Page - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-logo {
  animation: float 3s ease-in-out infinite;
}

/* Gradient text effect for headings */
.gradient-text {
  background: linear-gradient(135deg, #4a1d6b, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature card hover effect */
.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* Mobile menu toggle (if needed later) */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4a1d6b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b3d8a;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #00b4d8;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  nav,
  .cta-section,
  footer {
    display: none;
  }
}
