/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.font-heading {
    font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Animation for cursor in logo */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.animate-pulse {
    animation: blink 1s step-end infinite;
}

/* Navigation */
#main-nav {
    transition: all 0.3s ease;
}

/* Hero Section */
#home {
    background-size: cover;
    background-position: center;
}

/* Process Cards */
.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

/* Form Inputs */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #home h1 {
        font-size: 3rem;
    }
}