/* ABOUT: Content area */
.content {
  width: 100%;
}

/* ABOUT: About page layout */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.tagline {
  font-size: 1.2rem;
  color: #555555;
  font-weight: 500;
  margin: 0;
}

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.quote {
  text-align: center;
  font-style: italic;
}

.section h2 {
  color: #000000;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #000000;
  padding-bottom: 0.5rem;
}

.section p {
  line-height: 1.6;
  color: #555555;
  margin-bottom: 1rem;
}

.contact-highlight {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #000000;
  color: white;
  border-radius: 8px;
}

.contact-highlight p {
  color: white !important;
  margin: 0;
  font-weight: 500;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.year {
  font-weight: bold;
  color: #000000;
  font-size: 0.9rem;
  padding: 0.5rem;
  background: #000000;
  color: white;
  border-radius: 5px;
  text-align: center;
  align-self: start;
}

.details h3 {
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.details ul {
  margin: 0.5rem 0 0 1.5rem;
  color: #555555;
}

.details li {
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.skill-category {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  display: grid;
  grid-template-rows: subgrid; /* Uses subgrid for alignment across rows (if supported) */
  grid-row: span 2; /* Spans 2 rows for header and content */
}

.skill-category h4 {
  display: block;
  color: #000000;
  font-size: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.skill-category ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-category li {
  padding: 0.3rem 0;
  color: #555555;
  border-bottom: 1px solid #f0f0f0;
}

.skill-category li:last-child {
  border-bottom: none;
}

.music-instruments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .5rem;
  margin-top: 1rem;
}

.instrument-group {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  text-align: center;
  display: grid;
  grid-template-rows: subgrid; /* Uses subgrid for alignment across rows (if supported) */
  grid-row: span 2; /* Spans 2 rows for header and content */
}

.instrument-group h4 {
  color: #000000;
  font-size: 1.1rem;
}

.instrument-group p {
  color: #555555;
  margin: 0;
  font-size: 0.9rem;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .7rem;
  margin-top: 1rem;
}

.interest-item {
  background: white;
  padding: .7rem;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  text-align: center;
  display: grid;
  grid-template-rows: subgrid; /* Uses subgrid for alignment across rows (if supported) */
  grid-row: span 2; /* Spans 2 rows for header and content */
}

.interest-item h4 {
  color: #000000;
  
  font-size: 1.1rem;
}

.interest-item p {
  color: #555555;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.call-to-action {
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8) !important;
  border: 2px solid #000000 !important;
  text-align: center;
}






/* GENERAL: Media queries for responsive design */
@media (max-width: 768px) {
  

  /* About page mobile styles */
  .about-header h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .year {
    justify-self: start;
    width: fit-content;
  }

  .skills-grid,
  .music-instruments,
  .interests-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.5rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }
}