/* Projeler page */
.projects-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(59, 62, 45, 0.92) 0%, rgba(59, 62, 45, 0.75) 100%),
    url("../images/Masar/01-hero.jpg") center / cover no-repeat;
  min-height: 42vh;
  padding-bottom: 72px;
}

.projects-hero .navbar-wrap {
  position: relative;
  z-index: 10;
}

.projects-hero-inner {
  padding-top: 120px;
  max-width: 720px;
}

.projects-eyebrow {
  margin: 0 0 16px;
  letter-spacing: 0.12em;
  color: #c3c7b2;
}

.projects-title {
  margin: 0 0 18px;
  font-family: Geist, Arial, sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.projects-lead {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.projects-grid-section {
  background: #f5f6f1;
  padding: 72px 0 96px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #3b3e2d;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.project-card-body {
  padding: 18px 2px 0;
}

.project-card-meta {
  font-family: Geist, Arial, sans-serif;
  font-size: 13px;
  color: #63655d;
  margin-bottom: 8px;
}

.project-card-title {
  margin: 0 0 8px;
  font-family: Geist, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #3b3e2d;
}

.project-card-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: Geist, Arial, sans-serif;
  font-size: 14px;
  color: #63655d;
}

.project-card-sub .dot {
  opacity: 0.6;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .projects-hero-inner {
    padding-top: 148px;
  }
}

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

  .projects-hero {
    min-height: 0;
    padding-bottom: 48px;
  }

  .projects-hero-inner {
    padding-top: 132px;
  }

  .projects-title {
    font-size: clamp(36px, 11vw, 56px);
  }

  .projects-lead {
    max-width: 100%;
  }

  .projects-grid-section {
    padding: 48px 0 72px;
  }

  .project-card-title {
    font-size: 22px;
  }
}

@media (max-width: 479px) {
  .projects-hero-inner {
    padding-top: 120px;
  }
}
