
@font-face {
    font-family: 'Banjax';
    src: url('/fonts/Banjax.otf') format('opentype');
    font-weight: bold; /* Bold font */
    font-style: normal; /* Normal üslub */
}

@font-face {
    font-family: 'Ethnocentric';
    src: url('/fonts/Ethnocentric.otf') format('opentype');
    font-weight: bold; /* Bold font */
    font-style: normal; /* Normal üslub */
}

@font-face {
    font-family: 'Designosaur';
    src: url('/fonts/Designosaur.otf') format('opentype');
    font-weight: bold; /* Bold font */
    font-style: normal; /* Normal üslub */
}


@font-face {
    font-family: 'Mitr';
    src: url('/fonts/mitr.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* Genel Stiller */
body {
    font-size: 16px;
    line-height: 1.6;
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header {
    background-color: #004d26;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0; /* Genişliğin tam olması için ekledim */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000; /* Headerın en üstte kalmasını sağlar */
}

.left-buttons {
    display: flex;
    align-items: center;
    gap: 10px; /* Menü ve Home tuşu arasında boşluk bırak */
}

/* Menü tuşu ve Home tuşu en solda */
.menu-icon {
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.home-button {
    font-size: 20px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

/* Sağdaki butonlar */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px; /* Butonlar arasında boşluk bırak */
    margin-right: 20px; /* Ekranın kenarına yapışmayı önle */
}

/* Buton stilleri */
.header-buttons button {
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
}

.result-message {
    font-family: Tahoma, Verdana, Helvetica;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.highlight {
    color: #993333;
}




.top-bar {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    font-size: 26px; /* Yazıyı biraz büyüttüm */
    font-weight: bold;
    margin-top: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Hafif bir gölge eklendi */
    border-bottom: 2px solid #ccc; /* Altına ince bir çizgi ekleyerek daha belirgin hale getirdim */
    font-family: "Ethnocentric", sans-serif;
    letter-spacing: 1.5px; /* Harfler arasına boşluk eklendi */
    text-transform: uppercase; /* Tüm harfleri büyük yap */
    color: #228B22; /* Koyu çimen yeşili */
	line-height: 1.2; /* Satır arası mesafeyi azalt */
}


/* Konteyner Stili */
.container {
    padding: 0 10px 10px 10px; /* Üstten 0, diğer üç taraftan 10px boşluk */
    display: flex;
    flex-direction: column;
    margin-top: 10px; /* Header ile çakışmaması için boşluk */
}

/* Sureler ve Ayetler Stilleri */
.surah {
    background-color: #e0f2f1;
    padding: 5px;
    margin: 8px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #004d26; /* Normal yazı rengi */
	font-size: 22px;
	font-family: "Banjax", serif;
}

.surah a {
    color: #004d26;
    text-decoration: none;
}

.surah a:hover {
    text-decoration: none;
}

.verse {
    background-color: #fafafa;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	font-family: "Designosaur", sans-serif;
	font-weight: 400;

}



/* Dark Mode Stilleri */
body.dark-mode {
    background-color: #121212;
    color: #f1f1f1;
}

body.dark-mode .header {
    background-color: #6d941e;
}

body.dark-mode .menu {
    background-color: #6d941e;
}

body.dark-mode .menu-icon {
    filter: invert(1);
}

body.dark-mode .top-bar {
    background-color: #74776f;
    color: white;
}

body.dark-mode .surah {
    background-color: #2e3c3b;
    color: #f1f1f1; /* Dark mode yazı rengi */
}

body.dark-mode .surah a {
    color: #f1f1f1; /* Dark mode link yazı rengi */
}

body.dark-mode .surah a:hover {
    color: #ff9800; /* Dark mode link hover rengi */
}

body.dark-mode .verse {
    background-color: #333;
    color: #f1f1f1;
}

body.dark-mode .font-control button {
    background-color: #333;
    color: #f1f1f1;
}

body.dark-mode .font-control button:hover {
    background-color: #ff5722;
    color: #fff;
}

/* Sabit Font Büyütme/Küçültme Düğmesi Stilleri */
.font-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9800;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.font-control button {
    background-color: #ffffff;
    border: none;
    color: #333;
    font-size: 14px; /* Daha küçük yazı boyutu */
    font-weight: bold;
    padding: 8px; /* Küçük padding */
    border-radius: 50%;
    cursor: pointer;
    width: 30px; /* Küçük buton boyutu */
    height: 30px; /* Küçük buton boyutu */
}

.font-control button:hover {
    background-color: #ff5722;
    color: #fff;
}

/* Sayfa metin boyutu */
body {
    font-size: 16px; /* Varsayılan font boyutu */
}