File size: 3,928 Bytes
2acdca9
a219d72
f47149b
a219d72
 
2acdca9
 
f47149b
a219d72
 
f47149b
 
44bd47b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96b9f9f
2acdca9
 
 
96b9f9f
2acdca9
 
 
 
 
 
 
 
 
 
 
 
 
 
a219d72
 
 
f47149b
 
a219d72
 
 
f47149b
 
a219d72
 
 
 
f47149b
a219d72
 
 
 
 
 
 
2acdca9
a219d72
 
 
 
 
 
 
59ea029
2acdca9
59ea029
 
 
 
73d4cb1
59ea029
2acdca9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: #f8fafc;
  color: #0f172a;
}
code, pre {
  font-family: 'Fira Code', monospace;
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.language-btn {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.language-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Color Palette */
:root {
  --primary: #0ea5e9;        /* Sky 500 */
--primary-dark: #0284c7;   /* Sky 600 */
  --secondary: #85F1C2;      /* Custom Green */
  --accent: #f59e0b;         /* Amber 500 */
  --accent-dark: #d97706;    /* Amber 600 */
  --background: #f8fafc;     /* Slate 50 */
  --surface: #ffffff;        /* White */
  --text-primary: #0f172a;   /* Slate 900 */
  --text-secondary: #64748b; /* Slate 500 */
  --text-light: #94a3b8;     /* Slate 400 */
  --border: #e2e8f0;         /* Slate 200 */
  --success: #10b981;        /* Emerald 500 */
  --warning: #f59e0b;        /* Amber 500 */
  --error: #ef4444;          /* Red 500 */
}

/* Hero Section */
.hero-image {
  filter: brightness(0.9);
}

/* Section Spacing */
section {
  scroll-margin-top: 80px;
}

/* Card Hover Effects */
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Grid */
@media (max-width: 768px) {
  .grid-cols-5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Footer Icons */
footer a svg {
  transition: all 0.3s ease;
}

footer a:hover svg {
  transform: scale(1.2);
}

/* Particles.js container */
#particles-js {
  width: 100%;
  height: 100%;
  background-color: #09191E;
}

/* Updated Section Styles */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Text Styles */
.text-3xl {
  color: var(--text-primary);
}

.text-lg {
  color: var(--text-secondary);
}

/* Background Styles */
.bg-gray-100 {
  background-color: var(--background);
}

.bg-white {
  background-color: var(--surface);
}

.bg-gray-900 {
  background-color: #0f172a;
}

/* Button Styles */
.px-6.py-3 {
  transition: all 0.3s ease;
}

.px-6.py-3.bg-amber-500 {
  background-color: var(--accent);
  color: white;
}

.px-6.py-3.bg-amber-500:hover {
  background-color: var(--accent-dark);
}

.px-6.py-3.border-2.border-white {
  border-color: var(--surface);
  color: var(--surface);
}

.px-6.py-3.border-2.border-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Link Styles */
.underline {
  color: var(--primary);
}

.underline:hover {
  color: var(--primary-dark);
}

/* Card Styles */
.bg-white.p-6 {
  background-color: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.bg-white.p-6:hover {
  border-color: var(--primary);
}

/* Text Colors */
.text-amber-500 {
  color: var(--accent);
}

.text-gray-600 {
  color: var(--text-secondary);
}

.text-gray-400 {
  color: var(--text-light);
}

.text-gray-500 {
  color: var(--text-light);
}

/* Blockquote */
blockquote {
  border-left-color: var(--accent);
  color: var(--text-primary);
}

/* Footer */
footer.py-16 {
  background-color: #0f172a;
}

footer a {
  color: var(--text-light);
}

footer a:hover {
  color: var(--secondary);
}

/* Hover Effects */
.hover\:text-amber-400:hover {
  color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .text-4xl {
    font-size: 2.25rem;
  }
  
  .text-3xl {
    font-size: 1.875rem;
  }
  
  .text-xl {
    font-size: 1.125rem;
  }
}