/* ============================================
   onurer.com.tr - Minimal Modern Creative Design
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;
    --accent: #000000;
    --text: #171717;
    --text-light: #525252;
    --border: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* Minimal Navigation */
.navbar-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar-minimal .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-minimal {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.2px;
}

.nav-links-minimal {
    display: flex;
    gap: 1.5rem;
}

.nav-links-minimal a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links-minimal a:hover {
    color: var(--text-light);
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* Minimal Hero */
.minimal-hero {
    padding: 3rem 0 2rem;
    margin-top: 45px;
}

.minimal-hero .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    font-weight: 400;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.hero-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.link-underline {
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}


.separator {
    color: var(--text-light);
}

/* Section Header */
.section-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.section-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.section-link:hover {
    opacity: 0.6;
}

.section-number {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section-title-minimal {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: -0.4px;
    color: var(--text);
}

/* Portfolio Section */
.portfolio-section {
    padding: 2.5rem 0;
    background: var(--gray-100);
}

.portfolio-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.portfolio-item {
    grid-column: span 1;
    background: var(--white);
    padding: 1.25rem;
    border: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 1;
    padding: 1.5rem;
}

.portfolio-item:hover {
    opacity: 0.7;
}

.portfolio-category {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-title {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.portfolio-desc {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.8rem;
}

.portfolio-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.portfolio-link:hover {
    opacity: 0.6;
}

/* About Section */
.about-section-minimal {
    padding: 2.5rem 0;
}

.about-section-minimal .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-text-wrapper p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 300;
}

.about-preview {
    max-width: 600px;
}

.about-preview p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 300;
}

.skills-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.skills-minimal span {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.35rem 0.75rem;
    border: none;
    background: transparent;
    transition: opacity 0.2s ease;
}

.skills-minimal span:hover {
    opacity: 0.6;
}


.about-image-minimal {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--gray-200);
}

/* Blog Section */
.blog-section-minimal {
    padding: 2.5rem 0;
    background: var(--white);
}

.blog-section-minimal .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Blog List - Basit Liste Formatı */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-list-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.2s ease;
}

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-list-item:hover {
    opacity: 0.7;
}

.blog-list-meta {
    margin-bottom: 0.5rem;
}

.blog-list-meta time {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
}

.blog-list-title {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.blog-list-title a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-list-title a:hover {
    opacity: 0.6;
}

.blog-list-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.8rem;
    margin: 0;
}

/* Eski stiller (geriye dönük uyumluluk için) */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.blog-item-minimal {
    display: flex;
    flex-direction: column;
    border: none;
    background: var(--white);
    transition: opacity 0.2s ease;
}

.blog-item-minimal:hover {
    opacity: 0.7;
}

.blog-content-minimal {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-meta-minimal {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-title-minimal {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.blog-title-minimal a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-title-minimal a:hover {
    opacity: 0.6;
}

.blog-excerpt-minimal {
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
    font-size: 0.85rem;
}

.blog-link-minimal {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: auto;
    transition: opacity 0.2s ease;
}

.blog-link-minimal:hover {
    opacity: 0.6;
}

.blog-more-link {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.blog-more-link a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.blog-more-link a:hover {
    opacity: 0.6;
}

/* Contact Section */
.contact-section-minimal {
    padding: 3rem 0;
    background: var(--gray-100);
}

.contact-section-minimal .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-content-minimal {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.6;
}

.contact-location {
    color: var(--text-light);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.contact-social-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.6;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-list-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-list-item:last-child {
    border-bottom: none;
}

.contact-list-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-list-value {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
    font-weight: 300;
    display: block;
}

.contact-list-value:hover {
    opacity: 0.6;
}

.contact-list-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-list-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
    margin-top: 0.25rem;
}

.social-link-item {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
    font-weight: 300;
}

.social-link-item:hover {
    opacity: 0.6;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 1.5rem 0;
}

.footer .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.footer-right .social-links {
    display: flex;
    gap: 1.25rem;
}

.footer-right .social-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.footer-right .social-links a:hover {
    opacity: 0.6;
}

/* Empty State */
.empty-state-minimal {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
}

.empty-state-minimal p {
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links-minimal {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .minimal-hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .portfolio-section,
    .about-section-minimal,
    .blog-section-minimal,
    .contact-section-minimal {
        padding: 2rem 0;
    }
    
    .portfolio-item,
    .portfolio-item.large {
        padding: 1rem;
    }
    
    .blog-content-minimal {
        padding: 0.875rem;
    }
    
    .navbar-minimal {
        padding: 0.5rem 0;
    }
    
    .navbar-minimal .container,
    .minimal-hero .container,
    .portfolio-section .container,
    .about-section-minimal .container,
    .blog-section-minimal .container,
    .contact-section-minimal .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-right .social-links {
        justify-content: center;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item,
.blog-item-minimal {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* Portfolio List */
.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.portfolio-list-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.2s ease;
}

.portfolio-list-item:last-child {
    border-bottom: none;
}

.portfolio-list-item:hover {
    opacity: 0.7;
}

.portfolio-list-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-list-category {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.portfolio-list-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: 1.4;
    margin: 0;
}

.portfolio-list-title a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.portfolio-list-title a:hover {
    opacity: 0.6;
}

.portfolio-list-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
}

.portfolio-list-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
    font-weight: 300;
    align-self: flex-start;
}

.portfolio-list-link:hover {
    opacity: 0.6;
}

/* Blog Full Page - Liste formatı kullanılıyor, bu stiller artık kullanılmıyor */

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pagination-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.pagination-link:hover {
    opacity: 0.6;
}

.pagination-info {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Post Single Page */
.post-section {
    padding: 2.5rem 0;
}

.post-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.post-content h1 {
    font-size: 1.75rem;
}

.post-content h2 {
    font-size: 1.35rem;
}

.post-content h3 {
    font-size: 1.1rem;
}

.post-content a {
    color: var(--text);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.post-content a:hover {
    opacity: 0.6;
}

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

.post-content code {
    background: var(--gray-100);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.post-content pre {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

.post-content pre code {
    background: none;
    padding: 0;
}

/* Markdown-specific typography */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    scroll-margin-top: 90px;
}

.post-content h4 {
    font-size: 1rem;
    font-weight: 500;
}

.post-content h5,
.post-content h6 {
    font-size: 0.92rem;
    font-weight: 500;
}

.post-content ul,
.post-content ol {
    margin: 0 0 1.25rem 1.25rem;
    padding-left: 0.75rem;
}

.post-content li {
    margin-bottom: 0.4rem;
}

.post-content li > ul,
.post-content li > ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    margin: 1.5rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--gray-300);
    background: var(--gray-100);
    color: var(--gray-800);
    border-radius: 0 4px 4px 0;
}

.post-content hr {
    border: 0;
    border-top: 1px solid var(--gray-200);
    margin: 2rem 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0.85rem;
}

.post-content th,
.post-content td {
    border: 1px solid var(--gray-200);
    padding: 0.6rem 0.75rem;
    text-align: left;
}

.post-content th {
    background: var(--gray-100);
    font-weight: 500;
}

.post-content code:not(pre code) {
    background: #f1f3f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: #e83e8c;
}

.post-content pre {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1.1rem 1.2rem;
    overflow-x: auto;
}

.post-content pre code {
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Post Layout with Sidebar */
.post-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.post-layout.no-toc {
    grid-template-columns: 1fr;
}

/* TOC Sidebar Styles */
.toc-sidebar-wrapper {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.toc-sidebar {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.toc-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.toc-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #666;
    transition: color 0.2s;
}

.toc-toggle:hover {
    color: #000;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.toc-list::-webkit-scrollbar {
    width: 6px;
}

.toc-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.toc-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.toc-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-item a {
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.toc-item a:hover {
    color: #000;
    background: #e9ecef;
}

.toc-item a.active {
    color: #000;
    background: #dee2e6;
    font-weight: 500;
}

.toc-level-1 {
    padding-left: 0;
    font-weight: 500;
}

.toc-level-2 {
    padding-left: 1rem;
}

.toc-level-3 {
    padding-left: 2rem;
    font-size: 0.85em;
    color: #666;
}

/* Social Share Buttons - Mobile */
@media (max-width: 768px) {
    .social-share {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-sidebar-wrapper {
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .toc-sidebar {
        max-height: 400px;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .toc-sidebar.collapsed {
        max-height: 60px;
    }
    
    .toc-sidebar.collapsed .toc-list {
        display: none;
    }
    
    .toc-toggle {
        display: block;
    }
    
    .toc-list {
        max-height: 350px;
    }
}

/* Post Meta Info */
.post-meta-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.post-meta-header {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
    font-weight: 300;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-link.back {
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
}

.nav-link.prev,
.nav-link.next {
    flex: 1;
    text-align: left;
}

.nav-link.next {
    text-align: right;
}

/* About Full Page */
.about-content-full {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-text-full {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text-full p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
}

.about-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.about-contact h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-bottom: 0.5rem;
}

/* Portfolio Image in Grid */
.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-200);
    margin-bottom: 1rem;
    border-radius: 4px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Print-friendly Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Hide unnecessary elements */
    .navbar-minimal,
    .search-toggle,
    .menu-toggle,
    .social-share,
    .toc-sidebar-wrapper,
    .toc-sidebar,
    footer,
    .post-meta-info,
    .related-posts,
    .breadcrumb,
    .post-navigation,
    button,
    .btn,
    nav,
    aside {
        display: none !important;
    }
    
    /* Show only main content */
    main,
    article,
    .post-content,
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
        color: black !important;
        font-weight: bold;
    }
    
    h1 {
        font-size: 24pt;
        margin-top: 0;
        margin-bottom: 12pt;
    }
    
    h2 {
        font-size: 18pt;
        margin-top: 16pt;
        margin-bottom: 8pt;
    }
    
    h3 {
        font-size: 14pt;
        margin-top: 12pt;
        margin-bottom: 6pt;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    /* Links */
    a {
        color: black !important;
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    figure {
        page-break-inside: avoid;
        margin: 12pt 0;
    }
    
    /* Code blocks */
    pre, code {
        background: #f5f5f5 !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
        font-size: 10pt;
        padding: 8pt;
    }
    
    pre {
        white-space: pre-wrap;
        word-wrap: break-word;
    }
    
    /* Tables */
    table {
        border-collapse: collapse;
        width: 100%;
        page-break-inside: avoid;
    }
    
    th, td {
        border: 1px solid #ddd;
        padding: 6pt;
    }
    
    /* Page breaks */
    .post-content {
        page-break-before: auto;
    }
    
    /* Avoid breaking */
    blockquote,
    pre,
    img,
    figure {
        page-break-inside: avoid;
    }
    
    /* Print header/footer */
    @page {
        margin: 2cm;
        size: A4;
    }
    
    /* Show URL and date */
    .post-content::before {
        content: "onurer.com.tr - " attr(data-url) " - " attr(data-date);
        display: block;
        font-size: 9pt;
        color: #666;
        margin-bottom: 12pt;
        border-bottom: 1px solid #ddd;
        padding-bottom: 6pt;
    }
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.02);
}

/* Responsive Updates for New Pages */
@media (max-width: 640px) {
    .portfolio-list-item {
        padding: 1.25rem 0;
    }
    
    .portfolio-list-title {
        font-size: 1rem;
    }
    
    .portfolio-list-description {
        font-size: 0.8rem;
    }
    
    .contact-list-item {
        padding: 1.25rem 0;
    }
    
    .contact-list-value {
        font-size: 0.85rem;
    }
    
    .social-link-item {
        font-size: 0.8rem;
    }
    
    .blog-list-item {
        padding: 1rem 0;
    }
    
    .blog-list-title {
        font-size: 0.9rem;
    }
    
    .blog-list-excerpt {
        font-size: 0.75rem;
    }
    
    .post-image {
        max-height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .post-content {
        font-size: 0.85rem;
    }
    
    .post-content h1 {
        font-size: 1.5rem;
    }
    
    .post-content h2 {
        font-size: 1.2rem;
    }
    
    .post-content h3 {
        font-size: 1rem;
    }
    
    .post-content p {
        margin-bottom: 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
    }
    
    .nav-link.next {
        text-align: left;
    }
    
    .about-text-full p {
        font-size: 0.85rem;
    }
    
    .about-contact h3 {
        font-size: 1rem;
    }
    
    .contact-link-large {
        font-size: 0.85rem;
    }
    
    .social-link-full {
        font-size: 0.75rem;
    }
    
}




