/* ShipORB Marketing Website: Custom Styles */
/* Tailwind CDN handles utilities; this file adds custom overrides */

:root {
  --navy: #1B3A5C;
  --teal: #0D7377;
  --cyan: #06B6D4;
}

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

/* Prose styling for content pages */
.prose h2 { color: var(--navy); margin-top: 2em; }
.prose h3 { color: var(--teal); }
.prose a { color: var(--teal); text-decoration: underline; }
.prose a:hover { color: var(--cyan); }
.prose ul { list-style-type: disc; padding-left: 1.5em; }
.prose li { margin-bottom: 0.5em; }

/* Feature cards hover animation */
.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}
