/* latin-ext */
@font-face {
  font-family: 'Geomini';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/geomini/v2/Yq6L-L2BVyv2_q37mTVoSDbHLBc5Sb6OqMC704jVhQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geomini';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/geomini/v2/Yq6L-L2BVyv2_q37mTVoSDbHLBc5Sb6OqMC104g.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		html, body,.post-content {
    font-family: "Geomini", sans-serif;
}
        
        body {
            background: #f8f9fa;
            color: #1a1a2e;
            -webkit-font-smoothing: antialiased;
        }
        
        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        .serif {
            font-family: 'Source Serif Pro', serif;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* ===== NAVBAR ===== */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-custom .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.03em;
        }
        
        .navbar-custom .nav-link {
            font-weight: 500;
            color: #4a4a6a;
            padding: 0.5rem 1.2rem;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .navbar-custom .nav-link:hover {
            color: #667eea;
        }
        
        .navbar-custom .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-custom .nav-link:hover::after {
            width: 70%;
        }
        
        /* ===== BLOG CARDS ===== */
        .blog-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.04);
        }
        
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        
        .blog-card .post-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a1a2e;
            text-decoration: none;
            transition: color 0.2s ease;
            display: inline-block;
        }
        
        .blog-card .post-title:hover {
            color: #667eea;
        }
        
        .blog-card .post-meta {
            font-size: 0.9rem;
            color: #6c6c8a;
            margin-top: 0.5rem;
        }
        
        .blog-card .post-meta i {
            margin-right: 0.3rem;
        }
        
        .blog-card .post-excerpt {
            color: #4a4a6a;
            margin: 1rem 0 1.5rem 0;
            line-height: 1.8;
        }
        
        .blog-card .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .blog-card .post-tags .tag {
            background: #f0f0f5;
            color: #4a4a6a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .blog-card .post-tags .tag:hover {
            background: #667eea;
            color: white;
        }
        
        /* ===== PAGINATION ===== */
        .pagination-custom {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        
        .pagination-custom .page-item {
            list-style: none;
        }
        
        .pagination-custom .page-link {
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #e0e0e8;
            color: #4a4a6a;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            background: white;
        }
        
        .pagination-custom .page-link:hover {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }
        
        .pagination-custom .page-link.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-color: transparent;
        }
        
        /* ===== POST DETAIL ===== */
        .post-detail {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.04);
        }
        
        .post-detail .post-header {
            border-bottom: 1px solid #f0f0f5;
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }
        
        .post-detail .post-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
        }
        
        .post-detail .post-meta {
            color: #6c6c8a;
            font-size: 0.95rem;
        }
        
        .post-detail .post-meta .author {
            font-weight: 600;
            color: #1a1a2e;
        }
        
        .post-detail .post-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #2a2a4a;
        }
        
        .post-detail .post-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .post-detail .post-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        
        .post-detail .post-content p {
            margin-bottom: 1.2rem;
        }
        
        .post-detail .post-content ul, 
        .post-detail .post-content ol {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
        }
        
        .post-detail .post-content li {
            margin-bottom: 0.5rem;
        }
        
        .post-detail .post-content blockquote {
            border-left: 4px solid #667eea;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            color: #4a4a6a;
            font-style: italic;
        }
        
        .post-detail .post-content code {
            background: #f0f0f5;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .post-detail .post-content pre {
            background: #1a1a2e;
            color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        
        .post-detail .post-content pre code {
            background: transparent;
            color: inherit;
            padding: 0;
        }
        
        .post-detail .post-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        /* ===== POST NAVIGATION ===== */
        .post-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #f0f0f5;
        }
        
        .post-nav .nav-link {
            text-decoration: none;
            color: #4a4a6a;
            transition: all 0.2s ease;
            max-width: 45%;
        }
        
        .post-nav .nav-link:hover {
            color: #667eea;
        }
        
        .post-nav .nav-link .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #6c6c8a;
        }
        
        .post-nav .nav-link .title {
            font-weight: 600;
            display: block;
            margin-top: 0.2rem;
        }
        
        /* ===== FOOTER ===== */
        .footer-custom {
            background: white;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        
        .footer-custom .footer-brand {
            font-weight: 800;
            font-size: 1.3rem;
        }
        
        .footer-custom .footer-text {
            color: #6c6c8a;
            font-size: 0.95rem;
        }
        
        .footer-custom .social-links a {
            color: #6c6c8a;
            margin-right: 1rem;
            font-size: 1.2rem;
            transition: color 0.2s ease;
        }
        
        .footer-custom .social-links a:hover {
            color: #667eea;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .blog-card {
                padding: 1.5rem;
            }
            
            .blog-card .post-title {
                font-size: 1.3rem;
            }
            
            .post-detail {
                padding: 1.5rem;
            }
            
            .post-detail .post-title {
                font-size: 1.8rem;
            }
            
            .post-nav {
                flex-direction: column;
                gap: 1rem;
            }
            
            .post-nav .nav-link {
                max-width: 100%;
                width: 100%;
            }
        }
