.custom-navbar {
  background: rgba(0, 0, 0, 0.35); /* subtle dark overlay but lighter than bg at hero */
  backdrop-filter: blur(6px);     /* glassy */
}
/* body.bg-near-white {
  background-color: #f7f5f2; /* light, warm background 
  background-image: linear-gradient( /* gradient downwards
    to bottom,
    rgba(255, 255, 255, 0.4),
    rgba(246, 242, 231, 1)
  )
} */
/* header.cover.bg-center {
  background: rgba(0, 0, 0, 0.4); /* subtle dark overlay but lighter than bg at hero
  backdrop-filter: blur(4px); 
} */
body.bg-near-white {
  background-color: #f7f5f2;
  background-image: url("/images/topo-bg.svg");
  background-repeat: repeat;
  background-size: 600px;
  z-index: -1;
}
.content-width {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1rem;
}
.hero-content {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nested-links a {
  color: #555;
  text-decoration: none;
  font-weight: 410;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
.nested-links a:hover {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #555;
}
.nav-links a {
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0rem 0.6rem;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom:1px solid transparent;
}
.nav-links a:hover {
  color: #ddd;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-links a {
    font-size: 1.35rem;
    padding: 0.5rem 0.6rem;
  }
}
.footer-width {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 120px;
  margin: 0 auto 2.3rem auto;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ddd;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: #ddd;
  color: #333;
  transform: scale(1.1);
}
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 1.5rem 0;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}