﻿/* Unified Project Pages (images only) */

.project-hero-section { padding: 3.5rem 0; }
.project-hero {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
.project-hero img{
  width: 100%;
  height: auto;               /* IMPORTANT: no crop */
  max-height: 75vh;
  object-fit: contain;        /* IMPORTANT: no crop */
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.project-desc {
  max-width: 950px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.project-gallery-section { padding: 3rem 0; }
.project-gallery { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

.gallery-item { margin-bottom: 1.5rem; }
.gallery-item img{
  width: 100%;
  height: auto;               /* IMPORTANT: no crop */
  max-height: 80vh;
  object-fit: contain;        /* IMPORTANT: no crop */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover img{
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0,0,0,.18);
}

/* Magnific Popup image */
.mfp-img { max-height: 90vh !important; }

@media (max-width: 768px){
  .project-hero-section { padding: 2.5rem 0; }
  .project-desc { font-size: 1rem; }
}
