/**
 * ============================================================================
 * PAGE BACKGROUND COLOR - GLOBAL BACKGROUND STYLING
 * ============================================================================
 * Sets the primary background color for the entire website.
 * This creates a dark theme aesthetic that's consistent across all pages.
 * 
 * COLOR CHOICE:
 * - Pure black (#000000) for maximum contrast with white text
 * - Creates a modern, sleek appearance
 * - Reduces eye strain in low-light environments
 * - Emphasizes content and images
 * ============================================================================
 */

/* ========================================================================== */
/* BODY BACKGROUND - SITE-WIDE BACKGROUND COLOR */
/* ========================================================================== */
/* Applies to the entire page background */
body {
  background-color: #000000; /* Pure black background */
}
