/* Prime Pulse Global — Custom Styles */

:root {
  --pp-yellow: #ffc107;
  --pp-dark:   #1a1a2e;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
}

/* Navbar */
.navbar-brand {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

/* Blog Cards */
.blog-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 500px;
}

/* Magazine Card */
.magazine-card {
  transition: transform 0.2s ease;
}
.magazine-card:hover {
  transform: translateY(-4px);
}

/* Admin Sidebar */
.admin-sidebar {
  min-height: calc(100vh - 56px);
  background: #1a1a2e;
}
.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  transition: all 0.2s;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: #fff;
  background: rgba(255,193,7,0.2);
}
.admin-sidebar .nav-link i {
  width: 20px;
}

/* PDF Viewer */
#pdf-container {
  background: #525659;
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
  border-color: var(--pp-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Status Badges */
.badge-draft    { background-color: #6c757d; }
.badge-pending  { background-color: #fd7e14; }
.badge-approved { background-color: #198754; }
.badge-rejected { background-color: #dc3545; }

/* Tag Cloud */
.tag-badge {
  font-size: 0.8rem;
  transition: background-color 0.15s;
}
.tag-badge:hover {
  background-color: #ffc107 !important;
  color: #000 !important;
}

/* Author Profile */
.author-avatar-lg {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

/* Fullscreen Magazine Viewer */
.magazine-fullscreen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #222;
}

/* Blog content rich text styles */
.blog-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }
.blog-content h1, .blog-content h2, .blog-content h3 { margin-top: 1.5rem; font-weight: 700; }
.blog-content blockquote { border-left: 4px solid #ffc107; padding-left: 1rem; color: #555; font-style: italic; }
.blog-content pre { background: #f8f9fa; padding: 1rem; border-radius: 8px; overflow-x: auto; }
.blog-content a { color: #ffc107; }

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  /* Magazine viewer height on mobile */
  #pdf-viewer-embed {
    height: 55vh !important;
  }
  /* Admin sidebar hidden on mobile - use top nav instead */
  .admin-sidebar {
    display: none !important;
  }
  /* Stack cards on mobile */
  .card .row.g-0 .col-4 {
    display: none;
  }
}

@media (max-width: 576px) {
  h1.display-4 { font-size: 2rem; }
  h2.display-5 { font-size: 1.75rem; }
  h2.display-6 { font-size: 1.5rem; }
  .btn-lg { font-size: 0.9rem; padding: 0.5rem 1rem; }
}
