/*
Theme Name: Rio Verde Clean & Beautiful (Custom Starter)
Theme URI: http://rioverdecleanandbeautiful.org
Author: ChatGPT for Thomas Buffington
Author URI: https://openai.com/
Description: Lightweight custom starter theme for Rio Verde Clean and Beautiful.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rioverde-theme
Tags: nonprofit, accessibility, responsive, one-column
*/
body{font-family:Arial,Helvetica,sans-serif;background:#f5efe6;color:#222;margin:0;padding:0;}
.site-header{background:#fff;padding:14px 20px;border-bottom:1px solid #e6e0d6;position:sticky;top:0;z-index:999}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit}
.brand img{height:64px}
.main-nav{display:flex;gap:12px;align-items:center}
.main-nav a{text-decoration:none;color:#1f5f3a;font-weight:600}
.donate-cta{background:#1f5f3a;color:#fff;padding:8px 12px;border-radius:6px;text-decoration:none}
.hero{display:flex;gap:20px;align-items:center;padding:34px 0;background:linear-gradient(180deg, rgba(127,188,230,0.08), transparent)}
.hero h1{color:#1f5f3a;margin:0;font-size:34px}
.lead{font-size:18px;color:#333}
.btn{display:inline-block;padding:10px 14px;border-radius:8px;text-decoration:none}
.btn-primary{background:#1f5f3a;color:#fff}
.content{background:#fff;padding:20px;border-radius:8px;margin:18px 0}
footer.site-footer{background:#fff;padding:18px 0;border-top:1px solid #e6e0d6}
@media(max-width:900px){.main-nav{display:none}}
home.php
<?php get_header(); ?>
<main class="container">
  <h1><?php single_post_title(); ?></h1>
  <div class="content">
    <?php if ( have_posts() ) : ?>
      <?php while ( have_posts() ) : the_post(); ?>
        <article style="margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #ddd;">
          <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          <small><?php the_time('F j, Y'); ?></small>
          <div><?php the_excerpt(); ?></div>
        </article>
      <?php endwhile; ?>
      <div class="pagination">
        <?php the_posts_pagination(); ?>
      </div>
    <?php else : ?>
      <p>No news or events have been posted yet. Please check back soon.</p>
    <?php endif; ?>
  </div>
</main>
<?php get_footer(); ?>
