.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-button-bg);
  box-shadow: var(--shadow-button);
  color: var(--color-white);
  white-space: nowrap;
}
.btn img, .btn-icon { width: 24px; height: 24px; flex: 0 0 auto; }
.btn--hero {
  width: 259px;
  padding: 7px 56px 7px 57px;
  border: 1px solid var(--color-navy-300);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
.btn--visit {
  width: 259px;
  padding: 7px 56px 7px 57px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.btn--menu { width: 331px; padding: 7px 92px 7px 93px; border: 1px solid var(--color-navy-300); }


/* Hover effect from the video reference: subtle red wash + icon nudge. */
.btn {
  position: relative;
  overflow: hidden;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.btn span,
.btn img,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn img,
.btn-icon {
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  background:
    linear-gradient(90deg, rgba(116, 48, 58, 0.72) 0%, rgba(51, 58, 73, 0.54) 48%, rgba(51, 58, 73, 0.50) 100%);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 4px 4px 0 rgba(0, 0, 0, 0.25),
    inset 0 0 22px rgba(255, 255, 255, 0.08);
}

.btn:hover img,
.btn:hover .btn-icon,
.btn:focus-visible img,
.btn:focus-visible .btn-icon {
  transform: translateX(6px) scale(1.04);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.35));
}

.btn:active img,
.btn:active .btn-icon {
  transform: translateX(8px) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn img,
  .btn-icon {
    transition: none;
  }

  .btn:hover img,
  .btn:hover .btn-icon,
  .btn:focus-visible img,
  .btn:focus-visible .btn-icon,
  .btn:active img,
  .btn:active .btn-icon {
    transform: none;
  }
}

@media (max-width: 767px) {
  .btn--hero { width: 181px; padding: 7px 34px 7px 35px; font-size: 14px; }
  .btn--visit { width: 203px; padding: 7px 35px 7px 36px; font-size: 14px; }
  .btn--menu { width: 161px; padding: 7px 14px 7px 15px; }
}
