/* ============================================
   TATTOO TAMPA BAY — SHARED HEADER / FOOTER SHELL

   Inherited from the Unstylers shop system, reduced to what this site
   actually renders: the sticky header shell, the nav, and the footer's
   outer padding. The shop-only vocabulary (product cards, size pickers,
   cart, chips, form fields, .btn-*, breadcrumb, .section-*) was removed —
   nothing in this repo referenced it. The live component layer is the
   `tt-*` system in tattoo.css.
   ============================================ */

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: var(--header-h);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
  display: block;
}

@media (min-width: 960px) {
  .site-logo img { height: 44px; }
}

/* Nav turns on only once the full row fits: seven labels plus the CTA,
   three social pills and the logo need ~1135px. Below that the hamburger
   owns navigation. */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 1140px) {
  .site-nav { display: flex; }
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--track-heading);
  color: var(--text-secondary);
  transition: color var(--duration-normal) var(--ease-out);
  position: relative;
}

.site-nav a:hover {
  color: var(--text-primary);
}

.site-nav a.is-active {
  color: var(--accent-text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-normal) var(--ease-out);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* --- FOOTER SHELL --- */
/* Outer padding only; every inner band styles itself in tattoo.css — including
   the background and the top hairline, which is why they are not set here.
   A previous copy of this rule also declared margin-top, background and
   border-top; tattoo.css loads after this file and overrode all three, so they
   were dead declarations that made this the wrong place to edit the footer. */
.site-footer {
  padding: var(--space-16) 0 var(--space-8);
}
