/*
Theme Name: Lynn's Road Service
Theme URI: https://www.lynnsrs.com/
Author: Circular Marketing
Description: Custom brochure theme for Lynn's Road Service (mechanic shop & roadside assistance, Victoria, TX). Ported from static Tailwind pages. Uses the Tailwind Play CDN for utilities plus this stylesheet for a small set of custom rules.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lynns-road-service
*/

/* ===== Base ===== */
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; }

/* ===== Header logo ===== */
.custom-logo-link {
  display: inline-block;
}

.custom-logo {
  width: 62px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, .18));
}

@media (min-width: 768px) {
  .custom-logo {
    width: 76px;
    max-height: 64px;
  }
}

@media (min-width: 1024px) {
  .custom-logo {
    width: 100px;
    max-height: none;
  }
}

/* ===== Interior page banner overlay (service / about / our-work pages) ===== */
.banner-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

/* ===== Homepage hero rotating slides ===== */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* ===== Services slider (homepage) — hide scrollbar ===== */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* ===== Our Work gallery filter fade ===== */
.gallery-item { transition: opacity .25s ease; }

/* ===== Testimonials quote mark ===== */
.quote-mark { color: #459EFF; }

/* ===== Homepage Trustindex reviews ===== */
.homepage-trustindex-reviews {
  font-family: "DM Sans", sans-serif;
}

.homepage-trustindex-reviews > * {
  margin-inline: auto;
}

/* ===== Sticky header (solid) — keep in-page anchor jumps clear of it ===== */
:target { scroll-margin-top: 130px; }
#about, #services, #work, #contact, #testimonials { scroll-margin-top: 130px; }

/* ===== Rank Math breadcrumbs in interior heroes ===== */
.rank-math-breadcrumb,
.rank-math-breadcrumb p,
.hero-breadcrumbs {
  align-items: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 0;
  font-size: .9375rem;
}

.rank-math-breadcrumb a,
.hero-breadcrumbs a {
  color: #459EFF;
}

.rank-math-breadcrumb a:hover,
.hero-breadcrumbs a:hover {
  text-decoration: underline;
}

.rank-math-breadcrumb .last,
.hero-breadcrumbs .last {
  color: #fff;
  font-weight: 600;
}

/* ===== Homepage video ===== */
.homepage-video {
  aspect-ratio: 9 / 13;
  display: block;
}
