/* 
  sayfa.css - Özel Sayfa Modülü Stilleri 
  Bu CSS dosyası sadece sayfa.php yüklendiğinde çalışır ve diğer sayfaları etkilemez.
*/

.sayfa-module-section {
    background-color: #f8f9fa;
}

.breadcrumb-minimal {
    background: #f1f5f9;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-minimal h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.breadcrumb-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-list-new li {
    font-size: 0.95rem;
    color: #64748b;
}

.breadcrumb-list-new li a {
    color: var(--primary-color, #0ea5e9);
    text-decoration: none;
}

.breadcrumb-list-new li a:hover {
    text-decoration: underline;
}

.sayfa-content-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sayfa-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.sayfa-title h3 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.sayfa-text {
    font-size: 0.95rem;
    color: #555;
}

.sayfa-text p {
    margin-bottom: 1.2rem;
}

.sayfa-text h1, .sayfa-text h2, .sayfa-text h3, .sayfa-text h4 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sayfa-text h1 { font-size: 1.5rem; }
.sayfa-text h2 { font-size: 1.3rem; }
.sayfa-text h3 { font-size: 1.15rem; }
.sayfa-text h4 { font-size: 1rem; }

.sayfa-text ul, .sayfa-text ol {
    margin-bottom: 1.2rem;
    padding-left: 20px;
}

.sayfa-text li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sayfa-content-wrapper {
        padding: 25px;
    }
    
    .sayfa-title h3 {
        font-size: 1.5rem;
    }
    
    .sayfa-text {
        font-size: 1rem;
    }
}
