/* ----------------------------------
   PROJECT HERO
---------------------------------- */
.project-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
  margin-bottom: 50px;
}

.project-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  background: rgba(0, 0, 0, 0.45);
}

.project-hero-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  color: #fff;
}

.project-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.project-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}


/* ----------------------------------
   PROJECT DETAILS SECTION
---------------------------------- */
.project-details {
  padding-bottom: 80px;
}

.project-main {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.project-info {
  flex: 1;
}

.project-info h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.project-info h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--gold);
}

.project-info p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-info ul {
  margin: 10px 0 25px 20px;
}

.project-info ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.back-btn {
  margin-top: 20px;
}


/* ----------------------------------
   GALLERY
---------------------------------- */
.project-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
}

.project-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Link wrappers for gallery images */
.project-gallery a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.project-gallery a img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-gallery a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(46,125,50,0.10);
}

.project-gallery a:hover img {
  transform: scale(1.04);
}


/* ----------------------------------
   RESPONSIVE
---------------------------------- */
@media (max-width: 900px) {
  .project-main {
    flex-direction: column;
  }
}
