/* Pro-Line Coatings | September 2026 rewrite additions.
   Loaded after /css/proline.css (the compiled Tailwind build). Everything the
   compiled build does not contain lives here, un-scoped, so hand-authored
   pages do not depend on Astro's data-astro-cid attributes. */

/* Continuity bar above the nav */
.pl-bar{background:#FFD600;color:#09090b;font-family:'Cabinet Grotesk',sans-serif;font-weight:900;font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;text-align:center;height:28px;display:flex;align-items:center;justify-content:center;padding:0 1rem;line-height:1.1}
@media (max-width:420px){.pl-bar{font-size:.58rem;letter-spacing:.08em}}

/* Header nav: eight links need more room than the old five, so the desktop
   nav appears from 1180px instead of 768px. */
#nav-desktop{display:none}
#mobile-menu{top:102px;height:calc(100vh - 102px);overflow-y:auto}
@media (min-width:1180px){
  #nav-desktop{display:flex}
  #menu-toggle{display:none}
  #mobile-menu{display:none}
}

/* Effects that the Astro build scoped to component ids */
@keyframes marquee{0%{transform:translate(0)}to{transform:translate(-50%)}}
@keyframes marquee-reverse{0%{transform:translate(-50%)}to{transform:translate(0)}}
.animate-marquee{animation:marquee 25s linear infinite}
.animate-marquee-reverse{animation:marquee-reverse 25s linear infinite}
.text-shadow-glow{text-shadow:0 0 12px rgba(255,214,0,.4)}
@keyframes bounce-subtle{0%,to{transform:translateY(0)}50%{transform:translateY(-4px)}}
.animate-bounce-subtle{animation:bounce-subtle 4s ease-in-out infinite}
.text-shadow-sm{text-shadow:0 2px 4px rgba(0,0,0,.5)}
.text-accent-shadow{text-shadow:3px 3px 0px #FFD600}
@keyframes pulse-subtle{0%,to{opacity:1}50%{opacity:.75}}
.animate-pulse-subtle{animation:pulse-subtle 3s ease-in-out infinite}

/* Breadcrumb (from the city pages) */
.breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;margin-bottom:2rem;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;color:#71717a}
.breadcrumb a{transition:color .2s}
.breadcrumb a:hover{color:#09090b}
.breadcrumb .current{color:#09090b}
.breadcrumb .ph{font-size:.625rem}

/* Prose helpers */
.pl-prose p+p{margin-top:1rem}
.pl-list{list-style:none;margin:0;padding:0}
.pl-list li{position:relative;padding-left:1.5rem;margin-top:.6rem}
.pl-list li::before{content:"";position:absolute;left:0;top:.55em;width:.7rem;height:.7rem;background:#FFD600;border:2px solid #09090b;border-radius:3px}
.pl-callout{border-left:4px solid #FFD600}
.pl-hero-lines br{display:none}
@media (min-width:768px){.pl-hero-lines br{display:inline}}

/* Utilities the compiled build never emitted */
.border-3{border-width:3px}
.pt-12{padding-top:3rem}
.pb-8{padding-bottom:2rem}
.pb-4{padding-bottom:1rem}
.min-h-\[320px\]{min-height:320px}
