-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
164 lines (148 loc) · 7.19 KB
/
Copy pathstyles.css
File metadata and controls
164 lines (148 loc) · 7.19 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/* Starfield background canvas */
#starfield-bg {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
z-index: 0;
pointer-events: none;
background: transparent;
}
body > *:not(#starfield-bg) {
position: relative;
z-index: 1;
}
/* Minimalistic fade-in animation for main sections */
.fade-in {
opacity: 0;
transform: translateY(24px);
animation: fadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: none;
}
}
/* Button hover animation */
.btn {
transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn.primary:hover {
background: linear-gradient(90deg, var(--accent-2), var(--accent));
color: #fff;
box-shadow: 0 4px 16px rgba(124,92,255,0.15);
transform: translateY(-2px) scale(1.04);
}
.btn.ghost:hover {
background: rgba(124,92,255,0.08);
color: var(--accent);
border-color: var(--accent);
box-shadow: 0 2px 8px rgba(124,92,255,0.08);
transform: translateY(-1px) scale(1.03);
}
/* Card hover animation */
.card {
transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
box-shadow: 0 8px 32px rgba(124,92,255,0.10);
transform: translateY(-4px) scale(1.02);
}
:root{
--bg:#0b0b0c;
--card:#111215;
--muted:#9aa4b2;
--accent:#7c5cff;
--accent-2:#5fb8ff;
--glass: rgba(255,255,255,0.03);
--radius:10px;
font-size:16px;
}
*{box-sizing:border-box}
html,body{height:100%}
.texture{
position:fixed;inset:0;pointer-events:none;background-image:
radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
background-size:6px 6px;mix-blend-mode:soft-light;opacity:0.08;
}
body{
margin:0;
font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
background:linear-gradient(180deg,#070606 0%, #0b0b0c 100%);
color:#e6eef8;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}
.container{max-width:1100px;margin:0 auto;padding:2rem}
.intro{font-family:'Press Start 2P',Inter,monospace;font-size:1.6rem;margin:0 0 0.25rem}
.sub{color:#c9aaf9;margin:0 0 0.8rem;font-family:'Press Start 2P',Inter,monospace}
.muted{color:var(--muted)}
.nav-row{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:0.6rem}
.logo{font-weight:700;color:#fff;text-decoration:none;font-size:1rem}
.logo-mark{width:28px;height:28px;border-radius:6px;background:linear-gradient(180deg,#2b2b2b,#111);display:flex;align-items:center;justify-content:center}
.nav{display:flex;gap:1.2rem}
.nav a{color:var(--muted);text-decoration:none;padding:0.2rem 0.4rem;border-radius:4px;font-family:'Press Start 2P',Inter,monospace;font-size:0.72rem}
.nav a:hover{color:#fff}
.hero{padding:3.5rem 0 1.5rem}
.hero-grid{display:grid;grid-template-columns:1fr 420px;gap:2.5rem;align-items:center}
.hero-text h1{font-size:2.2rem;margin:0 0 0.5rem}
.lead{color:var(--muted);max-width:55ch}
.ctas{margin:1.2rem 0}
.btn{display:inline-block;padding:0.5rem 0.9rem;border-radius:8px;text-decoration:none;font-weight:600;font-size:0.9rem}
.btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#061425}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.03);color:var(--muted);margin-left:0.6rem}
.socials{margin-top:1rem;display:flex;gap:0.6rem}
.socials .icon{color:var(--muted);text-decoration:none}
.hero-card .fake-device{background:linear-gradient(180deg,rgba(255,255,255,0.01),rgba(0,0,0,0.06));border-radius:12px;padding:1rem;box-shadow:0 8px 30px rgba(0,0,0,0.6);}
.screen{background:linear-gradient(180deg,#0b0b0d 0%,#0f0f12 100%);padding:1rem;border-radius:10px;border:1px solid rgba(255,255,255,0.02)}
.screen h3{margin:0;color:var(--accent)}
.screen p{color:var(--muted);margin:0.6rem 0 0}
.about{margin-top:1.5rem}
.about .muted{max-width:70ch}
.projects{margin:3rem 0}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.card{background:#151516;padding:0;border-radius:10px;border:1px solid rgba(255,255,255,0.02);overflow:hidden}
.card-media{height:160px;background-size:cover;background-position:center}
.card-body{padding:1rem}
.card h3{margin:0 0 0.4rem;padding:0 1rem;font-family:'Press Start 2P',Inter,monospace;font-size:0.95rem}
.card p{color:var(--muted);margin:0 0 0.8rem;padding:0 1rem}
.card-link{display:block;color:var(--accent);text-decoration:none;font-weight:600;padding:0 1rem 1rem}
.chip{display:inline-block;background:#2b0f39;color:#fff;padding:0.28rem 0.6rem;border-radius:8px;margin-right:0.4rem;font-size:0.72rem}
/* Experience */
.experience h2{margin-top:0}
.exp-list{display:flex;flex-direction:column;gap:1rem}
.exp{display:flex;align-items:stretch;background:#111214;padding:1rem;border-radius:10px;border:1px solid rgba(255,255,255,0.02)}
.exp-left{display:flex;gap:0.9rem;align-items:center;padding-left:0.8rem;border-left:6px solid #d94b4b}
.exp-logo{width:56px;height:56px;border-radius:8px;background:#0b0b0d;display:inline-block;overflow:hidden}
.exp-logo img{width:100%;height:100%;display:block;object-fit:cover}
.exp h3{margin:0;font-size:1rem}
.exp-right{margin-left:auto;color:#d2b8ff;font-family:'Press Start 2P',Inter,monospace;font-size:0.8rem}
.chips{margin-top:0.6rem}
.contact-form{display:grid;gap:0.6rem;max-width:560px}
.contact-form input,.contact-form textarea{background:linear-gradient(180deg,rgba(255,255,255,0.01),rgba(255,255,255,0.005));border:1px solid rgba(255,255,255,0.03);padding:0.75rem;border-radius:8px;color:#eaf3ff}
.contact-form input:focus,.contact-form textarea:focus{outline:none;box-shadow:0 0 0 4px rgba(124,92,255,0.08);border-color:var(--accent)}
.form-actions{display:flex;align-items:center;gap:1rem;margin-top:0.6rem}
.form-alert{background:#16302e;color:#bff0e8;padding:0.45rem 0.8rem;border-radius:8px;font-size:0.9rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.site-footer{padding:2rem 0;color:var(--muted)}
.site-footer .footer-grid{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.site-footer .footer-links a{color:var(--muted);text-decoration:none;margin-left:0.9rem;font-family:'Press Start 2P',Inter,monospace;font-size:0.72rem}
.site-footer .footer-links a:hover{color:#fff}
.contact-meta{margin-top:0.9rem;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.contact-meta .socials{display:flex;gap:0.6rem}
.contact-meta .socials a{color:var(--muted);text-decoration:none;font-family:'Press Start 2P',Inter,monospace;font-size:0.75rem}
@media (max-width:980px){
.hero-grid{grid-template-columns:1fr}
.hero-card{order:-1}
.grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
.nav{display:none}
.nav-toggle{display:block}
.grid{grid-template-columns:1fr}
.container{padding:1.25rem}
.hero-text h1{font-size:2rem}
.exp{flex-direction:column}
.exp-right{margin-left:0;margin-top:0.5rem;align-self:flex-end}
}
.texture-layer{position:fixed;inset:0;pointer-events:none;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.02"/></svg>')}