/*
Theme Name: Webolur Kurumsal Pro
Theme URI: https://webolur.com
Author: Webolur
Description: Özel ve Modern Portfolio tasarımı.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: webolur
*/

/* Tüm stiller header.php içindeki Tailwind Config 
   ve <style> etiketleri üzerinden yönetilmektedir.
*/

/* Single Page Typography Fix */
/* --- MODERN İÇERİK TİPOGRAFİSİ (.prose) --- */

/* Genel Metin */
.prose {
    color: #94a3b8; /* Slate-400: Göz yormayan gri */
    font-size: 1.125rem; /* 18px: İdeal okuma boyutu */
    line-height: 1.8; /* Satır arası genişlik */
}

.prose p {
    margin-bottom: 1.5rem;
}

/* Başlıklar (H1 - H6) */
.prose h2, .prose h3, .prose h4 {
    color: #ffffff;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.prose h2 {
    font-size: 2rem; /* 32px */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.prose h3 {
    font-size: 1.5rem; /* 24px */
    color: #e2e8f0; /* Biraz daha açık gri */
}

.prose h4 {
    font-size: 1.25rem; /* 20px */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #3b82f6; /* Primary Renk */
}

/* Linkler (A) */
.prose a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.prose a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    background: rgba(59, 130, 246, 0.1); /* Hafif mavi arka plan */
    padding: 0 4px;
    border-radius: 4px;
}

/* Listeler (UL - LI) */
.prose ul {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.prose ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

/* Liste Maddesi İkonu (Mavi Ok) */
.prose ul li::before {
    content: '→'; /* İstersen buraya '•' koyabilirsin */
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6; /* Primary */
    font-weight: 900;
    font-family: monospace; /* Hizalama için */
}

/* Alıntı (Blockquote) - Glassmorphism */
.prose blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03); /* Çok hafif beyaz */
    border-left: 4px solid #3b82f6; /* Sol çizgi */
    border-radius: 0 1rem 1rem 0;
    font-style: italic;
    color: #f1f5f9;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Alıntı Tırnak İkonu Süsü */
.prose blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Kalın ve İtalik (Strong - Em) */
.prose strong {
    color: #ffffff;
    font-weight: 700;
}

.prose em {
    color: #cbd5e1;
    font-family: serif; /* Daha şık bir italik için */
    letter-spacing: 0.05em;
}

/* Görseller (Img) */
.prose img {
    border-radius: 1.5rem;
    margin: 3rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}