/*
Theme Name: Black Horizon Logistics
Theme URI: https://www.blackhorizonlogistics.ca
Author: Black Horizon Logistics
Description: A professional starter WordPress theme for an enclosed vehicle transport business based in Waterdown, Ontario.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: black-horizon-logistics
*/

:root {
  --bhl-black: #07090d;
  --bhl-charcoal: #111827;
  --bhl-slate: #273244;
  --bhl-gold: #d6a84f;
  --bhl-gold-dark: #b9872e;
  --bhl-light: #f6f7f9;
  --bhl-white: #ffffff;
  --bhl-muted: #6b7280;
  --bhl-border: #e5e7eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--bhl-charcoal);
  background: var(--bhl-white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  background: rgba(7,9,13,.96);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
}
.logo span { color: var(--bhl-gold); }
.main-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 14px; opacity: .92; }
.main-nav a:hover { color: var(--bhl-gold); }
.header-call {
  background: var(--bhl-gold);
  color: #090909 !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800 !important;
}

.hero {
  background:
    linear-gradient(115deg, rgba(7,9,13,.94) 0%, rgba(7,9,13,.82) 48%, rgba(7,9,13,.56) 100%),
    radial-gradient(circle at 80% 20%, rgba(214,168,79,.22), transparent 28%),
    linear-gradient(135deg, #07090d, #1f2937);
  color: white;
  padding: 92px 0 78px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.kicker { color: var(--bhl-gold); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: 13px; margin-bottom: 14px; }
h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.03; margin: 0 0 22px; letter-spacing: -.04em; }
.hero p { font-size: 19px; color: rgba(255,255,255,.86); margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn-primary { background: var(--bhl-gold); color: #090909; }
.btn-primary:hover { background: var(--bhl-gold-dark); }
.btn-secondary { border-color: rgba(255,255,255,.24); color: white; }
.btn-secondary:hover { border-color: var(--bhl-gold); color: var(--bhl-gold); }
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}
.hero-card h2 { margin-top: 0; color: white; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 10px 0 10px 34px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--bhl-gold); font-weight: 900; }

.section { padding: 74px 0; }
.section.alt { background: var(--bhl-light); }
.section h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.12; margin: 0 0 16px; letter-spacing: -.03em; }
.section-intro { color: var(--bhl-muted); max-width: 760px; font-size: 18px; margin-bottom: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: start; }
.card {
  background: white;
  border: 1px solid var(--bhl-border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 35px rgba(17,24,39,.06);
}
.card.dark { background: var(--bhl-charcoal); color: white; border-color: var(--bhl-charcoal); }
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { margin: 0; color: var(--bhl-muted); }
.card.dark p { color: rgba(255,255,255,.78); }
.icon { width: 42px; height: 42px; background: rgba(214,168,79,.15); color: var(--bhl-gold-dark); border-radius: 14px; display: grid; place-items: center; font-weight: 900; margin-bottom: 16px; }
.service-list { columns: 2; padding-left: 20px; }
.service-list li { margin-bottom: 8px; }
.quote-box { background: var(--bhl-black); color: white; border-radius: 26px; padding: 34px; }
.quote-box a { color: var(--bhl-gold); font-weight: 800; }
.contact-strip { background: var(--bhl-gold); color: #090909; padding: 34px 0; }
.contact-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.contact-strip h2 { margin: 0; font-size: 28px; }
.contact-strip .btn { background: #090909; color: white; }

.form-wrap { background: white; border: 1px solid var(--bhl-border); border-radius: 24px; padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 700; display: block; margin-bottom: 6px; }
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
button.btn { cursor: pointer; border: none; }

.site-footer { background: var(--bhl-black); color: rgba(255,255,255,.78); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer strong { color: white; }

.page-content { padding: 70px 0; }
.page-content h1 { color: var(--bhl-charcoal); font-size: 44px; }

@media (max-width: 850px) {
  .hero-grid, .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero { padding: 70px 0; }
  .service-list { columns: 1; }
}
