/* ============================================
   PAGE HEADER SECTION STYLES
   Kırmızı işaretlenen alan için header section
   ============================================ */

.page-header-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 5rem 2rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(191, 162, 107, 0.2);
}

.page-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(191, 162, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(191, 162, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.page-header-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 162, 107, 0.5), transparent);
  z-index: 1;
}

.page-header-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 1.5rem 0;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-header-logo {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.page-header-logo img {
  max-width: 300px;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(191, 162, 107, 0.4));
  transition: all 0.3s ease;
  animation: fadeInLogo 0.8s ease-out;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-header-logo img:hover {
  filter: drop-shadow(0 6px 18px rgba(191, 162, 107, 0.6));
  transform: scale(1.05);
}

.page-header-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

/* Light background için */
.page-header-section.light {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-bottom: 1px solid var(--border-color);
}

.page-header-section.light::before {
  background: radial-gradient(circle at 50% 50%, rgba(191, 162, 107, 0.05) 0%, transparent 70%);
}

.page-header-section.light .page-header-title {
  color: var(--text-dark);
}

.page-header-section.light .page-header-description {
  color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
  .page-header-section {
    padding: 3rem 1.5rem;
  }
  
  .page-header-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }
  
  .page-header-description {
    font-size: 1rem;
  }
  
  .page-header-logo img {
    max-width: 200px;
    max-height: 100px;
  }
}

