/*
Theme Name: Donnell Woolford Dream Center
Theme URI: https://donnell-woolford-dream-center-124861304576.us-east1.run.app
Author: Antigravity AI
Author URI: https://github.com/
Description: A premium, modern, responsive WordPress theme designed specifically for the Donnell Woolford Dream Center non-profit organization in Hope Mills, NC. Features custom layout sections, architectural blueprint cards, dynamic team modals, customizer controls, and rich responsive aesthetics.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dwdreamcenter
Tags: custom-menu, featured-images, full-width-template, theme-options, translation-ready, accessibility-ready
*/

/* ==========================================================================
   DESIGN SYSTEM TOKENS & STYLES
   ========================================================================== */

:root {
  --color-brand-navy: #0b162a;
  --color-brand-navy-light: #18253b;
  --color-brand-navy-dark: #060b15;
  --color-brand-orange: #c83803;
  --color-brand-orange-hover: #a02b02;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --color-bg-warm: #fafaf7;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-orange: 0 10px 25px -5px rgba(200, 56, 3, 0.4);
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  line-height: 1.5;
  color: var(--color-slate-800);
  background-color: var(--color-bg-warm);
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Warm grid background pattern */
.warm-grid {
  background-color: var(--color-bg-warm);
  background-image: radial-gradient(rgba(11, 22, 42, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Blueprint card grid styling */
.blueprint-grid {
  background-color: var(--color-brand-navy-dark);
  background-image: 
    linear-gradient(rgba(34, 211, 238, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Button & interactive animations */
.btn-primary {
  background-color: var(--color-brand-orange);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 139, 26, 0.25);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Modal Overlay Animation */
.modal-enter {
  animation: fadeIn 0.2s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
