/* General */
.projects-section {
  color: #222;
}

/* Hero */
.projects-hero {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  background: url('../img/hands-1-scaled.jpeg') no-repeat center center/cover;
  color: #fff;
}
.projects-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 30, 0.75);
  z-index: 1;
}
.projects-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.projects-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(-5deg, #602c6d, #D98638);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projects-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Container */
.projects-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Intro */
.projects-intro {
  text-align: center;
  margin-bottom: 60px;
}
.projects-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #602c6d;
}
.projects-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* What We Do Split */
.projects-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
  align-items: center;
}
.projects-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #D98638;
}
.projects-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}
.projects-content ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}
.projects-content strong {
  color: #602c6d;
}
.projects-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Highlight */
.projects-highlight {
  text-align: center;
  margin-bottom: 70px;
}
.projects-highlight h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #602c6d;
}
.projects-highlight p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Get Involved */
.projects-involved {
  margin-bottom: 70px;
  text-align: center;
}
.projects-involved h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #D98638;
}
.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.involved-card {
  padding: 30px 20px;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.involved-card:hover {
  transform: translateY(-5px);
}
.involved-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #602c6d;
}
.involved-card p {
  font-size: 1rem;
  color: #444;
}

/* Closing Statement */
.projects-closing {
  text-align: center;
  margin-top: 40px;
}
.projects-closing p {
  font-size: 1.2rem;
  font-weight: 500;
}
.projects-closing span {
  color: #D98638;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .projects-split {
    grid-template-columns: 1fr;
  }
  .involved-grid {
    grid-template-columns: 1fr;
  }
  .projects-hero h1 {
    font-size: 2.2rem;
  }
  .projects-hero p {
    font-size: 1rem;
  }
}