
/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    line-height: 1.6;
    color: #333;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Particles */
#particles-js {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.5px;
}

h1 {
    line-height: 1.2;
}

/* Blog post cards */
.blog-post {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Editor styles */
#editable-area {
    line-height: 1.8;
}

#editable-area h2 {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
}

#editable-area h3 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem;
}

#editable-area p {
    margin-bottom: 1rem;
}

#editable-area img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
}