@import "tailwindcss";

/* Brand Guidelines Color Palette
   Primary Navy: #1F3A5F (Headers, footer bands, primary buttons, nav bar)
   Steel Blue (brand accent): #2E6BA6 (Logo accent, links, icons, highlights)
   Light Blue: #5B9BD5 (Hover states, secondary accents, chart/stat highlights)
   Charcoal: #3A3A3A (Body text, headings on light backgrounds)
   Concrete Grey: #E9E7E2 (Section backgrounds, cards)
   White: #FFFFFF (Base background, text on dark sections)
*/

:root {
  --color-primary-navy: #1F3A5F;
  --color-steel-blue: #2E6BA6;
  --color-light-blue: #5B9BD5;
  --color-charcoal: #3A3A3A;
  --color-concrete-grey: #E9E7E2;
}

@layer base {
  body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #3A3A3A;
    background-color: #FFFFFF;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3A3A3A;
    letter-spacing: -0.02em;
  }
}

/* Custom Brand Utilities */
.bg-prm-navy { background-color: #1F3A5F; }
.bg-prm-navy-dark { background-color: #152843; }
.text-prm-navy { color: #1F3A5F; }
.border-prm-navy { border-color: #1F3A5F; }

.bg-prm-steel { background-color: #2E6BA6; }
.hover\:bg-prm-steel:hover { background-color: #2E6BA6; }
.text-prm-steel { color: #2E6BA6; }
.hover\:text-prm-steel:hover { color: #2E6BA6; }
.border-prm-steel { border-color: #2E6BA6; }

.bg-prm-lightblue { background-color: #5B9BD5; }
.hover\:bg-prm-lightblue:hover { background-color: #5B9BD5; }
.text-prm-lightblue { color: #5B9BD5; }
.hover\:text-prm-lightblue:hover { color: #5B9BD5; }

.text-prm-charcoal { color: #3A3A3A; }
.bg-prm-concrete { background-color: #E9E7E2; }
.border-prm-concrete { border-color: #DCD8D0; }

/* Image Card Hover Zoom Effect */
.img-zoom-container {
  overflow: hidden;
}

.img-zoom-container img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom-container:hover img {
  transform: scale(1.08);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

::-webkit-scrollbar-track {
  background: #1F3A5F;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #5B9BD5;
}


