/* ============================================================
   FLORAPANEL - KURUMSAL SAYFALAR (SAYFA.PHP)
   ============================================================ */

/* 1. HEADER ALANI */
.page-header-section {
    background: linear-gradient(to bottom, #1B4D3E, #2C7A62); /* Koyu yeşil gradyan */
    padding: 60px 0;
    color: #fff;
    margin-bottom: 40px;
}

.page-main-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.divider-center {
    width: 60px; height: 4px;
    background-color: var(--accent); /* Turuncu */
    margin: 0 auto;
    border-radius: 2px;
}

/* 2. YAN MENÜ (SIDEBAR) */
.sidebar-menu {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.sidebar-header {
    background: #f9fafb;
    color: var(--text-dark);
    padding: 15px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-link:last-child { border-bottom: none; }

.sidebar-link:hover {
    background-color: #f0fdf4; /* Açık yeşil */
    color: var(--primary);
    padding-left: 25px; /* Kayma efekti */
}

.sidebar-link i {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: 0.2s;
}

.sidebar-link:hover i { opacity: 1; }


/* 3. İÇERİK ALANI (TYPOGRAPHY) */
/* CKEditor vb. editörlerden gelen ham HTML'i güzelleştirir */

.typography {
    color: #374151; /* Koyu gri, okunaklı */
    font-size: 1.05rem;
    line-height: 1.8;
}

.typography h2, .typography h3, .typography h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.typography h2 { font-size: 1.8rem; border-bottom: 2px solid #f3f4f6; padding-bottom: 10px; }
.typography h3 { font-size: 1.5rem; }

.typography p { margin-bottom: 20px; }

.typography ul, .typography ol { margin-bottom: 20px; padding-left: 20px; }
.typography li { margin-bottom: 8px; }

.typography a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}
.typography a:hover { color: var(--primary-dark); }

.typography img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.typography blockquote {
    border-left: 4px solid var(--accent);
    background: #fffbeb;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #92400e;
    border-radius: 0 8px 8px 0;
}

/* 4. MOBİL UYUM */
@media (max-width: 992px) {
    .page-header-section { padding: 40px 0; }
    .page-main-title { font-size: 2rem; }
    
    /* Yan menüyü mobilde biraz daha sadeleştir */
    .sidebar-menu { margin-bottom: 30px; }
}