/* Peace River Propane Delivery Ltd. — Shared Stylesheet */

:root {
  --red: #D42027;
  --red-dark: #a81a20;
  --dark: #111111;
  --white: #ffffff;
  --gray: #f6f6f6;
  --border: #e4e4e4;
  --muted: #5a5a5a;
  --muted-2: #999999;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── HEADER ─── */
.site-header {
  background: var(--dark);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.55);
}
.logo-img { height: 46px; width: auto; flex-shrink: 0; }
.header-right { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: #bbb;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-phone {
  margin-left: 12px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-phone:hover { background: var(--red-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #bbb; border-radius: 2px; }

.mobile-nav {
  display: none;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
  padding: 6px 20px 14px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.red { color: var(--red); font-weight: 700; }

/* ─── LAYOUT ─── */
.section { padding: 72px 40px; }
.section-sm { padding: 52px 40px; }
.container { max-width: 1060px; margin: 0 auto; }

/* ─── TYPOGRAPHY ─── */
.label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.sub { color: var(--muted); font-size: 0.98rem; line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
p { line-height: 1.7; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 27px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: #ececec; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.09); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── BACKGROUNDS ─── */
.bg-dark { background: var(--dark); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark .sub { color: #aaa; }
.bg-dark .label { color: #e07070; }
.bg-red { background: var(--red); color: var(--white); }
.bg-red h2 { color: var(--white); }
.bg-red .sub { color: rgba(255,255,255,0.85); }
.bg-red .label { color: rgba(255,255,255,0.65); }
.bg-gray { background: var(--gray); }

/* ─── HOME HERO ─── */
.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('truck.jpg');
  background-size: cover;
  background-position: center 38%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.8) 45%, rgba(17,17,17,0.22) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 40px; max-width: 680px; }
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.hero-inner h1 { color: var(--white); margin-bottom: 18px; }
.hero-inner h1 em { font-style: normal; color: var(--red); }
.hero-sub { color: #c5c5c5; font-size: 1.05rem; line-height: 1.72; max-width: 510px; margin-bottom: 34px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--dark);
  padding: 56px 40px;
  border-bottom: 3px solid var(--red);
}
.page-hero .label { color: #e07070; }
.page-hero h1 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.page-hero p { color: #aaa; font-size: 1rem; max-width: 640px; margin-top: 12px; line-height: 1.72; }

/* ─── SERVICE CARDS ─── */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.service-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 32px 26px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(212,32,39,0.1); transform: translateY(-2px); }
.service-card-icon {
  width: 50px; height: 50px;
  background: var(--red);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h3 { color: var(--dark); margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.card-arrow { color: var(--red); font-size: 0.85rem; font-weight: 700; }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}
.why-item::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── SPLIT LAYOUT ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: 10px; }

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.feature-list.light li { color: #ccc; border-color: rgba(255,255,255,0.09); }
.feature-list.light li::before { color: #e07070; }

/* ─── AREA GRID ─── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 12px; }
.area-item {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 17px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── TAGS ─── */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 100px;
}
.tag.dark { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.tag.light { background: #efefef; border: 1px solid #ddd; color: var(--dark); }

/* ─── CONTACT CARDS ─── */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.contact-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 30px 22px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover { border-color: var(--red); box-shadow: 0 4px 18px rgba(212,32,39,0.09); }
.contact-card .icon { font-size: 1.9rem; margin-bottom: 9px; }
.card-label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-2); margin-bottom: 6px; display: block; font-weight: 600; }
.contact-card a { color: var(--dark); font-size: 1.08rem; font-weight: 700; text-decoration: none; display: block; line-height: 1.5; }
.contact-card a:hover { color: var(--red); }
.sub-info { font-size: 0.8rem; color: var(--muted-2); display: block; margin-top: 2px; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--red); text-align: center; padding: 60px 40px; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1rem; max-width: 480px; margin: 0 auto 26px; line-height: 1.7; }

/* ─── AURORA PHOTO BANNER ─── */
.photo-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 40px;
}
.photo-banner-bg {
  position: absolute; inset: 0;
  background-image: url('aurora.jpg');
  background-size: cover;
  background-position: center;
}
.photo-banner-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.62); }
.photo-banner-content { position: relative; z-index: 2; max-width: 700px; }
.photo-banner-content .label { color: #e07070; margin-bottom: 14px; }
.photo-banner-content h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.photo-banner-content p { color: #ccc; font-size: 1.05rem; line-height: 1.7; }

/* ─── FOOTER ─── */
.site-footer { background: #000; padding: 52px 40px 28px; }
.footer-top {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid #1e1e1e;
}
.footer-logo-img { height: 38px; opacity: 0.75; margin-bottom: 14px; }
.footer-brand p { color: #4a4a4a; font-size: 0.86rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: #555; margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; color: #3a3a3a; text-decoration: none; font-size: 0.86rem; padding: 3.5px 0; transition: color 0.2s; }
.footer-col a:hover { color: #aaa; }
.footer-col p { color: #3a3a3a; font-size: 0.86rem; line-height: 1.75; }
.footer-col strong { color: #555; }
.footer-bottom {
  max-width: 1060px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #2e2e2e;
}
.footer-bottom strong { color: #555; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-header { padding: 0 16px; height: 64px; }
  .header-right { display: none; }
  .hamburger { display: flex; }
  .section { padding: 52px 20px; }
  .section-sm { padding: 40px 20px; }
  .page-hero { padding: 40px 20px; }
  .home-hero { min-height: 540px; }
  .hero-inner { padding: 52px 20px; }
  .photo-banner { padding: 60px 20px; }
  .cta-banner { padding: 48px 20px; }
  .site-footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-cards { grid-template-columns: 1fr; }
}
