File size: 840 Bytes
e882110
8f1d727
e882110
 
8f1d727
 
e882110
 
8f1d727
 
e882110
 
8f1d727
 
e882110
 
 
 
8f1d727
 
e882110
 
8f1d727
e882110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* 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;
    }
}