/* ==========================================================================
   MEGA THE MOVIE — style.css
   Single-page pitch site. Hand-written replacement for the Nicepage
   generated stylesheet. No framework, no jQuery, no JS.
   ========================================================================== */

:root {
  --bg: #000000;
  --surface: #101012;
  --border: #2a2a2d;
  --text: #f2f2f2;
  --text-muted: #b9b9bd;
  --accent-blue: #478ac9;
  --accent-red: #db545a;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

a:focus-visible { outline: 2px solid var(--accent-red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Poster hero
   ========================================================================== */

.poster {
  background-image: url("images/Mega_Movie_Poster01.jpg");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: cover;
  height: 62vh;
  min-height: 380px;
  max-height: 720px;
  position: relative;
}

.poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, var(--bg), transparent);
}

@media (max-width: 640px) {
  .poster { height: 46vh; min-height: 280px; }
}

/* ==========================================================================
   Pitch content
   ========================================================================== */

.pitch {
  padding: 20px 24px 56px;
}

.pitch-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.title-graphic {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 18px;
}

.subtitle {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: #cfd6de;
  margin: 0 0 28px;
}

.logline {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 28px;
}

.logline .label {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 15px;
  background-image: linear-gradient(var(--accent-blue), var(--accent-red));
  box-shadow: 2px 2px 8px rgba(128, 128, 128, 0.6);
  text-shadow: 0 0 8px rgba(0, 0, 0, 1);
  margin-bottom: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 14px rgba(128, 128, 128, 0.75);
}

.status-line {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.contact-graphic {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px;
}

.credits {
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.credits .fine-print { font-size: 0.85rem; display: block; margin-top: 6px; }
