/* 

<div class = 'cta-cont'>
    <a class="rc-button" href="#block-riviera-contactwebform">Book a Session</a>
</div>

*/

a.rc-button {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(var(--main-color), 1);
  background-color: rgba(var(--main-color), 0.9);
  color: var(--offwhite);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  position: relative;
  transition:
    opacity 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  /* matches ::after timing */
}

/* Fine arrow (→) after button text */
a.rc-button::after {
  content: " →";
  font-size: 0.9em;
  margin-left: 0.3em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

/* Hover: arrow slides and button brightens */
a.rc-button:hover {
  opacity: 1;
  border: 1px solid rgba(var(--main-color), 1);
}

a.rc-button:hover::after {
  transform: translateX(10px);
  opacity: 1;
}

a.rc-button.light {
  color: var(--offwhite);
}