/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 04 2025 | 18:13:06 */
#custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 9999;
  background-color: transparent; /* Başlangıçta transparent */
}

/* Sticky olduğunda arka plan renk değiştirmek için JS ile class ekleyebilirsin */
#custom-header.scrolled {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#custom-header.scrolled .wpr-page-list-wrap .wpr-pl-title {
  color: #848566 !important;
}
#custom-header.scrolled .wpr-page-list-wrap .wpr-pl-title:hover {
  color: #3a3a3a !important;
}

#custom-header.scrolled a.wpr-button {
  color: #848566 !important;
  border-color: #848566 !important;
}

/* Eğer butonun içindeki metin (span.wpr-button-text) ayrı renkteyse: */
#custom-header.scrolled a.wpr-button .wpr-button-text {
  color: #848566 !important;
}

#custom-header.scrolled a.wpr-button:hover {
  background-color: transparent !important;
  color: #3a3a3a !important;
  border-color: #3a3a3a !important;
}

#custom-header.scrolled a.wpr-button:hover .wpr-button-text {
  color: #3a3a3a !important;
}