
/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #202124;
    line-height: 1.6;
    background-color: #FAFAF8;
}

#hero button:hover {
    background: #3367D6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h1, h2, h3, h4 {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
}

code, pre {
    font-family: 'Fira Code', monospace;
    background: #FAFAF8;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Blockquote Styles */
blockquote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    border-left: 4px solid #E0C3FC;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #5F6368;
}

/* Drop Cap */
.drop-cap::first-letter {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

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

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

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}
