:root {
  /* Brand Colors */
  --color-navy: #5b768d;
  --color-red: #d17c7c;
  --color-light-blue: #d0f4f8;
  --color-peach: #f6c6a8;
  --color-teal: #70b0c0;

  /* Functional Colors */
  --color-bg: #ffffff;
  --color-text: #1f2a33;
  --color-muted: #6b7c87;
  --color-border: rgba(0,0,0,0.08);


  /* Fonts */
  --font-heading:
  "Futura",
  "Futura PT",
  "Avenir Next",
  "Avenir",
  "Montserrat",
  system-ui,
  sans-serif;

--font-body:
  "Source Serif 4",
  "Source Serif Pro",
  "Charter",
  "Georgia",
  serif;

/*  --pico-font-family: system-ui, sans-serif; */
  --pico-font-family: var(--font-body);
  --pico-font-size: 100%;

}

.container {
  max-width: 72rem; /* ~1150px */
  margin-inline: auto;
  padding: 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

p.welcome {
    margin: auto;
    max-width: 100ch;
}

.feature-artist {
  background: linear-gradient(135deg, var(--color-light-blue), var(--color-peach));
    border-radius: 1rem;
    padding: 3rem;
}

.feature-artist img {

}


.feature-artist h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: var(--color-red);
  margin-top: 0.75rem;
  margin-bottom: 0px;
}

.artist-header {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 1rem;
}

.social-links, .social-links li {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 0.75rem;
  margin-top: 0px;
  margin-bottom: 8px;
}

.social-links li::marker {
  content: none;
}


.card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card.teal {
  border-left: 0.5rem solid var(--color-teal);
}

.card.red {
  border-left: 0.5rem solid var(--color-red);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}



body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  text-align: center;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

/* Long-form readability */
p {
  max-width: 65ch;
  line-height: 1.6;
}

section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

article {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--pico-background-secondary);
}

header {
  background-color: white;
  border-bottom: 1px solid var(--color-border);
}

nav strong {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform:uppercase;
}

button,
[role="button"],
a[role="button"] {
  background-color: var(--color-teal);
  border-color: var(--color-peach);
}

small p {
  text-align: left;
}

a:link {
  color: var(--color-navy); /* Red color for unvisited links */
}

a:visited {
  color: var(--color-teal); /* Blue color for visited links */
}

a:hover {
  color: var(--color-red); /* Green color when hovering */
}

a:active {
  color: var(--color-peach); /* Orange color when clicked */
}

.image-link img {
  width: 24px;
  height: 24px;
}
