/* Fonts */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #2F2235; /* Midnight Violet */
  color: #BFC3BA; /* Ash Grey */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Containers */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
header h1 {
  font-family: 'Spectral', serif;
  font-weight: 400;
  font-size: 3rem;
  color: #FFD1B3; /* Peach Fuzz */
  margin: 0 0 0.5rem 0;
}

header .tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #BFC3BA; /* Ash Grey */
}

/* Links */
a {
  color: #E6D8A8; /* Vanilla Custard */
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #F1E4AA; /* Vanilla Custard hover */
}

/* Team Section */
.team h2 {
  font-family: 'Spectral', serif;
  font-weight: 400;
  font-size: 2rem;
  color: #FFD1B3; /* Peach Fuzz */
  margin-bottom: 1.5rem;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.member {
  background-color: #3F3244; /* Vintage Grape */
  padding: 1.5rem;
  border-radius: 20px;
  flex: 1 1 250px;
}

.member h3 {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: #A9ACA9; /* Silver */
  margin: 0 0 0.5rem 0;
}

.member .role {
  font-size: 1rem;
  color: #BFC3BA; /* Ash Grey */
  margin: 0;
}

/* Footer */
footer {
  background-color: #60495A; /* Mauve Shadow */
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #BFC3BA; /* Ash Grey */
}
