body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #fff;
    color: #333;
  }
  
  /* White space above navbar */
  .header-spacer {
    height: 40px; /* adjust this for more/less space */
    background: #fff;
  }
  
  /* Navbar container */
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #C0F0AF;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
    border-bottom: none; /* remove default border */
  }
  
  /* Brand (logo + title) */
  .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  
  /* Logo that overlaps navbar top & bottom */
  .logo {
    height: 100px;
    margin-top: -30px;
    margin-bottom: -30px;
    position: relative;
    z-index: 2;
  
    /* Drop shadow */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  
    /* Smooth animation */
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  /* Hover effect: slight bounce and glow */
  .logo:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
  }
  
  /* Site title */
  .site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
  /* Navigation links */
  .site-nav {
    display: flex;
    gap: 1rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover {
    color: #007acc;
  }
  
  /* Grid for archive */
  .horse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  
  .horse-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem;
    background: #f9f9f9;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .horse-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  .horse-card:hover {
    transform: scale(1.02);
  }
  
  .page-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .horse-of-day-title {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    text-align: center;
    color: #444;
    font-weight: 600;
  }
  
  .horse-of-day-image {
    display: block;
    margin: 0 auto 3rem;
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }