/* ===== Proje Archive CSS ===== */

/* Hero Section */
.proje-hero {
  padding: 80px 0 60px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.proje-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.proje-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.proje-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.proje-hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Proje List */
.proje-list-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.proje-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card Design based on reference */
.proje-card {
  display: flex;
  flex-direction: row;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.proje-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.proje-card-left {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.proje-logo {
  margin-bottom: 30px;
}

.proje-logo img {
  max-width: 180px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.proje-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.proje-card-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
}

.proje-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fbbd08;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}

.proje-card-btn:hover {
  background: #f2b604;
  transform: translateY(-2px);
}

.proje-card-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.proje-card-right {
  flex: 1.2;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.proje-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}

.proje-card:hover .proje-card-img {
  transform: scale(1.05);
}

.proje-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  position: absolute;
  top: 0;
  left: 0;
}

/* Pagination */
.proje-pagination {
  margin-top: 60px;
  text-align: center;
}

.proje-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
}

.proje-pagination a,
.proje-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.2s;
}

.proje-pagination a:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.proje-pagination .current {
  background: var(--orange);
  color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
  .proje-card {
    flex-direction: column;
  }
  
  .proje-card-left {
    padding: 40px 30px;
  }
  
  .proje-card-right {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .proje-hero {
    padding: 60px 0 40px;
  }
  
  .proje-hero-title {
    font-size: 2.2rem;
  }
  
  .proje-card-left {
    padding: 30px 20px;
  }
  
  .proje-logo img {
    max-height: 60px;
  }
  
  .proje-card-title {
    font-size: 1.3rem;
  }
  
  .proje-card-right {
    min-height: 250px;
  }
}
