/* ===================== 10 PAGE PLACEHOLDER — BAŞLANGIC ===================== */
/* Menü sayfaları için geçici boş-durum bölümü. İçerik eklendikçe bu blok
   ilgili sayfanın kendi component CSS'i ile değiştirilebilir. */

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Header (sabit) + footer arasında dikey boşluğu doldurur ki footer
       ekranın üstüne yapışmasın. */
    min-height: 60vh;
    padding: 120px 16px 80px;
}

.page__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.page__title {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.page__title .accent {
    color: var(--color-accent);
}

.page__text {
    max-width: 520px;
    color: var(--color-gray-light);
    font-size: 15px;
    margin-bottom: 28px;
}

.page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .page {
        min-height: 55vh;
        padding: 100px 16px 64px;
    }

    .page__title {
        font-size: 30px;
    }
}
/* ===================== 10 PAGE PLACEHOLDER — BİTİŞ ===================== */
