/* ============================================================
   Creative Entertainment NJ — Shared Styles
   Used by all pages: index.html, services.html, gallery.html, faq.html, contact.html
   ============================================================ */

:root {
  --coral:        #c8463c;
  --coral-dark:   #a83328;
  --coral-light:  #e07868;
  --cream:        #fdf6ec;
  --cream-2:      #f7ecd6;
  --gold:         #e8a335;
  --gold-soft:    #f3c577;
  --navy:         #1c2b3a;
  --navy-soft:    #3b4a5d;
  --ink:          #2a1f1a;
  --ink-soft:     #5c4d44;
  --hairline:     rgba(42, 31, 26, 0.12);

  --max:          1200px;
  --display:      "Fraunces", "Georgia", serif;
  --body:         "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0;
  color: var(--navy);
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ============================ MOCKUP BANNER ============================ */
.mockup-banner {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.mockup-banner strong { color: var(--gold-soft); margin-right: 8px; }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  font-style: italic;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.012em;
}
.brand-name em { color: var(--coral); font-style: italic; font-weight: 500; }
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); font-weight: 600; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--cream) !important;
  padding: 11px 22px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(200, 70, 60, 0.25);
}
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.menu-toggle { display: none; padding: 8px; color: var(--navy); }
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--hairline);
    padding: 14px 28px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px dashed var(--hairline); }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin-top: 14px; text-align: center; justify-content: center; }
  .menu-toggle { display: block; }
}

/* ============================ SHARED BUTTON & SECTION COMPONENTS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(200, 70, 60, 0.3);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 70, 60, 0.35);
}
.btn-ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 14px 26px;
}
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn svg { width: 18px; height: 18px; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-label::before { content: "✦ "; }
.section-heading {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.section-heading em { font-style: italic; color: var(--coral); }
.section-intro {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================ PAGE HEADER (used on non-home pages) ============================ */
.page-header {
  background: var(--cream-2);
  padding: 70px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.page-header .section-label { margin-bottom: 14px; }
.page-header h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.04;
  margin-bottom: 18px;
}
.page-header h1 em { font-style: italic; color: var(--coral); }
.page-header .lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================ CTA STRIP (reusable bottom-of-page) ============================ */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.18;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0.08;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
}
.cta-strip h2 em { color: var(--gold-soft); }
.cta-strip .lede {
  font-size: 18px;
  color: rgba(253, 246, 236, 0.9);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--coral-dark);
  white-space: nowrap;
  padding: 20px 36px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cta-phone:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18); }
.cta-phone svg { width: 26px; height: 26px; }
.cta-meta {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(253, 246, 236, 0.85);
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--navy);
  color: rgba(253, 246, 236, 0.75);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-block { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-block .brand-mark { background: var(--coral); }
.footer-brand-block .brand-name { color: var(--cream); }
.footer-brand-block .brand-name em { color: var(--gold-soft); }
.footer-brand-block .brand-sub { color: rgba(253, 246, 236, 0.6); }
.footer p { font-size: 14.5px; line-height: 1.6; color: rgba(253, 246, 236, 0.7); max-width: 320px; }
.footer h4 {
  font-family: var(--body);
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: rgba(253, 246, 236, 0.75); font-size: 14.5px; transition: color 0.2s ease; }
.footer a:hover { color: var(--gold-soft); }
.footer-base {
  padding-top: 28px;
  border-top: 1px solid rgba(253, 246, 236, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(253, 246, 236, 0.55);
}

/* Footer social icons row */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.08);
  border: 1px solid rgba(253, 246, 236, 0.18);
  display: grid; place-items: center;
  color: rgba(253, 246, 236, 0.8);
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; stroke-width: 2; }

/* ============================ REVEAL ANIMATION ============================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}
