/* Custom styles moved from the HTML head */
html { scroll-behavior: smooth; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.heading-underline::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: #d4af37;
  margin-top: 12px;
  border-radius: 999px;
}

/* Video wrapper helper (kept from original) */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Small utility: preserve image responsiveness if needed */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
