/* Blanket of Hope - Design System
   Healing sage theme | Based on NGOO PSD Template
   Fonts: Playfair Display + Source Sans 3 */

@import url('layout.css');
@import url('sections.css');
@import url('pages.css');
@import url('premium.css');
@import url('transitions.css');
@import url('blog.css');
@import url('shop.css');
@import url('donate.css');
@import url('kinetic.css');
@import url('features.css');
@import url('text-chat.css');
@import url('voice-chat.css');
@import url('dividers.css');

:root {
  --color-dark: #2d3a3a;
  --color-charcoal: #3a4848;
  --color-slate: #506060;
  --color-accent: #7aab9c;
  --color-accent-hover: #638f82;
  --color-accent-light: rgba(122, 171, 156, 0.1);
  --color-warm: #f5f2ed;
  --color-white: #fdfcfa;
  --color-text: #3d4545;
  --color-text-light: #7a8585;
  --color-text-on-dark: #c5d0ce;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 5px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--color-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h1 em, h2 em { font-style: italic; font-weight: 400; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--color-accent); }
.section { padding: 80px 0; }
.section-light { background: var(--color-white); }
.section-dark { background: var(--color-dark); color: var(--color-text-on-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-warm { background: var(--color-warm); }
.section-accent { background: var(--color-accent); color: var(--color-white); }
.section-accent h2 { color: var(--color-white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header-left { text-align: left; }
.section-subtitle { color: var(--color-text-light); font-size: 1.05rem; margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header-left .section-subtitle { margin-left: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border: 2px solid transparent; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-lg { padding: 14px 36px; font-size: 0.95rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-accent { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn-accent:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: var(--color-white); }
.btn-outline-light { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-light:hover { background: var(--color-white); color: var(--color-dark); }
.btn-outline-accent { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline-accent:hover { background: var(--color-accent); color: var(--color-white); }
.btn-dark { background: var(--color-dark); color: var(--color-white); border-color: var(--color-dark); }
.btn-dark:hover { background: var(--color-charcoal); color: var(--color-white); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Wish List Grid */
.wishlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wishlist-card { background: var(--color-white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.wishlist-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.wishlist-card-img { width: 100%; height: 200px; overflow: hidden; }
.wishlist-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.wishlist-card:hover .wishlist-card-img img { transform: scale(1.05); }
.wishlist-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.wishlist-card-body h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-dark); margin: 0; }
.wishlist-card-body p { font-size: 0.92rem; color: var(--color-charcoal); margin: 0; line-height: 1.5; }
.wishlist-price { font-weight: 700; color: var(--color-accent); font-size: 1rem; }
.wishlist-card-body .btn { margin-top: 4px; text-align: center; }

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 400px) {
  .section { padding: 40px 0; }
  .btn-lg { padding: 12px 24px; font-size: 0.85rem; }
  .wishlist-grid { grid-template-columns: 1fr; }
}
