@font-face {
  font-family: "MicrogrammaDEBold";
  src:
    url("fonts/microgramma-bold.woff2") format("woff2"),
    url("fonts/microgramma-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3 {
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* Basic reset */
* {
    box-sizing: border-box;
}
html, body { height: auto; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

/* Header bar */
.site-header {
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 12px;
  border-bottom: 4px solid #000;
}

.logo a {
  text-decoration: none;
  color: #c00; /* “red logo” vibe */
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Hamburger button */
.menu-btn {
  width: 56px;
  height: 56px;
  border: 2px solid #000;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-btn:focus {
  outline: 3px solid #5b9dd9; /* visible keyboard focus */
  outline-offset: 2px;
}

.hamburger {
  width: 26px;
  height: 2px;
  background: #000;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #000;
}

.hamburger::before { top: -8px; }
.hamburger::after  { top:  8px; }

/* Main content */
.page {
  padding: 16px;
}

/* Overlay behind drawer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
}

/* Drawer panel */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 85vw);
  background: #fff;
  border-right: 2px solid #000;
  z-index: 1001;

  transform: translateX(-105%);
  transition: transform 180ms ease-out;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.drawer-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 2px solid #000;
}

.drawer-title {
  font-weight: 700;
}

.close-btn {
  border: 2px solid #000;
  background: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  font-size: 18px;
}
.close-btn:hover,
.close-btn:focus {
  background: #c00;   /* Windows-style red */
  color: #fff;        /* white X */
  border-color: #000; /* keep black border */
}
/* Drawer links */
.drawer-nav {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.drawer-nav a {
  display: block;
  padding: 10px 12px;
  border: 2px solid #2b55ff; /* your mockup “blue button” boxes */
  text-decoration: none;
  color: #111;
  background: #fff;
}

.drawer-nav a:hover {
  background: #f3f3f3;
}

/* Prevent background scroll when menu is open */
body.no-scroll {
  overflow: hidden;
}
.logo img {
  height: 52px;       /* controls logo size */
  width: auto;        /* keeps aspect ratio */
  display: block;     /* removes inline spacing issues */
}
.logo {
  justify-self: center;
}
.content-wrap {
  max-width: 900px;     /* your “red box” width */
  margin: 0 auto;       /* centers it */
  background: #fff;     /* covers the tiled background behind it */
  padding: 24px;
  min-height: 80vh;
}
body {
  background-image: url("BG.png");
  background-repeat: repeat;
  background-position: top left;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 64px;         /* must match your header height */
  background: #fff;
  border-bottom: 4px solid #000;
  z-index: 2000;        /* above page + overlay */
}
/* --- two column section --- */
.two-column {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-top: 32px !important;
    align-content: center;
}

@media (min-width : 1076px ){
  .two-column {
    grid-template-columns: 1fr 1fr !important;
    align-content: center;
  }
}
.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Drawer menu items */
.drawer-nav a {
  display: block;

  /* sizing & spacing */
  padding: 12px 16px;
  margin-bottom: 12px;

  /* background & border */
  background-color: #ffffff;
  border: 4px solid #000080;
  border-radius: 4px;

  /* text styling */
  color: #000000;
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;
  font-size: 24px;
  text-decoration: none;
}

/* Hover / focus state */
.drawer-nav a:hover,
.drawer-nav a:focus {
  background-color: #f0f4ff;
  color: #000000;
}

/* Optional: active page indicator */
.drawer-nav a.active {
  background-color: #2b55ff;
  color: #ffffff;
}
.drawer-title {
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}
.drawer {
  background-image: url("menu-bg.png");
  background-repeat: repeat;        /* tile it */
  background-position: top left;
}
.page {
  padding-top: 64px;  /* same as header height */
}
h1 {
  text-align: center;
}
/* ===== Services page (old-site look, responsive) ===== */
.services-title {
  text-align: center;
  margin: 0 0 12px;
}

.services-note-title {
  text-align: center;
  margin: 0 0 10px;
}

.services-note {
  text-align: center;
  margin: 0 0 18px;
}

.services-panel {
  display: flex;
  justify-content: center;
}

.services-grid {
  width: 100%;
  max-width: 920px;              /* close to the screenshot's box width */
  border: 4px solid #555;        /* outer heavy border */
  background: #fff;
  padding: 4px;                  /* small inset like the old box */
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;                        /* no gaps, we use borders */
}

.service-card {
  border: 2px solid #777;        /* column borders */
  background: #fff;
  text-align: center;
}

.service-card-title {
  margin: 0;
  padding: 6px 8px;
  border-bottom: 2px solid #777; /* header row line */
  font-size: 18px;
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.service-card-body {
  padding: 14px 14px 16px;
  font-size: 16px;
  line-height: 1.35;
}

.service-card-body p {
  margin: 0 0 10px;
}

.service-card-body p:last-child {
  margin-bottom: 0;
}

/* Desktop: 3 columns like the old screenshot */
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* ===== Pricing page ===== */
.pricing-title {
  margin: 0 0 14px;
}

.pricing-bullets {
  margin: 0 0 18px;
  padding-left: 22px;
}

.pricing-subnote {
  text-align: center;
  margin: 10px 0 14px;
}

/* Boxed mileage chart */
.mileage-panel {
  display: flex;
  justify-content: center;
}

.mileage-grid {
  width: 100%;
  max-width: 520px;       /* similar visual size to the screenshot */
  border: 4px solid #555; /* heavy outer border */
  background: #fff;
  padding: 4px;

  display: grid;
  grid-template-columns: 1fr 140px; /* description + fee column */
  gap: 0;
}

.mileage-head {
  border: 2px solid #777;
  padding: 8px 10px;
  text-align: center;
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #fff;
}

.mileage-cell {
  border: 2px solid #777;
  padding: 10px 10px;
  background: #fff;
}

.mileage-text {
  font-weight: 700; /* matches the “bold paragraph” feel from the old chart */
  text-align: center;
}

.mileage-fee {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile: keep the table readable */
@media (max-width: 520px) {
  .mileage-grid {
    grid-template-columns: 1fr; /* stack */
  }

  .mileage-head:nth-child(2) {
    /* keep header order consistent when stacked */
    border-top: none;
  }
}

h1, h2, h3 {
  text-align: center;
}
/* ===== Contact page ===== */
.contact-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.contact-text a {
  color: #000080; /* your navy */
  font-weight: 700;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Facebook button */
.contact-actions {
  display: flex;
  justify-content: center;
}

.facebook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;

  color: #fff;
  background-color: #1877f2; /* official Facebook blue */
  border: 2px solid #000;
  border-radius: 4px;

  text-decoration: none;
  transition: background-color 120ms ease-out;
}

.facebook-button:hover,
.facebook-button:focus {
  background-color: #145dbf;
}
/* ===== Facebook link block ===== */
.facebook-link-block {
  margin-top: 24px;
  text-align: center;
}

/* Facebook image */
.facebook-image {
  width: 80px;        /* ← change this to resize */
  height: auto;
  display: inline-block;
}

/* Text below image */
.facebook-text {
  margin-top: 8px;
  font-family: "MicrogrammaDEBold", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
}
