/*
Theme Name:  PRRPOA Theme
Author:      Your Name
Version:     1.0.0
Text Domain: prrpoa-theme
*/

/* Base font styles */
body {
    background-color: #fdf8f3;
    font-family: Georgia, serif;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.75;
  }
  
  /* Site title match from mock */
  .site-title {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
  }
  
  /* Header nav link tweaks */
  nav a {
    text-decoration: none;
    color: #14532d; /* Tailwind's green-900 */
    font-weight: 500;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Card titles */
  .card-title {
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 1.125rem;
  }
  
  /* Button style override */
  button,
  .btn {
    font-weight: 500;
    font-family: Georgia, serif;
  }
  
  /* Soft border radius for content areas */
  .card,
  .section {
    border-radius: 0.5rem;
  }
  