/*
 * Application-wide styles
 */

:root {
  /* Color scheme based on the project brief */
  --background-color: #FFF4E0; /* cream/beige */
  --primary-color: #0A1551;    /* dark blue */
  --accent-color: #00AAAD;     /* teal */
  --cta-color: #FFC432;        /* yellow */
  --white: #FFFFFF;
  --light-gray: #F3F4F6;
  --gray: #6B7280;
  --dark-gray: #374151;
}

/* Typography */
.font-geologica {
  font-family: 'Geologica', sans-serif;
}

.font-helvetica {
  font-family: 'Helvetica_Neue', 'Geologica', sans-serif;
}

body {
  font-family: 'Geologica', sans-serif;
  background-color: theme('colors.background');
}

/* Apply custom font to all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica_Neue', 'Geologica', sans-serif;
}

/* Background colors */
.bg-background {
  background-color: var(--background-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.bg-cta {
  background-color: var(--cta-color);
}

/* Text colors */
.text-primary {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.text-cta {
  color: var(--cta-color);
}

/* Button hover states */
.hover\:bg-primary\/90:hover {
  background-color: rgba(10, 21, 81, 0.9); /* primary with 90% opacity */
}

.hover\:bg-accent\/90:hover {
  background-color: rgba(0, 170, 173, 0.9); /* accent with 90% opacity */
}

.hover\:bg-cta\/90:hover {
  background-color: rgba(255, 196, 50, 0.9); /* cta with 90% opacity */
}

/* Custom utility classes */
.prose {
  max-width: 100%;
  line-height: 1.75;
}

.prose-lg {
  font-size: 1.125rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prose {
    font-size: 1rem;
  }
}

/* Import TinyMCE styles */
@import "tinymce.css";