/*
Theme Name: Wrap City Co
Theme URI: https://wrapcityco.com
Author: Wrap City Co
Description: One-page custom theme for Wrap City Co — Harrisburg, PA vehicle wrap shop.
Version: 1.0
*/

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --accent: #ff2d2d;
  --accent-hover: #ff4d4d;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
  --border: #2a2a2a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--fg); text-decoration: none; font-weight: 800;
  font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-brand img { width: 36px; height: 36px; border-radius: 6px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-hover); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.9) 100%),
    radial-gradient(at top right, #1a0808 0%, #0a0a0a 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: all 0.15s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { color: var(--fg); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Sections ===== */
section { padding: 96px 0; }
.section-eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.about-grid p strong { color: var(--fg); }
.about-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.2s;
}
.service:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service p { color: var(--muted); font-size: 15px; }
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery { background: var(--bg-2); }
.gallery-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-frame .metaslider { width: 100% !important; }
.gallery-frame .metaslider img { width: 100% !important; height: auto !important; }
.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}
.gallery-note a { color: var(--accent); text-decoration: none; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-item { margin-bottom: 32px; }
.contact-item h4 {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-item p, .contact-item a {
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
}
.contact-item a:hover { color: var(--accent); }
.cta-card {
  background: linear-gradient(135deg, #2d0d0d 0%, #1a0606 100%);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 40px;
}
.cta-card h3 { font-size: 26px; margin-bottom: 16px; font-weight: 800; line-height: 1.2; }
.cta-card p { color: var(--muted); margin-bottom: 24px; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-2);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ===== Social callout (prominent) ===== */
.socials-callout {
  margin-top: 28px;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,45,45,0.10), rgba(255,45,45,0.02) 70%);
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.socials-callout-text { margin-bottom: 18px; }
.socials-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 4px;
}
.socials-tag {
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
}
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  position: relative;
  isolation: isolate;
}
.social svg { width: 22px; height: 22px; flex: 0 0 22px; }
.social .social-label { white-space: nowrap; }

/* Facebook — solid blue */
.social-fb { background: #1877F2; }
.social-fb:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24,119,242,0.45);
  filter: brightness(1.08);
}

/* Instagram — official gradient */
.social-ig {
  background: linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
}
.social-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214,41,118,0.45);
  filter: saturate(1.15) brightness(1.05);
}

/* TikTok — black with cyan/pink halo on hover */
.social-tt { background: #000; }
.social-tt:hover {
  transform: translateY(-2px);
  box-shadow:
    -3px 0 0 0 #FE2C55,
    3px 0 0 0 #25F4EE,
    0 10px 24px rgba(254,44,85,0.35);
}

@media (max-width: 520px) {
  .social { padding: 11px 16px; font-size: 13px; }
  .social svg { width: 18px; height: 18px; flex-basis: 18px; }
}

/* Override prior socials-callout — full-width below the contact grid */
#contact .socials-callout {
  margin-top: 48px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
#contact .socials-callout-text { display: none; }
#contact .socials-eyebrow { margin-bottom: 0; }
#contact .socials { gap: 14px; }
@media (max-width: 720px) {
  #contact .socials-callout { padding: 22px; justify-content: center; text-align: center; }
}
