/* ═══════════════════════════════════════════════════
   findus.css
═══════════════════════════════════════════════════ */

/* ── MAIN SECTION ──
   White pop-art halftone (matches #vibes on the home page). */
.findus-section {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(0,0,0,.13) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  padding: 4rem 0 5rem;
}

.findus-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem; max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; align-items: start;
}

/* ── CONTACT BLOCKS ──
   No background / border / shadow — just a single-color SVG icon.
   `currentColor` on the SVG lets one CSS rule drive every icon. */
.contact-block {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-block__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.contact-block__icon svg {
  width: 100%; height: 100%; fill: currentColor;
}

/* Social icons inside the findus contact card: plain black glyphs in a thin light frame. */
.findus-section .soc-btn {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  color: var(--black);
}
.findus-section .soc-btn svg { width: 18px; height: 18px; }
.findus-section .soc-btn:hover {
  border-color: var(--black);
  color: var(--red);
  transform: translateY(-2px);
}

.contact-block__text h4 {
  font-family: var(--font-head); font-size: 1rem; letter-spacing: 2px;
  color: var(--red); margin-bottom: .2rem;
}
.contact-block__text p  { font-size: .9rem; line-height: 1.6; color: #444; }
.contact-block__text a  { color: #444; transition: color .2s; }
.contact-block__text a:hover { color: var(--red); }

.contact-social { display: flex; gap: .6rem; margin-top: .6rem; }

/* ── HOURS ──
   Pop-art card: white surface, thick black outline, red left bar,
   hard offset shadow — mirrors the vibes-slide treatment on home.
   Subtle animated yellow accents tie it back to the brand palette:
     · faint yellow halftone dots fill the card background
     · "marching" dashed yellow underline under the heading
     · pulsing yellow status dot at the start of every row */
.hours-box {
  position: relative;
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(255,214,0,.14) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  border: 3px solid var(--black);
  border-left: 8px solid var(--red);
  box-shadow: 6px 6px 0 var(--black);
  padding: 1.3rem 1.5rem;
  margin-top: .5rem;
  overflow: hidden;
}
.hours-box h4 {
  position: relative;
  font-family: var(--font-head); font-size: 1.7rem; letter-spacing: 2px;
  color: var(--black); margin-bottom: .9rem;
  padding-bottom: .55rem;
}
/* Marching yellow dashes under the heading. */
.hours-box h4::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background-image: linear-gradient(
    90deg,
    var(--yellow) 0, var(--yellow) 12px,
    transparent 12px, transparent 22px
  );
  background-size: 22px 3px;
  animation: hoursMarch 1.4s linear infinite;
}
@keyframes hoursMarch {
  to { background-position: 22px 0; }
}

.hours-row {
  position: relative;
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .55rem 0;
  padding-inline-start: 1.4rem;            /* room for the status dot (flips in RTL) */
  border-bottom: 1px solid #eee;
  font-size: .9rem; font-weight: 700;
}
.hours-row:last-child { border-bottom: none; }

/* Pulsing yellow status dot. Logical positioning so it hugs the start edge in both LTR + RTL. */
.hours-row::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(255, 214, 0, .55);
  animation: hoursDotPulse 2.2s ease-in-out infinite;
}
@keyframes hoursDotPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255, 214, 0, .55); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 214, 0, 0);   }
}

.hours-row__day  {
  color: var(--red);
  font-family: var(--font-head); letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hours-row__time {
  color: var(--black);
  font-family: var(--font-head); letter-spacing: 1px;
}
.hours-empty { color: #888; font-size: .85rem; }

/* Respect users who opt out of motion. */
@media (prefers-reduced-motion: reduce) {
  .hours-box h4::after,
  .hours-row::before { animation: none; }
}

/* ── MAP ── */
.map-container {
  border: 3px solid #2a2a2a; overflow: hidden;
  box-shadow: 8px 8px 0 var(--red); position: relative;
}
.map-container__tag {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--red); color: var(--yellow);
  font-family: var(--font-head); font-size: .85rem; letter-spacing: 2px;
  padding: .4rem 1rem;
  border-bottom: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
}
.map-container iframe { width: 100%; height: 440px; border: none; display: block; }
.map-placeholder {
  height: 440px; display: flex; align-items: center; justify-content: center;
  background: #161616; color: #555;
  font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 2px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .findus-grid { grid-template-columns: 1fr; }
}
