/* css/projects.css */

.project-section {
   padding: 100px 5%;
   background-color: var(--color-white);
}

.project-section .project-header {
   text-align: center;
   font-weight: 900;
   font-size: 3.5rem;
   color: var(--color-maroon);
   margin-bottom: 50px;
   text-transform: uppercase;
}

/* --- GRID PROYEK MODERN --- */
.project-grid-modern {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
   max-width: 1250px;
   margin: 0 auto;
}

/* --- KARTU PROYEK --- */
.project-card-item {
   position: relative;
   height: 380px;
   border-radius: 16px;
   overflow: hidden;
   text-decoration: none;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   display: flex;
   align-items: flex-end;
   transition:
      transform 0.4s ease,
      box-shadow 0.4s ease;
}

.project-card-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 15px 40px rgba(156, 0, 4, 0.2);
}

/* Background Foto Proyek */
.project-card-img {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-size: cover;
   background-position: center;
   transition: transform 0.6s ease;
   z-index: 1;
}

.project-card-item:hover .project-card-img {
   transform: scale(1.08); /* Efek zoom halus saat kursor diarahkan */
}

/* Overlay Gelap agar Teks Terbaca Jelas */
.project-card-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 30%,
      rgba(20, 20, 20, 0.85) 90%
   );
   z-index: 2;
}

/* Informasi Proyek di dalam Kartu */
.project-card-info {
   position: relative;
   z-index: 3;
   padding: 30px;
   width: 100%;
   color: var(--color-white);
}

.project-category {
   display: inline-block;
   background-color: var(--color-maroon);
   color: var(--color-white);
   font-size: 11px;
   font-weight: 700;
   padding: 4px 12px;
   border-radius: 20px;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 10px;
}

.project-card-info h4 {
   font-size: 22px;
   font-weight: 800;
   margin-bottom: 8px;
   color: var(--color-white);
}

.project-link {
   font-size: 13px;
   font-weight: 700;
   color: #ffcccc;
   letter-spacing: 1px;
   transition: color 0.3s ease;
}

.project-card-item:hover .project-link {
   color: var(--color-white);
}

/* =========================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================= */
@media (max-width: 992px) {
   .project-section {
      padding: 70px 20px;
   }

   .project-section .project-header {
      font-size: 2.5rem;
      margin-bottom: 35px;
   }

   .project-card-item {
      height: 320px;
   }
}
