/* Royal Great Widows and Orphans Foundation - Static Site Styles */

:root {
  --color-primary: #1B1464;
  --color-primary-dark: #0F0D3D;
  --color-accent: #D4A843;
  --color-accent-dark: #C09A3A;
  --color-secondary: #7B2D8E;
  --color-cream: #FDFBF7;
  --color-cream-dark: #F8F4ED;
  --color-muted: #5A5A6E;
  --color-text: #1A1A2E;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--color-cream);
  color: var(--color-text);
}
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Masonry columns helper */
.masonry { column-gap: 1rem; }
.masonry > * { break-inside: avoid; margin-bottom: 1rem; }

/* Bounce animation for scroll indicator */
@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-bounce-soft { animation: bounce-soft 2s infinite; }

/* Fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.8s ease-out; }

/* Utility for line clamp */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 60;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 0.5rem; }