/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENEL */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.9;
}

/* HERO HEADER */
.hero-header {
    background-color: #ffffff;
    text-align: center;
    padding: 90px 20px 70px;
}

/* BAŞLIK */
.hero-header h1 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ALT AÇIKLAMA */
.hero-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* İSİM */
.hero-name strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-name span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #888;
}

/* SAYFA ALANI */
.container {
    max-width: 800px;
    margin: 0 auto 120px;
    padding: 0 20px;
    text-align: center;
}

/* RÖPORTAJ BLOĞU */
.taki-kart {
    margin-bottom: 70px;
}

/* KATEGORİ */
.kategori {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 18px;
}

/* SORU */
.taki-kart h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 22px;
}

/* METİN */
.taki-kart p {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid #eee;
}

/* MOBİL */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2rem;
    }

    .taki-kart h2 {
        font-size: 1.3rem;
    }
}
/* 🔲 Dikdörtgen çerçeveli "Ana Sayfaya Dön" butonu */
.button {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #000;        /* Siyah çerçeve */
    background-color: transparent; /* İçi boş, sade */
    color: #000;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: "Poppins", Arial, sans-serif;
    border-radius: 4px;            /* Hafif köşeli, tam dikdörtgene yakın */
    transition: all 0.25s ease;
    margin: 40px auto;
    display: block;
    width: fit-content;            /* Genişliği yazıya göre */
}

/* Hover efekti */
.button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.18);
}
