/* --- Genel Responsive Ayarlar --- */
@media (max-width:520px){
    body{ padding:18px; }
    .card{ padding:12px; }
    .toggle{ font-size:14px; padding:12px; }
}

/* --- Ortak RTL Metin Yapısı (TÜM Osmanlıca metinler için) --- */
.rtl-common {
    direction: rtl;
    text-align: right;
    font-size: 22px;
    line-height: 1.8;
}

/* --- Font 1: OttomanFont --- */
@font-face {
    font-family: 'OttomanFont';
    src: url('../fonts/OttomanFont.ttf') format('truetype');
}
.rtl-ottoman {
    font-family: 'OttomanFont', serif;
}

/* --- Font 2: majallab.ttf --- */
@font-face {
    font-family: 'OsmanlicaFont2';
    src: url('../fonts/majallab.ttf') format('truetype');
}
.rtl-font2 {
    font-family: 'OsmanlicaFont2', serif;
}

/* --- Font 3: tradbdo.ttf --- */
@font-face {
    font-family: 'OsmanlicaFont3';
    src: url('../fonts/tradbdo.ttf') format('truetype');
}
.rtl-font3 {
    font-family: 'OsmanlicaFont3', serif;
}

/* --- Font 4: arabtype.ttf --- */
@font-face {
    font-family: 'OsmanlicaFont4';
    src: url('../fonts/ScheherazadeNew-Medium.ttf') format('truetype');
}
.rtl-font4 {
    font-family: 'OsmanlicaFont4', serif;
}

.ayet {
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin: 5px 0;
}

/* Okunan ayet için eklenecek vurgu sınıfı */
.aktif-ayet {
  background-color: rgba(242, 242, 242, 0.4); /* Hafif turuncu/sarı bir vurgu */
  color: red;
  font-weight: normal;
  transform: scale(1.00); /* Metni çok hafif büyütür, okumayı kolaylaştırır */
}

/* Sûre Başlığına Özel Stil */
.sure-baslik {
    color: #ffffcc !important; /* Mevcut rengi korur ama baskın yapar */
    text-align: center;
    font-weight: bold;
    font-size: 1.0em; /* Diğer ayetlerden daha büyük */
    margin-bottom: 10px;
    padding: 5px;
    
    /* Kabartma ve Gölge Efekti */
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15), 
                 0px 0px 1px rgba(0, 0, 0, 0.3);
    
    /* Alt Çizgi ve Süsleme */
    border-bottom: 3px double lightgrey;
    display: block; /* Genişliği tam kaplaması için */
    width: fit-content; /* Metin kadar genişlik */
    margin-left: auto;
    margin-right: auto;
}

/* Oymalı/Kabartmalı Sûre Başlığı Stili */
.sure-baslik-oyma {
    color: white !important;
    text-align: center;
    font-weight: bold;
    font-size: 1.0em;
    padding: 3px 10px;
    background-color: #ffffff;
    border: 1px inset red;
    border-radius: 10px;
    margin-bottom: 10px;
    
    /* Oymalı yazı efekti için çift taraflı gölge */
    text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px red;
    
    /* Sayfada ortalanması için */
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}