/* Breadcrumb */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 1rem 0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #495057;
}

/* Hero Section */
.page-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Main Content */
.page-content {
    padding: 3rem 0;
}

.content-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Gallery */
.content-gallery img {
    transition: transform 0.3s;
}

.content-gallery img:hover {
    transform: scale(1.05);
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.submenu-list {
    list-style: none;
    padding: 0;
}

.submenu-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.submenu-list li:last-child {
    border-bottom: none;
}

.submenu-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s;
}

.submenu-list a:hover {
    color: #007bff;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h4 {
    margin-bottom: 1rem;
}

.cta-box .btn {
    margin-top: 1rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .page-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .content-body {
        font-size: 1rem;
    }
}
