/* legal/rapidfirecontentgrab/layout.css
 * Shared layout overrides for rapidfirecontentgrab brand pages.
 * Loaded alongside base.css and brand.css on every page. */

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

/* Rich 3-column footer */
.site-footer {
  text-align: left;
  padding: 3rem 2.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.footer-brand .footer-logo {
  display: block;
  width: 52px;
  height: 52px;
  background-image: var(--logo-url);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.75rem;
}
.footer-brand .brand-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.footer-brand .tagline { font-size: 0.82rem; color: #a0a0b8; margin-bottom: 1rem; line-height: 1.55; }
.footer-brand .disclosure {
  font-size: 0.78rem;
  color: #888899;
  line-height: 1.6;
  border-left: 3px solid #7b2fbe;
  padding-left: 0.75rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: #a0a0b8; text-decoration: none; font-size: 0.875rem; transition: color 0.15s ease; }
.footer-col ul li a:hover { color: #c084fc; }
.footer-contact p { font-size: 0.875rem; color: #a0a0b8; margin: 0 0 0.5rem; line-height: 1.55; }
.footer-contact a { color: #c084fc; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.78rem; color: #666677; margin: 0 0 0.3rem; }
.footer-bottom a { color: #888899; text-decoration: none; }
.footer-bottom a:hover { color: #c084fc; }

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

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