/* Contact Form 7 — override with theme styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(140,112,113,0.3);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Atkinson Hyperlegible Next', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #1a1c1c;
  display: block;
  margin-bottom: 1rem;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: #570013;
  box-shadow: 0 0 0 3px rgba(87,0,19,0.12);
}
.wpcf7-form input[type="submit"] {
  background: #570013;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: 'Atkinson Hyperlegible Next', system-ui, sans-serif;
}
.wpcf7-form input[type="submit"]:hover {
  background: #800020;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(87,0,19,0.25);
}
.wpcf7-not-valid-tip { color: #ba1a1a; font-size: 0.75rem; margin-top: -0.75rem; margin-bottom: 0.5rem; display: block; }
.wpcf7-response-output { border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; margin-top: 1rem; border: none !important; }
.wpcf7-mail-sent-ok  { background: rgba(87,0,19,0.08); color: #570013; }
.wpcf7-validation-errors { background: rgba(186,26,26,0.08); color: #ba1a1a; }

/* Prose (blog content) */
.prose { color: #1a1c1c; max-width: 65ch; }
.prose h2,.prose h3,.prose h4 { font-family: 'Literata', Georgia, serif; color: #570013; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h2 { font-size: 1.75rem; font-weight: 700; }
.prose h3 { font-size: 1.375rem; font-weight: 700; }
.prose p  { margin-bottom: 1.25rem; line-height: 1.8; color: #584141; }
.prose a  { color: #904d00; text-decoration: underline; }
.prose a:hover { color: #570013; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.4rem; color: #584141; }
.prose blockquote { border-left: 4px solid #800020; padding-left: 1.25rem; font-style: italic; color: #584141; margin: 1.5rem 0; }
.prose img { border-radius: 0.75rem; max-width: 100%; height: auto; }
.prose strong { color: #1a1c1c; }

/* Events Calendar overrides */
.tribe-events-header { display: none !important; }
.tribe-events-calendar { font-family: 'Atkinson Hyperlegible Next', system-ui, sans-serif !important; }
.tribe-events .tribe-event-url { color: #570013 !important; }
.tribe-events .tribe-events-calendar td.tribe-events-present .tribe-events-day-number { background: #570013 !important; color: #fff !important; border-radius: 50%; }

/* Pagination */
.page-numbers { display: inline-flex; align-items: center; gap: 0.5rem; }
.page-numbers li a, .page-numbers li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  border: 1px solid rgba(140,112,113,0.3);
  color: #584141; text-decoration: none; transition: all 0.2s;
}
.page-numbers li .current, .page-numbers li a:hover {
  background: #570013; color: #fff; border-color: #570013;
}

/* Smooth image loading */
img { transition: opacity 0.3s; }
