/* =========================
   02) Hero
   ========================= */
.hero {
  height: 100vh;
  position: relative;
  scroll-snap-align: start;

  background-image: url("assets/hero/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* hero text block: positioned around top 1/3 */
.hero-text {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 1rem;
  z-index: 1;
}

.hero-name {
  font-family: var(--font-title);
  font-size: clamp(2.05rem, 4.4vw, 3.45rem); /* smaller */
  font-weight: 500;
  line-height: 1.02;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-subtitle {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.7vw, 1.35rem); /* smaller */
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* top-right socials */
.hero-social {
  position: absolute;
  top: 30px;
  right: 30px;

  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 2;
}

.hero-social img {
  width: 35px;  /* slightly larger than your 40px */
  height: 35px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-social a:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* chevron cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  top: calc(38% + 350px);
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
  z-index: 2;
  opacity: 0.95;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.scroll-cue:hover {
  transform: translateX(-50%) translateY(6px) scale(1.18);
  opacity: 1;
}

.scroll-cue svg {
  width: 54px;
  height: 54px;
  display: block;
}

.scroll-cue svg path {
  stroke-width: 1.8;
}
