/* ==========================================================================
   Shane's Way Moving — Site Stylesheet
   Organized in sections for easy editing in Dreamweaver:
   1. Fonts & Variables
   2. Base / Resets
   3. Navbar
   4. Hero
   5. Section Headings (shared)
   6. Services
   7. How It Works
   8. Testimonials
   9. Quote Form
   10. Footer
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

/* -------------------- 1. Fonts & Variables -------------------- */
:root {
  /* Brand colors */
  --orange-50:  #fff5e6;
  --orange-200: #ffd08a;
  --orange-400: #ffa629;
  --orange-500: #ff9900;
  --orange-600: #e68600;
  --orange-700: #c26f00;

  --gray-50:  #f7f7f7;
  --gray-200: #d9d9d9;
  --gray-500: #767676;
  --gray-700: #3a3a3a;
  --gray-800: #262626;
  --gray-900: #161616;

  --color-primary: var(--orange-500);
  --color-primary-hover: var(--orange-600);
  --color-primary-active: var(--orange-700);
  --color-primary-tint: var(--orange-50);
  --color-focus-ring: var(--orange-400);

  --color-text: var(--gray-800);
  --color-text-muted: var(--gray-500);
  --color-border: var(--gray-200);
  --color-bg-inset: var(--gray-50);

  /* Fonts */
  --font-display: "Audiowide", "Arial Narrow", sans-serif;
  --font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(22, 22, 22, 0.08);
  --shadow-md: 0 4px 12px rgba(22, 22, 22, 0.10);
  --shadow-brand: 0 8px 24px rgba(255, 153, 0, 0.28);

  /* Radius */
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------- 2. Base / Resets -------------------- */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
}

a {
  color: var(--color-primary-active);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-hover);
}

.btn-brand {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--gray-900);
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: background-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.btn-brand:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--gray-900);
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}
.btn-brand:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm) !important;
}

.btn-brand-lg {
  padding: 16px 28px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-outline-light-brand {
  background-color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #000;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 16px 28px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-active);
  margin-bottom: 10px;
}

/* -------------------- 3. Navbar -------------------- */
.sw-navbar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding-top: 14px;
  padding-bottom: 14px;
}
.sw-navbar .navbar-brand img {
  height: 34px;
}
.sw-navbar .nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
}
.sw-navbar .nav-link:hover {
  color: var(--color-primary-hover);
}
.sw-navbar .phone-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sw-navbar .phone-link img {
  width: 16px;
  height: 16px;
}

/* -------------------- 4. Hero -------------------- */
.hero-wrapper {
  position: relative;
  height: 400vh;
}
.hero {
  position: sticky;
  top: var(--navbar-h, 0px);
  min-height: 560px;
  height: calc(100vh - var(--navbar-h, 0px));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: center / cover no-repeat url(../assets/photos/hero-video-frame.png);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 80px 0;
  text-align: right;
}
.hero-kicker {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 72px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px 0;
  margin-left: auto;
  max-width: 760px;
}
.hero-sub {
  font-size: 20px;
  color: #fff;
  max-width: 540px;
  line-height: 1.55;
  margin: 0 0 32px auto;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-badge {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background-color: #2e2d2d;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: sw-scroll-pulse 2s ease-in-out infinite;
}
@keyframes sw-scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* Mobile: the scroll-scrub pin effect is desktop-only (see js/main.js —
   coarse-pointer devices get a plain autoplaying video instead). Collapse
   the 400vh scroll-track and sticky pin so mobile users aren't forced to
   scroll through a tall empty track waiting on it, and left-align the
   video frame instead of centering it. */
@media (hover: none), (pointer: coarse) {
  .hero-wrapper {
    height: auto;
  }
  .hero {
    position: relative;
    top: 0;
    height: auto;
    min-height: 640px;
  }
  .hero video {
    object-position: -250px center;
  }
	.hero-content {
  padding-right: 10px;
}
}

/* -------------------- 5. Section Headings -------------------- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: 40px;
  margin: 0 0 12px 0;
}
.section-heading p {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}



/* -------------------- 8. Testimonials -------------------- */
.testimonials-section {
  padding: 88px 0;
  background: #fff;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  height: 100%;
}
.testimonial-card p.quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 16px 0;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}
.testimonial-location {
  font-size: 13px;
  color: var(--color-text-muted);
}



/* -------------------- 10. Footer -------------------- */
.sw-footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding: 56px 0 32px;
}
.sw-footer img.footer-logo {
  height: 30px;
  margin-bottom: 14px;
}
.sw-footer p {
  font-size: 14px;
  line-height: 1.55;
}
.sw-footer h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
  font-family: var(--font-body);
}
.sw-footer .footer-link {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-200);
}
.sw-footer .footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 20px;
  font-size: 13px;
  margin-top: 36px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: var(--gray-700);
  margin-top: 14px;
  transition: background-color 200ms var(--ease-out);
}
.footer-social-link:hover {
  background: var(--color-primary);
}
.footer-social-link img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}
