/* =============================
   PAGE HEADER (SAYFA BAŞLIĞI) BİLEŞENİ
============================= */
.page-header-section {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    background-size: cover;
    background-position: center;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 46, 54, 0.7) 0%, rgba(10, 46, 54, 0.4) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 52px;
    color: var(--pure-white);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

/* =============================
   PAGE HEADER MOBİL UYUMLULUK
============================= */
@media (max-width: 768px) {
    .page-header-section {
        height: 30vh;
        min-height: 200px;
    }
    .page-header-content h1 {
        font-size: 36px;
    }
}