/* legal/moviecreativecontent/layout.css
 * Layout overrides and mvcr-prefixed component classes for Moviecreativecontent brand pages.
 * Loaded alongside base.css and brand.css on every page. */

/* ─── Page hero banner (used on About, Contact, legal pages) ─── */
.mvcrPageHero {
  background: linear-gradient(135deg, #16a34a 0%, #0f2a1c 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}
.mvcrPageHero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
  font-family: var(--heading-font);
}
.mvcrPageHero p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0.75rem auto 0;
  max-width: 540px;
  line-height: 1.65;
}

/* ─── Rich 4-column footer ─── */
.mvcrSiteFooter {
  background: var(--footer-bg);
  color: var(--footer-fg);
  text-align: left;
  padding: 3rem 2.5rem 1.5rem;
}
.mvcrFooterGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.mvcrFooterBrand .mvcrFooterLogo {
  display: block;
  width: 52px;
  height: 52px;
  background-image: var(--logo-url);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.75rem;
}
.mvcrFooterBrand .mvcrBrandTitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.mvcrFooterBrand .mvcrTagline {
  font-size: 0.82rem;
  color: #8fbfa2;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.mvcrFooterBrand .mvcrDisclosure {
  font-size: 0.78rem;
  color: #7dab8f;
  line-height: 1.6;
  border-left: 3px solid #16a34a;
  padding-left: 0.75rem;
}
.mvcrFooterCol h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 1rem;
}
.mvcrFooterCol ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mvcrFooterCol ul li { margin-bottom: 0.55rem; }
.mvcrFooterCol ul li a {
  color: #8fbfa2;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.mvcrFooterCol ul li a:hover { color: #4ade80; }
.mvcrFooterContact p {
  font-size: 0.875rem;
  color: #8fbfa2;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}
.mvcrFooterContact a { color: #4ade80; text-decoration: none; }
.mvcrFooterContact a:hover { text-decoration: underline; }
.mvcrFooterBottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.mvcrFooterBottom p { font-size: 0.78rem; color: #5f8a70; margin: 0 0 0.3rem; }
.mvcrFooterBottom a { color: #79ab8d; text-decoration: none; }
.mvcrFooterBottom a:hover { color: #4ade80; }

/* ─── Highlight cards (reused on About and Contact) ─── */
.mvcrHighlightCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.mvcrHighlightCard {
  background: linear-gradient(135deg, #eafbf1, #dcefe0);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.mvcrHighlightCard .icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.mvcrHighlightCard h3 { font-size: 1rem; font-weight: 700; color: #163224; margin: 0 0 0.35rem; }
.mvcrHighlightCard p { font-size: 0.85rem; color: #4b6b58; margin: 0; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .mvcrFooterGrid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .mvcrFooterGrid { grid-template-columns: 1fr; gap: 1.75rem; }
  .mvcrSiteFooter { padding: 2.5rem 1.25rem 1.25rem; }
  .mvcrPageHero h1 { font-size: 1.6rem; }
}
