/* ========================================== */
/* GLOBAL STYLES                              */
/* ========================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-heading);
  font-style: normal;
  color: var(--color-primary);
}

p, li {
  font-family: var(--font-body);
}

/* Universal Contextual Text Links */
p a, 
.about-text a, 
article a, li a {
  font-family: var(--font-body);
  color: inherit; /* Inherits the paragraph's text color automatically */
  text-decoration: none;
  border-bottom: 1px solid currentColor; /* Automatically matches text color */
  opacity: 0.85; /* Softens the resting state slightly for an elegant look */
  padding-bottom: 1px;
  transition: all 0.2s ease-in-out;
}

/* Global Hover State */
p a:hover, 
.about-text a:hover, 
article a:hover, li a:hover{
  color: #ffb704; /* Wakes up with your beautiful brand gold on hover */
  border-bottom-color: #ffb704; /* Border turns gold to match */
  opacity: 1; /* Fully brightens on interaction */
}

a {
  color: var(--color-primary);
}

a:hover {
  color: #ffb704;
}