/*
Theme Name: Wings of Hope
Theme URI: https://wingsofhopefoundation.org
Author: Florence Aguh Wings of Hope Foundation
Author URI: https://wingsofhopefoundation.org
Description: Custom WordPress theme for the Florence Aguh Wings of Hope Foundation.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wings-of-hope
Tags: dark, custom-colors, custom-logo, custom-menu, full-width-template
*/

:root {
  /* Colors */
  --primary-gold: #d4af37;
  --primary-gold-hover: #b8962e;
  --body-bg: #0A0A0A;
  --header-footer-bg: #050505;
  --card-bg: #111111;
  --hover-bg: #161616;
  --border-gold: rgba(212, 175, 55, 0.35);
  --text-light: #ffffff;
  --text-gray: #cccccc;
  
  /* Fallbacks */
  --dark-bg: var(--body-bg);
  --darker-bg: var(--body-bg);
  
  /* Fonts */
  --font-primary: 'Playfair Display', serif; /* For Headings */
  --font-secondary: 'Inter', sans-serif; /* For Body */
}

/* Global Reset & Base Styles */
html, body {
  margin: 0;
  padding: 0;
  background-color: #050505 !important;
  color: #ffffff !important;
  font-family: var(--font-secondary);
  -webkit-font-smoothing: antialiased;
}
