/* =========================================
   FREDDIE FREDERICK JR ENTERTAINMENT
   Global Stylesheet — ffjentertainment.com
   ========================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #0a0a0a; color: #fff; }
a { text-decoration: none; }
img { max-width: 100%; }

/* COLORS */
:root {
  --purple: #6a0dad;
  --purple-light: #9b30e8;
  --silver: #c0c0c0;
  --dark: #0a0a0a;
  --dark2: #0f0f0f;
  --dark3: #111;
  --dark4: #0d001f;
}

/* NAV */
.nav {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a { color: #b0b0b0; font-size: 13px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple-light); }
.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--purple-light); }

/* FOOTER */
.footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img { height: 40px; width: auto; }
.footer-copy { font-size: 12px; color: #444; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #777;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--purple); color: var(--purple-light); }

/* CTA BAND */
.cta-band {
  background: var(--dark4);
  border-top: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  padding: 56px 32px;
  text-align: center;
}
.cta-band h2 { font-size: 28px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.cta-band p { color: #aaa; font-size: 15px; margin-bottom: 10px; }
.cta-phone { font-size: 36px; font-weight: 600; margin: 14px 0 24px; }
.cta-phone a { color: var(--purple-light); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  background: var(--purple);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--purple-light); }
.btn-outline {
  background: transparent;
  color: var(--silver);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #666;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--purple-light); color: var(--purple-light); }

/* SECTION HEADERS */
.section { padding: 64px 32px; }
.section-alt { background: var(--dark2); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title { font-size: 30px; font-weight: 500; color: #fff; }
.section-title span { color: var(--silver); }
.divider { width: 48px; height: 2px; background: var(--purple); margin: 14px auto 0; }

/* STATS BAR */
.stats-bar {
  background: var(--purple);
  padding: 22px 32px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 8px 48px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right: none; }
.stat .num { font-size: 36px; font-weight: 600; color: #fff; line-height: 1; }
.stat .lbl { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 10px 16px; }
  .section { padding: 48px 16px; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat:last-child { border-bottom: none; }
  .cta-phone { font-size: 28px; }
}
