/* static/css/custom.css */

/* Custom styles that extend Tailwind */
.experience-item {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

/* Add some hover effects to links */
.nav-link {
    transition: color 0.2s ease-in-out;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.blog-content h1 {
    font-size: 2.25rem;  /* 36px */
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content h2 {
    font-size: 1.875rem;  /* 30px */
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.5rem;  /* 24px */
    font-weight: bold;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content h4 {
    font-size: 1.25rem;  /* 20px */
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content a {
    color: #2563eb;  /* Standard blue */
    text-decoration: underline;
}

.blog-content a:hover {
    color: #1d4ed8;  /* Slightly darker blue on hover */
}

.blog-content a:visited {
    color: #4338ca;  /* Purple-blue for visited links */
}

.blog-content ul, .blog-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

/* Code blocks */
.blog-content pre {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.375rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.blog-content code {
    font-family: monospace;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
}