/*
Theme Name: PrimeX Media
Theme URI: https://primex.media
Author: PrimeX Media
Author URI: https://primex.media
Description: Classic WordPress theme for PrimeX Media — Houston video production company. Replicates the global header/footer shell from primex.media while delegating page body content to WordPress via the_content().
Version: 1.5.2
Requires at least: 6.0
Tested up to: 6.8
License: Proprietary
Text Domain: primex-media
*/

/* -------------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* -------------------------------------------------------
   Layout — Main Content Area
------------------------------------------------------- */
.primex-content {
  min-height: 60vh;
  padding-top: 140px; /* offset for fixed header */
  background: #000;
}

.primex-content .content-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Ensure WordPress content inherits site styles */
.primex-content .content-wrapper h1,
.primex-content .content-wrapper h2,
.primex-content .content-wrapper h3,
.primex-content .content-wrapper h4,
.primex-content .content-wrapper h5,
.primex-content .content-wrapper h6 {
  color: #fff;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.primex-content .content-wrapper h1 { font-size: 2.5rem; }
.primex-content .content-wrapper h2 { font-size: 2rem; }
.primex-content .content-wrapper h3 { font-size: 1.5rem; }

.primex-content .content-wrapper p {
  color: #d4d4d8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.primex-content .content-wrapper a {
  color: #a020f0;
  transition: color 0.3s;
}

.primex-content .content-wrapper a:hover {
  color: #c084fc;
}

.primex-content .content-wrapper ul,
.primex-content .content-wrapper ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.primex-content .content-wrapper ul { list-style: disc; }
.primex-content .content-wrapper ol { list-style: decimal; }

.primex-content .content-wrapper li {
  color: #d4d4d8;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.primex-content .content-wrapper img {
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .primex-content {
    padding-top: 120px;
  }

  .primex-content .content-wrapper h1 { font-size: 1.75rem; }
  .primex-content .content-wrapper h2 { font-size: 1.5rem; }
  .primex-content .content-wrapper h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .primex-content .content-wrapper h1 { font-size: 1.5rem; }
  .primex-content .content-wrapper h2 { font-size: 1.25rem; }
}
