/*
Theme Name: VibrantX Static Migration
Theme URI: https://example.com/
Author: VibrantX Team
Description: WordPress theme migrated from the current static bundle with matching visual style.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: vibrantx
*/

/* Theme-specific fixes for WordPress content blocks */
.site-main {
  min-height: 60vh;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-content a {
  text-decoration: underline;
}

/* Primary menu alignment in WP templates */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: inherit;
  text-decoration: none;
}

/* Blog readability and post navigation polish */
.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: rgb(61 61 61);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

/* Design tokens (aligned with static Tailwind bundle) */
:root {
  --vx-purple-500: #655cff;
  --vx-purple-600: #5b53e6;
  --vx-gray-200: #f1f0ee;
  --vx-gray-400: #817f7f;
  --vx-text-primary: #3d3d3d;
}

/* Pagination — matches rounded pills + purple accent */
.vibrantx-pagination-wrap .navigation {
  width: 100%;
}

.vibrantx-pagination-wrap .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.vibrantx-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  color: var(--vx-text-primary);
  text-decoration: none;
  border: 1px solid var(--vx-gray-200);
  border-radius: 9999px;
  background: #fff;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vibrantx-pagination-wrap a.page-numbers:hover {
  border-color: var(--vx-purple-500);
  color: var(--vx-purple-600);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08);
}

.vibrantx-pagination-wrap span.page-numbers.current {
  background: var(--vx-purple-500);
  border-color: var(--vx-purple-500);
  color: #fff;
  cursor: default;
}

.vibrantx-pagination-wrap span.page-numbers.dots {
  min-width: auto;
  border: none;
  background: transparent;
  color: var(--vx-gray-400);
  font-weight: 500;
}

.vibrantx-pagination-wrap a.prev.page-numbers,
.vibrantx-pagination-wrap a.next.page-numbers {
  padding: 0 1rem;
  min-width: auto;
  border-radius: 0.75rem;
}

/* Single post: subtle meta + prose polish */
.single .entry-meta a,
.single .entry-footer a {
  color: var(--vx-purple-600);
  text-decoration: none;
}

.single .entry-meta a:hover,
.single .entry-footer a:hover {
  text-decoration: underline;
}
