/* css/site.css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  color: #222;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0b63b6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #4d4a45;
  border-bottom: 1px solid #2f2c28;
  color: #fff;
}

.topbar-inner {
  width: min(1100px, calc(100% - 24px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 42px;
}

.brand {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  padding: 18px 0 10px;
}

.hero-row {
  display: grid;
  grid-template-columns: 140px 1fr 210px 120px;
  align-items: center;
  gap: 20px;
}

.hero-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  color: #3f3f3f;
  font-weight: 500;
}

.yelp-button {
  display: inline-block;
  background: #fff200;
  color: #003399;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  text-align: center;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.thumb-card {
  border: 1px solid #d3d3d3;
  background: #fff;
  padding: 10px;
  text-align: center;
}

.thumb-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b63b6;
  margin-bottom: 6px;
}

.thumb-card img {
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #3f3f3f;
  margin: 28px 0 18px;
}

.link-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.link-columns a {
  display: block;
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.info-band {
  background: #d8d8d8;
  padding: 14px 18px;
  margin-top: 10px;
}

.info-band h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #003399;
}

.info-band p {
  margin: 0;
  font-size: 0.95rem;
  color: #003399;
}

.highlight-link {
  background: #fff200;
  padding: 0 4px;
}

.center-stack {
  text-align: center;
  padding: 18px 0 0;
}

.button-info {
  display: inline-block;
  background: #5bc0de;
  border: 1px solid #46b8da;
  color: #fff;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 3px;
}

.footer-links {
  margin-top: 14px;
  background: #efe7a8;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.footer-main {
  background: #d3d3d3;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.footer-address {
  background: #a9a39d;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.update {
  text-align: center;
  padding: 10px 0 20px;
}

/* Tablet and down */
@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .hero-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card-grid-2,
  .link-columns {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .section-title {
    font-size: 1.7rem;
  }
}

/* Small mobile */
@media (max-width: 600px) {
  .site-container {
    width: min(100% - 20px, 1100px);
  }

  .topbar-inner {
    width: min(100% - 20px, 1100px);
    gap: 12px;
    padding: 8px 0;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 11px;
  }

  .hero-title,
  .section-title {
    font-size: 1.45rem;
  }

  .link-columns a {
    font-size: 0.9rem;
  }


.image-pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:18px 0;
}

.image-card{
  text-align:center;
  background:#fff;
  border:1px solid #d7d7d7;
  padding:10px;
}

.image-card img{
  width:100%;
  height:auto;
  display:block;
  margin:0 auto 8px;
}

.image-card p{
  margin:0;
  font-size:0.9rem;
  color:#333;
  font-weight:700;
  line-height:1.4;
}



/* Mobile: stack */
@media (max-width:700px){
  .image-pair{
    grid-template-columns:1fr;
  }




}

  
}