/* ==============================================================================
   Website Informasi Mushola - Stylesheet Utama (Soluviaid Standard)
   Desain Islami Modern, Mobile-First, Bersih & Berkontras Tinggi
   Palette: Emerald (#0F6B4C), Gold (#B8892B), Slate (#1E293B), Off-White (#F8FAFC)
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary: #0F6B4C;
  --primary-hover: #0a4f38;
  --primary-dark: #064E3B;
  --primary-light: #E8F5E9;
  --secondary: #B8892B;
  --secondary-light: #FEF3C7;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  -webkit-tap-highlight-color: transparent;
}

/* Offset for Sticky Header when jumping to anchor links */
section[id] {
  scroll-margin-top: 80px;
}

.arabic-font {
  font-family: 'Amiri', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Subtle Card Glow & Shadows */
.card-soft {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-soft:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px -3px rgba(15, 107, 76, 0.08), 0 4px 6px -4px rgba(15, 107, 76, 0.04);
  transform: translateY(-2px);
}

/* Active Prayer Card Animation */
.prayer-card-active {
  background: linear-gradient(135deg, #0f6b4c 0%, #064e3b 100%) !important;
  color: #ffffff !important;
  border-color: #fde047 !important;
  box-shadow: 0 10px 25px -5px rgba(15, 107, 76, 0.4) !important;
  transform: scale(1.02);
}

.prayer-card-active .prayer-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fef08a !important;
}

.prayer-card-active .prayer-label {
  color: #d1fae5 !important;
}

.prayer-card-active .prayer-time {
  color: #ffffff !important;
}

/* Lightbox Modal */
.lightbox-modal {
  backdrop-filter: blur(8px);
  background-color: rgba(15, 23, 42, 0.85);
}

/* Toast Notification Animation */
@keyframes slideDownToast {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.toast-animate {
  animation: slideDownToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Subtle Shimmer for Skeleton or Highlight */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Print Friendly Styles for Financial Report */
@media print {
  header, footer, #admin-trigger, .no-print {
    display: none !important;
  }
  body {
    background: #ffffff;
    color: #000000;
  }
  #keuangan {
    display: block !important;
  }
}
