/* === Bayside Coin Laundry — shared styles for location / area pages ===
   Matches the design tokens used by index.html and parking/index.html.
   Linked by the pages under /laundromat-*/ and /service-area/. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d2b45;
  --navy-mid:   #14435e;
  --teal:       #1a7a8a;
  --teal-light: #22a0b4;
  --white:      #ffffff;
  --offwhite:   #f4f7f9;
  --text:       #1a2733;
  --muted:      #55707f;
  --border:     #d4e0e8;
  --accent:     #e8a020;
  --accent-dark:#c8881a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Announcement bar */
.announce-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.announce-bar a { color: #fff; text-decoration: none; }

/* Header */
.site-header { background: var(--navy); color: #fff; padding: 14px 24px; }
.header-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.phone-btn {
  display: inline-block; background: var(--accent); color: var(--navy);
  font-weight: 800; font-size: 1rem; padding: 8px 18px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
}
.phone-btn:hover { background: var(--accent-dark); }
.hours-note { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.nav-logo { height: 80px; width: auto; display: block; }

/* Hero */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff; text-align: center; padding: 60px 24px 64px;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem); font-weight: 800; line-height: 1.2;
  max-width: 720px; margin: 0 auto 16px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta {
  background: var(--accent); color: var(--navy); font-weight: 700; font-size: 1rem;
  padding: 14px 30px; border-radius: 8px; text-decoration: none; display: inline-block;
  transition: background 0.15s;
}
.btn-cta:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
  font-weight: 600; font-size: 1rem; padding: 12px 28px; border-radius: 8px;
  text-decoration: none; display: inline-block; transition: border-color 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.75); }

/* Facts / advantages strip */
.facts-strip { background: var(--teal); color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto; }
.fact-item { padding: 20px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.18); }
.fact-item:last-child { border-right: none; }
.fact-icon { font-size: 1.4rem; margin-bottom: 5px; }
.fact-val  { font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.fact-lbl  { font-size: 0.68rem; font-weight: 500; opacity: 0.78; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* Sections */
.section-white   { background: var(--white); }
.section-offwhite { background: var(--offwhite); }
.section-wrap { padding: 60px 24px; }
.section-inner { max-width: 820px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.section-title { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.section-sub { font-size: 1rem; color: var(--muted); margin-bottom: 32px; max-width: 580px; }
.prose p { font-size: 1rem; color: var(--text); margin-bottom: 16px; line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); }
.prose a { color: var(--teal); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* Services grid (reused) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 20px; box-shadow: 0 2px 8px rgba(13,43,69,0.06);
}
.svc-icon { font-size: 2rem; margin-bottom: 12px; }
.svc-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.svc-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }

/* Callout box */
.callout-box { background: var(--navy); border-radius: 14px; padding: 36px 40px; color: #fff; }
.callout-box h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: #fff; }
.callout-box p { font-size: 0.95rem; color: rgba(255,255,255,0.82); margin-bottom: 20px; line-height: 1.65; }
.callout-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.callout-list li { font-size: 0.9rem; color: rgba(255,255,255,0.82); display: flex; align-items: flex-start; gap: 10px; }
.callout-list li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Directions / drive block */
.drive-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--navy); border-radius: 14px; padding: 36px 24px;
  text-decoration: none; text-align: center; color: #fff; transition: background 0.15s;
}
.drive-card:hover { background: var(--navy-mid); }
.drive-card .map-emoji { font-size: 2.8rem; margin-bottom: 12px; }
.drive-card strong { font-size: 1rem; font-weight: 700; display: block; margin-bottom: 4px; }
.drive-card span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }

/* Area list (surrounding towns) */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.area-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; }
.area-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.area-card .area-drive { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-bottom: 6px; }
.area-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.area-card a { color: var(--teal); font-weight: 600; text-decoration: none; }
.area-card a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
summary {
  padding: 16px 20px; font-weight: 600; font-size: 0.95rem; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; user-select: none;
}
summary::-webkit-details-marker { display: none; }
.faq-icon { font-size: 1.1rem; color: var(--teal); flex-shrink: 0; font-weight: 400; line-height: 1; }
details[open] summary { border-bottom: 1px solid var(--border); }
details p { padding: 16px 20px; font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
details p a { color: var(--teal); font-weight: 600; text-decoration: none; }
details p a:hover { text-decoration: underline; }

/* Back link */
.back-link-wrap { text-align: center; padding: 28px 24px 36px; background: var(--offwhite); }
.back-link { color: var(--teal); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.back-link:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); text-align: center; padding: 36px 24px; font-size: 0.85rem; line-height: 1.8; }
.site-footer strong { color: #fff; }
.site-footer a { color: var(--teal-light); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-areas { margin-top: 14px; font-size: 0.8rem; }
.footer-copy { margin-top: 16px; font-size: 0.75rem; opacity: 0.4; }

/* Responsive */
@media (max-width: 768px) {
  .dir-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .fact-item:last-child { border-bottom: none; }
  .section-title { font-size: 1.45rem; }
  .callout-box { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .header-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .header-right { align-items: center; }
  .nav-logo { height: 64px; }
  .hero { padding: 48px 20px 52px; }
  .section-wrap { padding: 44px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .btn-cta, .btn-outline { width: 100%; text-align: center; }
}
