/*
Theme Name: EchoPixel
Theme URI: https://www.echopxl.com
Author: EchoPixel
Author URI: https://www.echopxl.com
Description: Custom WordPress theme for EchoPixel Printing & Digital Marketing in Las Vegas.
Version: 1.0.0
Text Domain: echopixel
*/

:root {
  --ep-navy: #06243d;
  --ep-blue: #09bff2;
  --ep-cyan: #16d7ff;
  --ep-white: #ffffff;
  --ep-light: #f4f8fb;
  --ep-text: #172331;
  --ep-muted: #5d6b78;
  --ep-border: rgba(6, 36, 61, 0.12);
  --ep-radius: 22px;
  --ep-shadow: 0 18px 45px rgba(6, 36, 61, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ep-text);
  background: var(--ep-white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 36, 61, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img { width: 245px; }

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--ep-white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.nav-menu a:hover { color: var(--ep-cyan); }

.header-cta {
  background: var(--ep-blue);
  color: var(--ep-navy);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(9,191,242,0.25), transparent 34%),
    linear-gradient(135deg, #031b30 0%, #06243d 58%, #021321 100%);
  color: var(--ep-white);
  padding: 105px 0 95px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  color: var(--ep-cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 0 0 24px;
  letter-spacing: -0.055em;
}

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 650px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 850;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--ep-blue);
  color: var(--ep-navy);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.28);
  color: var(--ep-white);
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.hero-card h2 {
  font-size: 28px;
  margin: 0 0 18px;
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-light { background: var(--ep-light); }

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 42px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  color: var(--ep-navy);
}

.section-head p {
  font-size: 18px;
  color: var(--ep-muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(6, 36, 61, 0.06);
}

.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ep-blue), var(--ep-cyan));
  margin-bottom: 18px;
}

.card h3 {
  color: var(--ep-navy);
  font-size: 21px;
  margin: 0 0 10px;
}

.card p {
  color: var(--ep-muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.feature-box {
  background: var(--ep-navy);
  color: var(--ep-white);
  padding: 42px;
  border-radius: 32px;
  box-shadow: var(--ep-shadow);
}

.feature-box h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 18px;
}

.feature-box p { color: rgba(255,255,255,0.82); }

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.check-item::before {
  content: "✓";
  color: var(--ep-cyan);
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-panel {
  background: var(--ep-white);
  border-radius: 28px;
  border: 1px solid var(--ep-border);
  padding: 34px;
}

.service-panel h3 {
  color: var(--ep-navy);
  font-size: 28px;
  margin: 0 0 16px;
}

.service-panel ul {
  columns: 2;
  margin: 0;
  padding-left: 20px;
  color: var(--ep-muted);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote {
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: 28px;
  padding: 30px;
}

.quote p {
  color: var(--ep-muted);
  margin-top: 0;
}

.quote strong { color: var(--ep-navy); }

.contact-band {
  background: linear-gradient(135deg, var(--ep-navy), #021321);
  color: var(--ep-white);
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
}

.contact-band h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 16px;
}

.contact-details {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  padding: 28px;
}

.contact-details p { margin: 0 0 12px; color: rgba(255,255,255,0.86); }

.site-footer {
  background: #021321;
  color: rgba(255,255,255,0.76);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-logo img { width: 220px; margin-bottom: 16px; }

.mobile-toggle { display: none; }

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-flex;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 10px 12px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    background: var(--ep-navy);
    padding: 20px;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.active { display: flex; }

  .header-cta { display: none; }

  .hero-grid,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .cards,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 72px 0; }
  .cards,
  .testimonials {
    grid-template-columns: 1fr;
  }
  .service-panel ul { columns: 1; }
  .contact-band { padding: 30px; }
}
