/* WRAPPER */
.hero-text {
  max-width: 900px;
  margin: 0;
  padding: 0;
  text-align: center;

  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

/* p fix */
.hero-text p {
  margin: 0;
}

/* BASE */
.hero-text .highlight {
  position: relative;
  display: inline-block;
  background: none !important;
  padding: 0;
  transition: all 0.25s ease;
}

/* SUN */
.hero-text .highlight.sun {
  color: #E6C97A;
}

/* MOON */
.hero-text .highlight.moon {
  color: #D6D2CD;
}

/* ✨ REFLECTION (akıntı hissi) */
.hero-text .highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;

  transform: scaleY(-1);
  opacity: 0.2;

  color: inherit;
  
  /* fade out */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);

  pointer-events: none;
}

/* 🔥 HOVER (geri geldi) */
.hero-text .highlight:hover {
  color: #ffffff;
  background-color: #B6A16C;

  padding: 0 3px;
  border-radius: 2px;

  font-weight: 700;
}