/* --- SİHİRLİ YUMUŞAK KAYDIRMA EFEKTİ --- */
html {
    scroll-behavior: smooth;
}

/* --- GENEL SAYFA AYARLARI --- */
body {
    background-color: #b30000;
    color: white;
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* --- ÜST BAŞLIK (HEADER) --- */
header {
    background-color: white;
    color: #b30000;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

header h1 {
    margin: 0;
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: 4px;
}

header p {
    margin: 10px 0 0 0;
    font-size: 1.3em;
    font-style: italic;
    color: #444;
}

/* --- ANA MAKALE ALANI --- */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

article {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* --- İÇİNDEKİLER KUTUSU (HIZLI MENÜ) --- */
.icindekiler-kutusu {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #ffcccc;
    padding: 20px 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.icindekiler-baslik {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffcccc;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    text-align: left;
}

.icindekiler-listesi {
    list-style-type: none; /* Yanındaki noktaları kaldırır */
    padding: 0;
    margin: 0;
}

.icindekiler-listesi li {
    margin-bottom: 10px;
}

.icindekiler-listesi a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.icindekiler-listesi a:hover {
    color: #ffcccc;
    transform: translateX(5px); /* Üzerine gelince metni hafif sağa kaydırır */
}

/* BAŞLIKLAR VE METİNLER */
article h2 {
    font-size: 2.8em;
    margin-top: 0;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    text-align: center;
}

article h3 {
    font-size: 1.9em;
    margin-top: 45px;
    color: #ffcccc;
    border-left: 4px solid #ffcccc;
    padding-left: 15px;
}

article p {
    font-size: 1.15em;
    margin-bottom: 25px;
    text-align: justify;
}

.yazar-adi {
    text-align: right;
    font-weight: bold;
    font-size: 1.2em;
    color: #ffcccc;
    margin-top: 40px;
}

/* RESİMLER (FLICKR GÖRSELLERİ) */
article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

article img:hover {
    transform: scale(1.03);
}

/* ALINTI (WALTER DE SILVA) */
.de-silva-quote {
    font-size: 1.25em;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid white;
    margin: 40px 0;
    padding: 20px 30px;
    border-radius: 0 8px 8px 0;
}

/* --- TIKLANABİLİR ETKİLEŞİM PANELİ --- */
.etkilesim-paneli {
    text-align: center;
    margin: 50px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.begen-buton {
    background-color: white;
    color: #b30000;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    margin-right: 15px;
}

.begen-buton:hover {
    background-color: #ffcccc;
    transform: translateY(-2px);
}

.forum-link-buton {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    font-size: 1.05em;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.forum-link-buton:hover {
    background-color: white;
    color: #b30000;
}

/* --- YORUM BÖLÜMÜ TASARIMI --- */
.yorum-alani {
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

.yorum-alani h3 {
    margin-top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.yorum-kutusu {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 3px solid #ffcccc;
}

.yorum-kutusu h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    color: #ffcccc;
}

.yorum-tarih {
    font-size: 0.75em;
    color: #bbb;
    margin-left: 10px;
    font-weight: normal;
}

.yorum-kutusu p {
    margin: 0;
    font-size: 1em;
    text-align: left;
}

/* Yorum Formu */
.yorum-formu {
    margin-top: 40px;
    background-color: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
}

.yorum-formu h4 {
    margin-top: 0;
    font-size: 1.3em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.form-grup {
    margin-bottom: 15px;
}

.yorum-formu input[type="text"],
.yorum-formu input[type="email"],
.yorum-formu textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(0,0,0,0.3);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 1em;
    border-radius: 4px;
    box-sizing: border-box;
}

.yorum-formu textarea {
    resize: vertical;
}

.yorum-formu input:focus,
.yorum-formu textarea:focus {
    outline: none;
    border-color: white;
    background-color: rgba(0,0,0,0.5);
}

.yorum-gonder-buton {
    background-color: #ffcccc;
    color: #b30000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.yorum-gonder-buton:hover {
    background-color: white;
}

/* --- YUKARI ÇIK VE KAYNAKÇA --- */
.yukari-cik {
    display: block;
    text-align: center;
    color: #ffcccc;
    text-decoration: none;
    font-size: 1.1em;
    margin: 40px 0;
}

.yukari-cik:hover {
    color: white;
    text-decoration: underline;
}

.ayrac {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 40px 0;
}

.kaynakca-listesi {
    font-size: 0.9em;
    color: #ddd;
    padding-left: 20px;
}

.kaynakca-listesi li {
    margin-bottom: 10px;
    word-break: break-all;
}
