/* ===== TryPeace Public Styles ===== */

:root {
  --primary: #1a6b3c;
  --primary-dark: #0f4526;
  --accent: #d4af37;
  --text-dark: #1a1a2e;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
}

/* Navbar */
.navbar.bg-primary {
  background: linear-gradient(135deg, #1a6b3c 0%, #0f4526 100%) !important;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #0f4526 0%, #1a6b3c 40%, #2d9b5a 100%);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Pattern divider */
.pattern-divider {
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #1a6b3c, #d4af37);
}

/* Category cards */
.category-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

/* Divider */
.divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a6b3c, #d4af37);
  border-radius: 2px;
  margin-top: 12px;
}

/* Quran quote section */
.quran-quote-section {
  background: linear-gradient(135deg, #0f4526 0%, #1a6b3c 100%);
}

/* Article list (category page) */
.article-list-item {
  border-left: 4px solid #1a6b3c !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.article-list-item:hover {
  background: #f0f9f4 !important;
  border-left-color: #d4af37 !important;
}

/* Full article page */
.article-full-body {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #333;
}

.article-full-body p { margin-bottom: 1.25rem; }
.article-full-body h1, .article-full-body h2, .article-full-body h3 {
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #1a6b3c;
}
.article-full-body ul, .article-full-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-full-body li { margin-bottom: 0.4rem; }
.article-full-body blockquote {
  border-left: 4px solid #d4af37;
  padding: 0.5rem 1rem;
  margin: 1.25rem 0;
  background: #fdf9ec;
  color: #555;
  border-radius: 0 0.375rem 0.375rem 0;
}
.article-full-body code {
  background: #f0f2f5;
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.9em;
}
.article-full-body pre {
  background: #1a1a2e;
  color: #e8e8e8;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.article-full-body a { color: #1a6b3c; text-decoration: underline; }
.article-full-body strong { color: #1a1a2e; }

/* Category page header */
.category-header-section {
  background: linear-gradient(135deg, #0f4526 0%, #1a6b3c 100%);
  padding: 28px 0;
}

/* Video card */
.video-card iframe {
  border: 0;
}

.video-description p { margin-bottom: 0.4rem; }
.video-description ul, .video-description ol { padding-left: 1.2rem; margin-bottom: 0.4rem; }
.video-description strong { color: #1a1a2e; }
.video-description a { color: #1a6b3c; }

/* Footer */
.footer-section {
  background: #f1f3f5;
  border-top: 3px solid #d4af37;
  color: #333 !important;
}

.footer-section h5,
.footer-section h6 {
  color: #1a6b3c;
}

.footer-section .text-muted {
  color: #555 !important;
}

.footer-link:hover {
  color: #1a6b3c !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 220px;
  }
}
