.btn:hover {
  color: green;
}

.nav-button:hover {
  color: green;
}

.hero-carousel {
  height: clamp(260px, 60vh, 600px); /* scales down on small screens, caps at 600px */
  position: relative;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.shared-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;          /* fixed height for identical look (adjust if needed) */
  padding: 0 0.75rem;      /* horizontal padding */
  width: 100px;            /* fixed width to match the first button */
  line-height: 1;          /* prevent extra vertical space if fonts differ */
  font-family: Alike, serif;
  background: rgb(112,67,44);
  color: #f8e7cb;
  border: 0;
  border-radius: 0.25rem;
  text-align: center;
  box-sizing: border-box;
}
