/* Additional custom styles for The Christian Missionary Fund website */

body {
  font-feature-settings: "ss01", "kern";
}

/* Ensure good typography */
h1, h2, h3 {
  font-feature-settings: "kern", "tnum";
}

/* Better prose for Statement of Faith */
.statement-prose {
  font-size: 1.02rem;
  line-height: 1.75;
}

.statement-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f2744;
}

/* Contact form styling */
.contact-input {
  transition: all 0.2s ease;
}

.contact-input:focus {
  outline: none;
  border-color: #b38b3e;
  box-shadow: 0 0 0 3px rgba(179, 139, 62, 0.1);
}

/* Success message */
.success-message {
  animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Clean numbered list for faith statements */
.faith-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b38b3e;
  min-width: 1.75rem;
}

/* Partner hover enhancement */
.partner-logo:hover {
  border-color: #e2d1a3;
}

/* Subtle focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid #b38b3e;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print friendly */
@media print {
  nav, footer, .no-print {
    display: none !important;
  }
}
