/* 
 * About Page Styles - Rosewood Ridge Site
 * Web 3.0 Design System
 */

@import url('variables.css');

.about-page .container {
  /* Inherits base .container styles */
  padding-top: 4rem; /* Add more space at the top */
  padding-bottom: 4rem;
}

.about-page h1 {
  /* Inherits base h1 styles */
  margin-bottom: 1rem; /* Adjust spacing */
}

.about-page .container > center p {
  /* Style the intro paragraph */
  color: var(--text-secondary-color);
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

.about-page section {
  background: var(--inner-bg); /* Use inner background for sections */
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius-std);
  margin-bottom: 2.5rem;
  border: 1px solid var(--accent-color);
  box-shadow: var(--box-shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page section:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-std);
}

.about-page h2 {
  /* Inherits base h2 styles */
  text-align: left; /* Align section headers left */
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--highlight-color); /* Use highlight color for section titles */
}

.about-page p {
  /* Inherits base p styles */
  color: var(--text-secondary-color); /* Use secondary text color for paragraphs */
  line-height: 1.7;
}

.about-page ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin-top: 1rem;
}

.about-page li {
  color: var(--text-color);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.about-page li::before {
  content: '✦'; /* Use a custom bullet */
  position: absolute;
  left: 0;
  color: var(--highlight-color);
  font-size: 1.1em;
  line-height: inherit;
}

/* Team card grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 190px));
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
}

.team-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight-color), var(--bright-accent));
  z-index: 0;
}

.team-avatar-wrap img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-color);
  display: block;
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.78rem;
  color: var(--highlight-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.team-grid--staff {
  margin-top: 1rem;
}
