/*
Theme Name: Holy Zegen Church
Theme URI: https://example.com/holy-zegen-church
Author: Your Name
Author URI: https://example.com
Description: A comprehensive, premium WordPress theme for churches, ministries, and religious organizations. Features include event management, donation system, sermon archives, e-commerce integration, multiple layouts, and advanced customization options.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: holy-zegen-church
Tags: church, religion, ministry, charity, nonprofit, donations, events, sermons, responsive, e-commerce, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ================================================
   CSS VARIABLES & THEME FOUNDATION
   ================================================ */
:root {
  /* Primary Color Palette */
  --primary-color: #c39c63;
  --primary-dark: #a67c3d;
  --primary-light: #d4b384;
  --secondary-color: #2d3e50;
  --accent-color: #8b6f47;
  
  /* Neutral Colors */
  --text-dark: #1a1d23;
  --text-body: #4a5568;
  --text-light: #718096;
  --text-muted: #a0aec0;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f7f8fa;
  --bg-gray: #e2e8f0;
  --bg-dark: #1a1d23;
  
  /* Border & Divider Colors */
  --border-color: #e2e8f0;
  --border-light: #f1f3f5;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Font Sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-5xl); font-weight: 700; }
h2 { font-size: var(--fs-4xl); font-weight: 600; }
h3 { font-size: var(--fs-3xl); font-weight: 600; }
h4 { font-size: var(--fs-2xl); font-weight: 600; }
h5 { font-size: var(--fs-xl); font-weight: 600; }
h6 { font-size: var(--fs-lg); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--text-light);
}

/* ================================================
   LAYOUT & CONTAINERS
   ================================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--container-2xl);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-top {
  background: var(--secondary-color);
  color: white;
  padding: var(--space-xs) 0;
  font-size: var(--fs-sm);
}

.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact-info {
  display: flex;
  gap: var(--space-lg);
}

.header-contact-info a {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header-contact-info a:hover {
  color: white;
}

.header-social {
  display: flex;
  gap: var(--space-sm);
}

.header-social a {
  color: rgba(255, 255, 255, 0.9);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.header-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.header-main {
  padding: var(--space-md) 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

.site-title {
  font-size: var(--fs-3xl);
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

.site-title a {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.site-title a:hover {
  color: var(--primary-color);
}

.site-description {
  font-size: var(--fs-sm);
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/* Main Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-lg);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
  margin: 0;
}

.main-navigation a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-dark);
  font-weight: 500;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--primary-color);
}

/* Dropdown Menus */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-base);
  padding: var(--space-sm) 0;
  border-radius: var(--radius-md);
  z-index: 1000;
}

.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu li {
  display: block;
}

.main-navigation .sub-menu a {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  text-transform: none;
  border-bottom: 1px solid var(--border-light);
}

.main-navigation .sub-menu li:last-child a {
  border-bottom: none;
}

/* Donate Button in Header */
.header-donate-btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
  white-space: nowrap;
}

.header-donate-btn:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 62, 80, 0.95), rgba(139, 111, 71, 0.85)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') center/cover;
  overflow: hidden;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(195, 156, 99, 0.15), transparent 60%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  animation: heroFadeIn 1.2s ease-out 0.2s both;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: heroFadeIn 1.2s ease-out 0.4s both;
}

.hero-description {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  animation: heroFadeIn 1.2s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease-out 0.8s both;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-dark);
}

.btn-secondary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease-out;
}

.section-label {
  font-family: var(--font-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
}

.section-description {
  font-size: var(--fs-lg);
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ================================================
   MISSION/VALUES SECTION
   ================================================ */
.values-section {
  background: var(--bg-light);
  padding: var(--space-4xl) 0;
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.values-text h2 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-lg);
}

.values-text p {
  font-size: var(--fs-lg);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.values-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.values-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.values-image:hover img {
  transform: scale(1.05);
}

/* ================================================
   SERVICES/MINISTRIES SECTION
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-lg);
  z-index: 2;
}

.service-content {
  padding: var(--space-xl);
}

.service-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.service-excerpt {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  transition: var(--transition-base);
}

.service-link:hover {
  gap: var(--space-sm);
  color: var(--primary-dark);
}

/* ================================================
   EVENT SCHEDULE/CALENDAR SECTION
   ================================================ */
.events-section {
  background: var(--bg-white);
  padding: var(--space-4xl) 0;
}

.events-calendar {
  margin-top: var(--space-3xl);
}

.calendar-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.calendar-tab {
  padding: var(--space-sm) var(--space-xl);
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-body);
  font-weight: 600;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: var(--transition-base);
}

.calendar-tab:hover,
.calendar-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.events-list {
  display: grid;
  gap: var(--space-lg);
}

.event-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.event-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.event-date {
  text-align: center;
  padding: var(--space-md);
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-day {
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.event-month {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.event-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.event-meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.event-excerpt {
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================================
   DONATION SECTION
   ================================================ */
.donation-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.donation-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,128L48,144C96,160,192,192,288,192C384,192,480,160,576,154.7C672,149,768,171,864,165.3C960,160,1056,128,1152,128C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') center/cover;
  opacity: 0.1;
}

.donation-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.donation-content h2 {
  color: white;
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.donation-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xl);
}

.donation-form {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.donation-amount {
  padding: var(--space-md);
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

.donation-amount:hover,
.donation-amount.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.donation-custom {
  margin-bottom: var(--space-lg);
}

.donation-custom input {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  font-weight: 600;
  text-align: center;
}

.donation-submit {
  width: 100%;
  padding: var(--space-md);
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-base);
}

.donation-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  background: var(--bg-light);
  padding: var(--space-4xl) 0;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.testimonial-item {
  text-align: center;
  padding: var(--space-xl);
}

.testimonial-quote {
  font-size: var(--fs-2xl);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.testimonial-info p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin: 0;
}

/* ================================================
   BLOG/NEWS SECTION
   ================================================ */
.blog-section {
  padding: var(--space-4xl) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.blog-content {
  padding: var(--space-xl);
}

.blog-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.blog-title a {
  color: var(--text-dark);
  transition: var(--transition-base);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  gap: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
}

.blog-link:hover {
  gap: var(--space-sm);
  color: var(--primary-dark);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 0;
}

.footer-main {
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-widget h3 {
  color: white;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.footer-widget p {
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget li {
  margin-bottom: var(--space-sm);
}

.footer-widget a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-widget a:hover {
  color: var(--primary-color);
  padding-left: var(--space-xs);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: white;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-newsletter {
  margin-top: var(--space-lg);
}

.footer-newsletter input {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter button {
  width: 100%;
  padding: var(--space-md);
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.footer-newsletter button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  padding: var(--space-lg) 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
  }
  
  .header-top {
    display: none;
  }
  
  .values-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
  }
  
  .header-container {
    flex-wrap: wrap;
  }
  
  .main-navigation {
    width: 100%;
    justify-content: center;
  }
  
  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .event-item {
    grid-template-columns: 1fr;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .header-donate-btn {
    font-size: var(--fs-xs);
    padding: var(--space-sm) var(--space-md);
  }
  
  .calendar-tabs {
    flex-direction: column;
  }
  
  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }

.pb-0 { padding-bottom: 0; }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
