/* Genel Ayarlar ve Fontlar */
* {
    box-sizing: border-box;
}

body {
    background-image: url('arkaplan.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
}

/* Üst Bar (Sadece sağ üstte dil butonları kalacak şekilde sadeleşti) */
.ust-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 40px;
    position: absolute; /* Sayfanın en üst sağ köşesine sabitler */
    top: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

/* Sağ Taraftaki Dil Çerçevesi */
.dil-cerceve-kutusu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* En altta yer alan sabit çerçeve görseli (frame.png - 272x240 oranına göre) */
.dil-arkaplan-cerceve {
    display: block;
    height: 75px; /* Çerçevenin ideal görünür yüksekliği */
    width: auto;
    pointer-events: none;
}

/* Çerçevenin tam içine butonları yerleştiren katman */
.dil-butonlari {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* İki buton arasındaki boşluk */
    width: 100%;
    height: 100%;
    padding: 0 12px;
    z-index: 2;
}

/* TR ve EN Butonları Boyutu */
.dil-btn {
    height: 42px; /* Çerçevenin içine tam oturacak buton yüksekliği */
    width: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.dil-btn:hover {
    transform: scale(1.05);
}

/* ORTADAKİ BÜYÜK LOGO ALANI */
.logo-merkez-alani {
    text-align: center;
    padding: 60px 20px 20px 20px;
}

.ana-logo {
    max-width: 550px; /* Logonun ekranda duracağı ideal büyük genişlik */
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6)); /* Etrafına büyüleyici bir mor parlama verir */
    transition: transform 0.3s ease;
}

.ana-logo:hover {
    transform: scale(1.02); /* Üzerine gelince çok hafif nefes alır gibi büyür */
}

/* Ana İçerik ve Kutular */
.ana-icerik {
    max-width: 850px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
}

.kutu {
    background: rgba(15, 15, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    font-family: 'Cinzel', serif;
    color: #a855f7;
    margin-top: 0;
}

.tarih {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
    font-style: italic;
}

ul {
    line-height: 1.7;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Mobil Uyum */
@media screen and (max-width: 768px) {
    .ust-menu {
        padding: 15px 20px;
    }
    .logo-merkez-alani {
        padding: 50px 15px 10px 15px;
    }
    .ana-logo {
        max-width: 320px; /* Mobilde ekrana sığacak ideal boyut */
    }
    .kutu {
        padding: 25px;
        margin-bottom: 20px;
    }
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
}
