/*
Theme Name:   LPM Concrete Child
Template:     zaaztheme
Description:  Child theme of zaaztheme for lpmconcrete.com.
Author:       Zaaz
Version:      0.2.0
Text Domain:  lpmconcrete-child
*/

/* Typography — Oswald + Inter, industrial condensed */

body, .zt-main, .zt-footer, .zt-top-bar {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.005em;
  color: #262626;
  background: #FAFAFA;
}

.zt-site-title, .zt-site-title a, .zt-header-brand {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.zt-nav__link, .zt-nav__submenu .zt-nav__link,
.zt-top-bar-menu .menu-item a, .zt-footer__menu .menu-item a {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #262626;
}
.zt-nav__link:hover, .zt-footer__menu .menu-item a:hover { color: #DC2626; }

h1, h2, h3, h4, h5, h6, .zt-heading {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #171717;
}

/* Hero — concrete photo + dark overlay with red accent stripe */
.lp-hero-bg {
  position: relative;
  margin: -96px calc(50% - 50vw) 0;
  padding: 140px calc(50vw - 50%) 120px;
  color: #FAFAFA;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(23,23,23,0.90) 0%, rgba(23,23,23,0.70) 55%, rgba(220,38,38,0.45) 100%),
    url("/wp-content/uploads/2026/04/lp-hero.jpg") center/cover no-repeat,
    #171717;
}
.lp-hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 92% 100%, rgba(220,38,38,0.22) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.lp-hero-bg > * { position: relative; z-index: 1; }

.lp-subhero {
  position: relative;
  margin: -96px calc(50% - 50vw) 0;
  padding: 88px calc(50vw - 50%) 64px;
  color: #FAFAFA;
  background: linear-gradient(100deg, #171717 0%, #262626 55%, #3F1415 100%);
}

.lp-accent-bar {
  width: 56px; height: 4px;
  background: #DC2626; border-radius: 2px;
  margin: 0 0 20px;
}
.lp-accent-bar--center { margin-left: auto; margin-right: auto; }

.lp-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #DC2626;
  margin-bottom: 14px;
}

.lp-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(23, 23, 23, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.lp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

.lp-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
  color: #FAFAFA;
  margin-bottom: 18px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 180ms ease;
}
.lp-btn--primary {
  background: #DC2626;
  color: #FAFAFA !important;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}
.lp-btn--primary:hover {
  background: #B91C1C;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.45);
  transform: translateY(-1px);
}
.lp-btn--ghost {
  background: transparent;
  color: #FAFAFA !important;
  border: 1.5px solid rgba(250, 250, 250, 0.4);
}
.lp-btn--ghost:hover {
  background: rgba(250, 250, 250, 0.1);
  border-color: rgba(250, 250, 250, 0.8);
}
.lp-btn--whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.lp-btn--whatsapp:hover { background: #1DA851; }

/* Grids */
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-row-icon { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.lp-icon-badge {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(220, 38, 38, 0.1); color: #DC2626;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-check-list { list-style: none; padding: 0; margin: 0; }
.lp-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 0.97rem;
  line-height: 1.5;
  color: #404040;
}
.lp-check-item:last-child { border-bottom: none; }
.lp-check-dot {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  border-radius: 50%; background: #DC2626; color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: #DC2626;
}

@media (max-width: 900px) {
  .lp-hero-bg, .lp-subhero { padding-left: 24px; padding-right: 24px; }
  .lp-grid-2, .lp-grid-3, .lp-hero-grid { grid-template-columns: 1fr !important; }
}
