/*
Theme Name: Street Child Shelter Center
Theme URI: https://example.org
Author: Theme Generator
Author URI: https://example.org
Description: A clean, modern, high-end WordPress theme for a street child shelter center.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: street-child-shelter
*/

/* Core Layout and Typography */
:root {
  --primary-sky: #0ea5e9;
  --primary-teal: #14b8a6;
  --dark-slate: #0f172a;
  --text-slate: #475569;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-slate);
  line-height: 1.6;
}

h1, h2, h3, .font-serif {
  font-family: 'DM Serif Display', serif;
  color: var(--dark-slate);
}

.site-wrapper {
  overflow-x: hidden;
}

/* Header & Navigation */
.header-area {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-area.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Components */
.donate-button {
  background: var(--primary-sky);
  color: white;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.donate-button:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.3);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-description {
  max-width: 700px;
  margin-bottom: 4rem;
}

/* Our Work */
.our-work {
  padding: 100px 0;
}

.work-card {
  background: white;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
  height: 100%;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
  border-color: var(--primary-sky);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Contact */
.contact-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Footer */
.footer-area {
  background: var(--dark-slate);
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 40px;
}

/* Modal */
.donate-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.donate-modal.active {
  display: flex;
}

.donate-details {
  background: white;
  width: 100%;
  max-width: 600px;
  border-radius: 40px;
  padding: 60px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.donate-details h2 {
  margin-bottom: 24px;
}

.donate-details .method {
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}