/* =======================
     PROJECT HERO SECTION
======================= */
.project-hero-section {
  background-color: #F2E9E4;
  padding: 3rem 1rem;
}

.project-hero-section .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.project-hero-section .hero-image img {
  width: 80%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-hero-section .hero-text h1 {
  font-size: 2.5rem;
  color: #7A3B4E;
  margin-bottom: 0.5rem;
}

.project-hero-section .hero-text p {
  font-size: 1.2rem;
  color: #2B2B2B;
}

/* =======================
     PROJECT DETAILS
======================= */
.project-details {
  padding: 3rem 1rem;
  background-color: #fff;
}

.details-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-block h2 {
  font-size: 1.75rem;
  color: #7A3B4E;
  margin-bottom: 0.5rem;
}

.detail-block p {
  font-size: 1rem;
  color: #2B2B2B;
  line-height: 1.6;
}

/* =======================
     PROJECT IMAGE GRID
======================= */
.project-image-grid {
  padding: 3rem 1rem;
  background-color: #F2E9E4;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* =======================
     RESPONSIVE
======================= */
@media (max-width: 768px) {
  .project-hero-section .hero-text h1 {
    font-size: 2rem;
  }

  .project-hero-section .hero-text p {
    font-size: 1rem;
  }

  .detail-block h2 {
    font-size: 1.5rem;
  }

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

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}
