/*
Theme Name: Movies Plus TV
Theme URI: https://moviesplustv.com
Author: Movies Plus TV
Description: Custom cinematic theme for Movies Plus TV Entertainment Network.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moviesplustv
*/

:root {
  --mptv-bg-top: #ffb347;   /* light amber */
  --mptv-bg-mid: #ff8c00;   /* deeper orange */
  --mptv-bg-bottom: #120308;/* near-black */
  --mptv-purple: #b94cff;   /* logo purple */
  --mptv-text: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mptv-text);
  background:
    radial-gradient(circle at top center, rgba(255, 179, 71, 0.35), transparent 55%),
    linear-gradient(180deg, var(--mptv-bg-top) 0%, var(--mptv-bg-mid) 30%, var(--mptv-bg-bottom) 100%);
  background-attachment: fixed;
}

/* Remove TT4-style boxed layout */
#page,
.site,
.wp-site-blocks {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Layout container */
.mptv-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
}

a {
  color: var(--mptv-purple);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-branding {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-title {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mptv-text);
}
.site-description {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Navigation */
.main-navigation {
  margin-top: 0.75rem;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.main-navigation a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Main content */
.site-main {
  padding: 2rem 0 3rem;
}

/* Footer (placeholder — real footer added later) */
.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.8;
}
