/* ============================================================
   AMERICAN LASER CUTTER — SHARED STYLESHEET
   Covers: learnlightburn.com, lacustomstencil.com,
           lalaserrent.com, acrylicshopla.com,
           lalasercrafts.com, fixmylasercutter.com
   ============================================================ */

:root {
  --accent:      #e63946;
  --accent-dark: #c0303b;
  --text:        #1a1a2e;
  --text-muted:  #555;
  --bg:          #ffffff;
  --bg-light:    #f6f7f9;
  --border:      #e0e0e0;
  --radius:      8px;
  --shadow:      0 2px 14px rgba(0,0,0,0.08);
  --max-w:       1100px;
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); }
figcaption { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.4rem; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1.25rem; }
.bg-light { background: var(--bg-light); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
section, .wrap {
  padding: 4.5rem 0;
}
section.bg-light, .section-alt {
  background: var(--bg-light);
}

/* Inner wrappers for lalasercrafts pattern */
.section, .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap > .section,
.section-alt > .section-inner {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
header:not(.hero),
body > nav {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* header > .container layout (lacustomstencil, lalaserrent, etc.) */
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* bare <nav> at top of body (lalasercrafts, fixmylasercutter pattern) */
body > nav,
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0.9rem 1.75rem;
}

/* Logo */
.logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span, .logo > span:first-child {
  color: var(--accent);
}
.logo:hover { text-decoration: none; color: var(--text); }

/* Nav links */
nav a, .nav-links a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: 1.25rem;
  transition: color 0.2s;
}
nav a:hover, .nav-links a:hover { color: var(--accent); }
nav > a:first-child { margin-left: 0; } /* logo */

.nav-links { display: flex; align-items: center; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn, .btn-primary, .btn-secondary, .btn-outline, .btn-quote {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn-primary, .btn.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover, .btn.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}

.btn-secondary, .btn.btn-secondary, .btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover, .btn.btn-secondary:hover, .btn-outline:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.btn-quote {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}
.btn-quote:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}

.cta-group, .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--accent);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* hero with background image (lalasercrafts) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero-inner, .hero-content, .container.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1, .hero h2 { color: #fff; }
.hero p, .hero .hero-text p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 620px; }

.hero .btn-primary, .hero .btn.btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.hero .btn-primary:hover { background: #f0f0f0; border-color: #f0f0f0; }

.hero .btn-secondary, .hero .btn-outline, .hero .btn.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover, .hero .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* hero two-col layout */
.hero-content { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.hero-text { flex: 1 1 300px; }
.hero-image { flex: 1 1 280px; }
.hero-image img { border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

/* info banner under hero */
.info-banner {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.info-banner .container { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: flex-start; }
.info-item { display: flex; flex-direction: column; }
.info-item .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.info-item .value { font-weight: 600; color: var(--text); font-size: 0.95rem; }

/* ─── GRID LAYOUTS ────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

/* ─── CARDS ───────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.card h3, .card strong { color: var(--text); display: block; margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; margin-bottom: 0; }

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-grid, .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.gallery-item { display: flex; flex-direction: column; }
.gallery-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-grid, .faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.faq-label, .faq-toggle {
  font-weight: 600;
  color: var(--text);
  font-size: 0.975rem;
  cursor: pointer;
  display: block;
  margin-bottom: 0.5rem;
}
.faq-answer p, .faq-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ─── REVIEWS ─────────────────────────────────────────────── */
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.6rem; }
.author {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── PRICING ─────────────────────────────────────────────── */
.price-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.price-box {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-box:first-child { border-color: var(--accent); }
.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.price-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.price-box ul { margin-top: 1.25rem; text-align: left; }
.price-box ul li { padding: 0.3rem 0; font-size: 0.9rem; color: var(--text-muted); }
.price-box .btn, .price-box .btn-primary { display: block; margin-top: 1.5rem; text-align: center; }

/* secondary pricing box */
.price-box.secondary { border-color: var(--border); }

/* ─── BRAND TAGS ──────────────────────────────────────────── */
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.brand-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

/* ─── CHECKLISTS ──────────────────────────────────────────── */
.check-list { margin-top: 1rem; }
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ─── CONTACT / CONTACT INFO ─────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-line {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-block { display: grid; gap: 1rem; }
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 70px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-value { color: var(--text); font-size: 0.95rem; }
.contact-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }
.email-link-large {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}
.hours-info { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }
.embedded-contact {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.small { font-size: 0.82rem; color: var(--text-muted); }

/* ─── GUIDELINES BOX ─────────────────────────────────────── */
.guidelines-box {
  background: #fff8f8;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 680px;
}
.guidelines-box h3, .guidelines-box strong { color: var(--accent); }

/* ─── FEATURE BLOCKS ─────────────────────────────────────── */
.feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ─── CTA BAND (lalasercrafts) ───────────────────────────── */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-band .ctas { justify-content: center; }
.cta-band .btn-primary, .cta-band a.btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}

footer .container,
footer .container.footer-content,
.footer-content,
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-start;
  justify-content: space-between;
}

footer p, footer a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
footer a:hover { color: #fff; text-decoration: underline; }

.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col strong, .footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ─── SECTION TITLES ─────────────────────────────────────── */
.section-title { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 2rem; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  nav a, .nav-links a { margin-left: 0.75rem; font-size: 0.82rem; }
  .hero { padding: 3.5rem 0; }
  .hero-content { flex-direction: column; }
  .hero-image { display: none; }
  section, .wrap { padding: 3rem 0; }
  .wrap > .section, .section-alt > .section-inner { padding-top: 3rem; padding-bottom: 3rem; }
  .price-boxes { grid-template-columns: 1fr; }
  .info-banner .container { flex-direction: column; gap: 0.75rem; }
  .gallery-grid, .gallery { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  body > nav, .navbar { padding: 0.75rem 1rem; }
  .cta-group, .ctas { flex-direction: column; align-items: flex-start; }
  .hero .cta-group, .hero .ctas, .cta-band .ctas { align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .cards { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .brand-list { gap: 0.4rem; }
}
