/* ===========================
   BÖLGE SAYFALARI CSS
   =========================== */

/* Hero */
.bolge-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background-image: url('../img/hero-bolge.png');
    background-size: cover;
    background-position: center;
}

.bolge-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.bolge-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.bolge-back {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.bolge-back:hover {
    color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    opacity: 0.4;
    font-size: 10px;
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

/* Override for light mode hero */
body.light .bolge-hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 100%);
}

body.light .bolge-back {
    color: rgba(255, 255, 255, 0.65);
}

/* Content Section */
.bolge-content {
    background: var(--dark);
}

.bolge-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.bolge-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bolge-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 16px;
}

.bolge-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.bolge-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.bolge-list li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 10px 16px;
    background: var(--dark-3);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.bolge-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bolge-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--dark-3);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.bolge-feature>span {
    font-size: 22px;
    flex-shrink: 0;
}

.bolge-feature strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 3px;
}

.bolge-feature p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Box */
.bolge-cta-box {
    position: sticky;
    top: 100px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.bolge-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.bolge-cta-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.bolge-other {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.bolge-other p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bolge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bolge-tags a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition);
}

.bolge-tags a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
    .bolge-grid {
        grid-template-columns: 1fr;
    }

    .bolge-cta-box {
        position: static;
    }
}

@media (max-width: 600px) {
    .bolge-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
}