File size: 6,997 Bytes
4f67fd3
af8e0d2
4f67fd3
cc1e215
eed618c
af8e0d2
eab8c12
 
581b5d8
35574d7
9d47d15
 
 
 
 
eab8c12
 
 
 
35574d7
 
eab8c12
581b5d8
eab8c12
 
 
 
a2a6f8d
eab8c12
 
0dfd868
 
 
 
 
 
 
 
eab8c12
 
240143c
0dfd868
 
af8e0d2
 
 
 
 
eab8c12
4f67fd3
 
 
 
 
 
 
 
 
 
eab8c12
af8e0d2
 
 
 
 
 
 
 
 
 
 
cc1e215
debd7ba
af8e0d2
 
 
1b68cac
af8e0d2
 
 
 
 
 
1b68cac
cc1e215
af8e0d2
 
cc1e215
eab8c12
c9776ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5944fe7
 
c9776ea
5944fe7
c9776ea
 
5944fe7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4f67fd3
c9776ea
 
 
 
af8e0d2
581b5d8
af8e0d2
eab8c12
 
af8e0d2
 
cc1e215
eab8c12
af8e0d2
 
eab8c12
 
 
 
 
 
 
 
 
 
 
 
 
cc1e215
eab8c12
762f0e1
 
854f6df
dc94672
 
e665544
 
c105cd4
162159b
e665544
eab8c12
 
 
e665544
 
 
c105cd4
 
 
 
 
854f6df
39b51f4
854f6df
c105cd4
162159b
405620e
39b51f4
854f6df
 
c105cd4
854f6df
 
 
762f0e1
162159b
eab8c12
c105cd4
 
 
eab8c12
 
c105cd4
 
eab8c12
762f0e1
c105cd4
 
eab8c12
 
c105cd4
405620e
 
854f6df
405620e
762f0e1
 
 
 
405620e
c105cd4
 
 
 
 
 
 
 
 
 
 
 
 
 
eab8c12
c105cd4
eab8c12
c105cd4
 
 
eab8c12
541d06c
af8e0d2
162159b
af8e0d2
 
 
 
 
eab8c12
af8e0d2
eab8c12
 
 
9d47d15
 
 
 
 
 
 
 
 
 
 
 
 
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow-x: hidden;
    color: white;
}

header, nav {
    min-height: 90px !important;
    overflow: visible !important;
}
@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.star {
    position: fixed;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    z-index: -1;
}

/* Create random stars */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(255,255,255,0.1) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #8b5cf6;
}
.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    padding: 3rem 0;
    margin: 4rem 0;
    border-top: 1px solid #e3b341;
    border-bottom: 1px solid #e3b341;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid #e3b341;
    border-radius: 4px;
    color: white;
}

.newsletter-input:focus {
    outline: none;
    border-color: #e3b341;
    box-shadow: 0 0 0 3px rgba(227, 179, 65, 0.3);
}
/* Newsletter Styles */
.newsletter-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 179, 65, 0.3);
    border-color: #e3b341 !important;
}

.newsletter-card img {
    transition: transform 0.5s ease;
}

.newsletter-card:hover img {
    transform: scale(1.05);
}

/* Subscription Form */
.subscription-form input:focus {
    box-shadow: 0 0 0 3px rgba(227, 179, 65, 0.3);
}

.subscription-form button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscription-form button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.3s ease;
}

.subscription-form button:hover::after {
    left: 100%;
}
.newsletter-btn:hover {
    background: #f5c542;
    transform: translateY(-2px);
}
.feature-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}
/* Thanksgiving Banner Animation */
@keyframes pulseThanksgiving {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.thanksgiving-banner {
    animation: pulseThanksgiving 3s infinite;
    box-shadow: 0 2px 10px rgba(146, 64, 14, 0.5);
}

/* Google Translate Widget Styles */
#google_translate_element {
    z-index: 9999;
}

.goog-te-gadget {
    font-family: 'Montserrat', sans-serif !important;
    color: transparent !important;
}
.goog-te-gadget-simple {
    background-color: rgba(0,0,0,0.7) !important;
    border: 1px solid #e3b341 !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    backdrop-filter: blur(10px);
    height: 40px !important;
    min-width: auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.goog-te-menu-value {
    display: flex !important;
    align-items: center;
}

.goog-te-menu-value span {
    color: white !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.goog-te-menu-value img {
    display: none !important;
}

.goog-te-menu-value:before {
    content: '\f0ac';
    font-family: 'feather' !important;
    color: #e3b341;
    margin-right: 8px;
    font-size: 16px;
}

.goog-te-menu-value:after {
    content: '\f107';
    font-family: 'feather' !important;
    color: #e3b341;
    margin-left: 8px;
    font-size: 16px;
}

/* Dropdown menu styles */
.goog-te-menu-frame {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-top: 8px !important;
}

.goog-te-menu2 {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
}

.goog-te-menu2-item div, 
.goog-te-menu2-item-selected div {
    color: white !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
}

.goog-te-menu2-item:hover {
    background-color: rgba(227, 179, 65, 0.1) !important;
}

.goog-te-menu2-item-selected {
    background-color: rgba(227, 179, 65, 0.2) !important;
}
.feature-icon {
width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    font-size: 24px;
}

nav img {
  max-height: 56px !important;
  width: auto !important;
  object-fit: contain !important;
}

nav {
  align-items: center !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}