/* Projelerimiz Sayfası Özel Stilleri */

/* Projects Hero Banner */
.projects-page-hero {
  position: relative;
  height: 40vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tactical-green);
  border-bottom: 2px solid var(--muted-gold);
  padding-top: 80px;
  overflow: hidden;
}

.projects-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  filter: grayscale(80%) sepia(20%) hue-rotate(180deg); /* Naval tint */
}

.projects-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--tactical-green), rgba(27, 48, 34, 0.4));
  z-index: 1;
}

/* Full Width Project Sections */
.project-showcase {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 80px 0;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  z-index: 0;
  transition: transform 1.5s ease;
}

.project-showcase:hover .showcase-bg {
  transform: scale(1.05);
}

/* Naval / Tactical Overlays for Projects */
.showcase-overlay-navy {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 20, 31, 0.9) 0%, rgba(27, 48, 34, 0.7) 100%);
  z-index: 1;
}

.showcase-overlay-green {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 48, 34, 0.9) 0%, rgba(9, 20, 31, 0.8) 100%);
  z-index: 1;
}

/* Content Card overlapping the image */
.showcase-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.showcase-card {
  background: rgba(18, 28, 44, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--muted-gold);
  padding: 32px;
  max-width: 600px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
}

@media (min-width: 768px) {
  .showcase-card {
    padding: 64px;
  }
}

.showcase-tag {
  font-family: var(--font-mono-family);
  font-size: 14px;
  color: var(--muted-gold);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--muted-gold);
}

.showcase-title {
  font-family: var(--font-h-family);
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .showcase-title {
    font-size: 48px;
  }
}

.showcase-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-weight: 500;
}

.s-feature .material-symbols-outlined {
  color: var(--muted-gold);
  font-size: 24px;
}

/* Positioning variants */
.align-right {
  margin-left: auto;
}

/* Corner Accents on Showcase Card */
.sc-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.sc-tr { top: -10px; right: -10px; border-bottom: none; border-left: none; }
.sc-br { bottom: -10px; right: -10px; border-top: none; border-left: none; }
