@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@600;700;800;900&display=swap");

/* Shared K9-Alert site header — kept identical across every page so the
   top navigation matches the homepage regardless of page-specific CSS. */
.k9bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.06);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.k9bar *,
.k9bar *::before,
.k9bar *::after {
  box-sizing: border-box;
}

.k9bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100% - 48px, 1180px);
  min-height: 78px;
  margin: 0 auto;
}

.k9bar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.k9bar__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.k9bar__name {
  display: grid;
}

.k9bar__name strong {
  display: block;
  font-family: "Anton", "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: 1.95rem;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #a91515;
}

.k9bar__name small {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  color: #111;
}

.k9bar__nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 22px;
}

.k9bar__nav a {
  position: relative;
  padding: 9px 0;
  color: #111;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease;
}

.k9bar__nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: #a91515;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.k9bar__nav a:hover,
.k9bar__nav a:focus-visible,
.k9bar__nav a[aria-current="page"] {
  color: #a91515;
}

.k9bar__nav a:hover::after,
.k9bar__nav a:focus-visible::after,
.k9bar__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.k9bar__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #bd1b1b 0%, #a91515 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(169, 21, 21, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.k9bar__order:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 24px rgba(169, 21, 21, 0.27);
  filter: saturate(1.06);
}

.k9bar__order:focus-visible,
.k9bar__toggle:focus-visible {
  outline: 3px solid rgba(255, 193, 59, 0.82);
  outline-offset: 3px;
}

/* Mobile disclosure menu (no JavaScript required). */
.k9bar__menu {
  display: none;
}

.k9bar__toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e7dfd5;
  border-radius: 9px;
  background: #fff;
  color: #111;
  cursor: pointer;
  list-style: none;
}

.k9bar__toggle::-webkit-details-marker {
  display: none;
}

.k9bar__toggle svg {
  width: 22px;
  height: 22px;
}

.k9bar__toggle .k9bar__icon-close {
  display: none;
}

.k9bar__menu[open] .k9bar__toggle .k9bar__icon-open {
  display: none;
}

.k9bar__menu[open] .k9bar__toggle .k9bar__icon-close {
  display: block;
}

.k9bar__drawer {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 60;
  display: grid;
  gap: 2px;
  padding: 10px 24px 18px;
  background: #fff;
  border-top: 1px solid #f0e8de;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.14);
}

.k9bar__drawer a {
  padding: 14px 4px;
  border-bottom: 1px solid #f0e8de;
  color: #111;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.k9bar__drawer a:hover,
.k9bar__drawer a[aria-current="page"] {
  color: #a91515;
}

.k9bar__drawer-cta {
  margin-top: 12px;
  padding: 14px 4px;
  border-bottom: 0 !important;
  border-radius: 8px;
  background: linear-gradient(180deg, #bd1b1b 0%, #a91515 100%);
  color: #fff !important;
  text-align: center;
}

@media (max-width: 980px) {
  .k9bar__inner {
    gap: 12px;
    min-height: 66px;
  }

  .k9bar__nav,
  .k9bar__order {
    display: none;
  }

  .k9bar__menu {
    display: block;
    margin-left: auto;
  }

  .k9bar__name strong {
    font-size: 1.7rem;
  }
}
