/* Blog Styles - Black Theme */
.blog-page {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    color: #ffffff;
}

.blog-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.blog-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.featured-post {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.category-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.read-more-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
    text-decoration: none;
}

.newsletter-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* Enhanced card styling */
.blog-card h2,
.blog-card h3 {
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card h3:hover {
    color: #60a5fa !important;
}

.blog-card p {
    color: #d1d5db !important;
    line-height: 1.6;
}

.blog-card .text-gray-300,
.blog-card .text-gray-400 {
    color: #d1d5db !important;
}

.blog-card .text-gray-500 {
    color: #9ca3af !important;
}

/* Image hover effects */
.blog-card .h-56 {
    position: relative;
    overflow: hidden;
}

.blog-card .h-56 img {
    transition: transform 0.5s ease;
}

.blog-card:hover .h-56 img {
    transform: scale(1.1);
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-card h3 {
        font-size: 1.25rem;
    }
    
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .featured-post {
        flex-direction: column;
    }
    
    .featured-post .md:w-1/2 {
        width: 100%;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .blog-page {
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    }
    
    .blog-card {
        background: linear-gradient(145deg, #0d0d0d 0%, #000000 100%);
    }
}

/* Loading states */
.blog-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.blog-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.read-more-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
} 