/* =============================================
   FILE 3: design-nonprofit-warm.css
   Warm Community Theme
   Colors: Orange (#ea580c), Yellow (#eab308), Lime (#84cc16), Cyan (#0891b2)
   ============================================= */
:root {
    /* Primary Colors (Orange) */
    --primary-color: #ea580c;
    --primary-light: #f97316;
    --primary-dark: #c2410c;

    /* Secondary Colors (Yellow) */
    --secondary-color: #eab308;
    --secondary-light: #facc15;
    --secondary-dark: #ca8a04;

    /* Accent Colors (Lime) */
    --accent-color: #84cc16;
    --accent-light: #a3e635;
    --accent-dark: #65a30d;

    /* Impact/Info Color (Cyan) */
    --impact-color: #0891b2;
    --impact-light: #06b6d4;
    --impact-dark: #0e7490;

    /* Neutral Colors */
    --heading-color: #1f2937; /* Keeping neutrals consistent */
    --text-color: #374151;
    --text-secondary: #6b7280; /* Renamed from --text-muted */
    --text-muted: #6b7280; /* Added alias for compatibility */
    --text-light: #9ca3af;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fffbeb; /* Very light yellow */
    --bg-accent: #fef3c7; /* Light yellow */

    /* Border Colors */
    --border-color: #fde68a; /* Soft yellow border */
    --border-dark: #fbbf24;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif; /* Friendly sans-serif */
    --font-body: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif; /* Added alias */
    --body-font: 'Inter', sans-serif; /* Added alias */

    /* NEW Variables */
    --card-bg: var(--bg-primary);
    --border-radius-md: 10px;     /* Rounded corners */
    --border-radius-lg: 16px;     /* More rounded corners */
    --border-radius-full: 50px;   /* Pill shape */
    --shadow-md: 0 4px 8px rgba(0,0,0,0.07); /* Softer shadow */
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1); /* Softer shadow */
    --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --tier-border: var(--border-dark);
    --tier-featured-bg: var(--bg-accent); /* Light yellow highlight */
    --testimonial-bg: var(--bg-secondary); /* Very light yellow */

    /* Variables for Hero (from components.css) */
    --hero-gradient-start: rgba(234, 88, 12, 0.9); /* primary-color */
    --hero-gradient-end: rgba(234, 179, 8, 0.85); /* secondary-color */
    --hero-overlay-bg: rgba(0, 0, 0, 0.1); /* Lighter overlay */
    --hero-text-color: white;
    --hero-title-color: white;
    --hero-subtitle-color: var(--accent-light); /* Light lime */
    --hero-description-color: rgba(255, 255, 255, 0.95);
    --hero-btn-donate-bg: var(--accent-color); /* Lime */
    --hero-btn-donate-color: var(--heading-color); /* Dark text on lime */
    --hero-btn-donate-hover: var(--accent-dark);
    --hero-scroll-color: white;
}

body.nonprofit-theme {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--bg-primary);
    line-height: 1.65; /* Slightly more spacing */
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.08);
}

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

/* Navigation */
.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Hero Sections */
.hero-nonprofit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-nonprofit::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-secondary {
    background: var(--accent-color);
    box-shadow: 0 4px 14px rgba(132, 204, 22, 0.3);
}

/* Footer */
.footer {
    background: var(--heading-color);
    color: #f3f4f6;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.footer a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Cards */
.card {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Section Headers */
.section-subtitle {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
