-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
525 lines (461 loc) · 11.2 KB
/
styles.css
File metadata and controls
525 lines (461 loc) · 11.2 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
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
/* General Styles */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #1a1a1a; /* Dark background for a more premium feel */
color: #eee; /* Light text color */
line-height: 1.7;
scroll-behavior: smooth;
background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1584048333538-90a90dab3231?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-attachment: fixed;
background-size: cover;
}
header {
background: linear-gradient(135deg, #ff2a75, #6e8efb); /* Sexier gradient with hot pink */
padding: 60px 20px;
text-align: center;
color: white;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden; /* Needed for potential background effects */
}
header::before {
content: '';
position: absolute;
top: -50px;
left: -50px;
width: 200%;
height: 200%;
background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
pointer-events: none;
}
header h1 {
margin: 0;
font-size: 3rem;
font-weight: 700;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
header p {
margin-top: 15px;
font-size: 1.3rem;
opacity: 0.9;
font-weight: 300;
}
nav {
display: flex;
justify-content: center;
background-color: #2a2a2a; /* Darker background for nav */
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
position: sticky;
top: 0;
z-index: 100;
padding: 0 20px;
}
nav a {
color: #ffffff; /* White links */
padding: 18px 25px;
text-decoration: none;
text-align: center;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
}
nav a:hover {
color: #a777e3; /* Highlight color on hover */
}
nav a:hover::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(to right, #a777e3, #6e8efb);
border-radius: 2px;
}
.container {
padding: 60px 20px;
max-width: 1200px;
margin: auto;
}
section {
margin-bottom: 80px;
}
h2 {
text-align: center;
color: #a777e3; /* Highlight color for headings */
margin-bottom: 40px;
font-size: 2.5rem;
position: relative;
padding-bottom: 15px;
font-weight: 700;
}
h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(to right, #6e8efb, #a777e3);
border-radius: 2px;
}
/* Services Section */
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.card {
background-color: rgba(42, 42, 42, 0.8); /* Semi-transparent card background */
border-radius: 12px;
padding: 30px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
transition: transform 0.4s ease, box-shadow 0.4s ease;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
position: relative; /* For badge positioning */
backdrop-filter: blur(5px); /* Frosted glass effect */
}
.card:hover {
transform: translateY(-15px) scale(1.03);
box-shadow: 0 20px 40px rgba(255, 42, 117, 0.3);
border-color: rgba(255, 42, 117, 0.4);
}
.service-icon {
height: 90px;
margin-bottom: 25px;
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.card h3 {
color: #6e8efb; /* Service title color */
margin-top: 0;
font-size: 1.5rem;
font-weight: 600;
}
.card p {
color: #ccc; /* Lighter text for description */
}
.free-badge {
background-color: #ff2a75; /* Hot pink for attention */
color: white;
font-weight: bold;
padding: 10px 20px;
border-radius: 50px;
display: inline-block;
margin-top: 20px;
animation: pulse 2s infinite;
box-shadow: 0 0 15px rgba(255, 42, 117, 0.6);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
transform: rotate(-2deg);
font-size: 1.2rem;
}
/* Package Section */
.package-description {
text-align: center;
margin-bottom: 40px;
color: #ccc;
font-size: 1.1rem;
}
.package-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 40px;
}
.package-card {
padding-top: 60px; /* Make space for the small badge */
text-align: left;
}
.package-card .small-badge {
position: absolute;
top: -15px; /* Adjust vertical position */
left: 50%;
transform: translateX(-50%);
font-size: 0.9rem;
padding: 8px 15px;
border-radius: 50px;
background-color: #ff2a75; /* Hot pink accent */
color: white;
font-weight: bold;
box-shadow: 0 3px 10px rgba(255, 42, 117, 0.5);
animation: none; /* Remove pulse animation from small badge */
}
.package-card h3 {
text-align: center;
font-size: 1.8rem;
margin-bottom: 20px;
}
.package-card ul {
list-style: none;
padding: 0;
margin: 20px 0;
}
.package-card li {
margin-bottom: 15px;
padding-left: 30px;
position: relative;
color: #ccc;
}
.package-card li::before {
content: '✅'; /* Checkmark icon */
position: absolute;
left: 0;
color: #30d158; /* Green color for checkmark */
font-size: 1.2rem;
}
.package-card li.highlight {
color: #a777e3; /* Highlight color */
font-weight: 600;
}
.package-card li.highlight::before {
color: #a777e3; /* Highlight color for checkmark */
}
.package-cta {
text-align: center;
font-style: italic;
margin-top: 30px;
color: #bbb;
}
/* About Section */
.about-content {
display: flex;
align-items: center;
gap: 50px;
}
.about-text {
flex: 1;
}
.about-text p {
margin-bottom: 20px;
color: #ccc;
}
.about-image {
flex: 1;
text-align: center;
}
.about-image img {
max-width: 100%;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
border: 3px solid #6e8efb; /* Highlight border */
object-fit: cover; /* Ensure image covers container */
height: auto; /* Maintain aspect ratio */
}
/* Testimonials */
.testimonial-slider {
position: relative;
max-width: 900px;
margin: 0 auto;
padding: 40px;
background-color: #2a2a2a;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial {
display: none;
text-align: center;
padding: 20px;
}
.testimonial.active {
display: block;
animation: fadeIn 0.7s ease-in-out;
}
.testimonial p.standout-text {
font-size: 1.2rem;
font-style: italic;
margin-bottom: 20px; /* Increased spacing */
color: #bbb;
}
.model-list {
display: flex; /* Arrange models horizontally */
justify-content: center; /* Center the models */
gap: 30px; /* Space between model items */
flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.model-item {
display: flex;
flex-direction: column; /* Stack image and name vertically */
align-items: center; /* Center image and name */
gap: 10px; /* Space between image and name */
}
.model-image {
width: 120px; /* Adjust size as needed */
height: 120px; /* Adjust size as needed */
object-fit: cover; /* Ensure image covers the area without distortion */
border-radius: 50%; /* Circular images */
border: 3px solid #ff2a75; /* Hot pink border */
box-shadow: 0 4px 15px rgba(255, 42, 117, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-item:hover .model-image {
transform: scale(1.08);
box-shadow: 0 8px 25px rgba(255, 42, 117, 0.7);
border-width: 4px;
}
.model-item span {
font-size: 1.1rem;
font-weight: 600;
color: #6e8efb; /* Name color */
}
.controls {
display: flex;
justify-content: center;
margin-top: 30px;
}
.prev-btn, .next-btn {
background: linear-gradient(135deg, #a777e3, #6e8efb);
color: white;
border: none;
border-radius: 50%;
width: 45px;
height: 45px;
margin: 0 15px;
cursor: pointer;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.prev-btn:hover, .next-btn:hover {
transform: scale(1.15);
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
/* Contact Form */
#contactForm {
max-width: 700px;
margin: 0 auto;
background-color: #2a2a2a;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-intro {
text-align: center;
margin-bottom: 30px;
color: #ccc;
font-size: 1.1rem;
}
.form-group {
margin-bottom: 25px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: 600;
color: #eee;
font-size: 1.1rem;
}
input, select, textarea {
width: 100%;
padding: 14px;
border: 1px solid #555;
border-radius: 8px;
font-size: 17px;
background-color: #333;
color: #eee;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
box-sizing: border-box;
}
input::placeholder, textarea::placeholder {
color: #bbb;
}
input:focus, select:focus, textarea:focus {
border-color: #6e8efb;
outline: none;
box-shadow: 0 0 8px rgba(110, 142, 251, 0.5);
}
textarea {
resize: vertical;
}
.submit-btn {
background: linear-gradient(135deg, #ff2a75, #6e8efb);
color: white;
padding: 16px 28px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 18px;
font-weight: 600;
transition: all 0.3s ease;
width: 100%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
letter-spacing: 1px;
text-transform: uppercase;
}
.submit-btn:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 15px 30px rgba(255, 42, 117, 0.4);
background: linear-gradient(135deg, #ff2a75, #a777e3);
letter-spacing: 1.5px;
}
#formSubmitMessage {
text-align: center;
margin-top: 30px;
padding: 20px;
background-color: #1f4037;
color: #30d158;
border-radius: 8px;
border: 1px solid #30d158;
}
.hidden {
display: none;
}
/* Footer */
footer {
background: linear-gradient(1deg, #a777e3, #6e8efb);
color: white;
padding: 50px 20px 20px;
text-align: center;
position: relative;
overflow: hidden;
}
/* New keyframe animation for pulsing elements */
@keyframes pulse {
0% {
transform: scale(1) rotate(-2deg);
box-shadow: 0 0 10px rgba(255, 42, 117, 0.6);
}
50% {
transform: scale(1.05) rotate(-2deg);
box-shadow: 0 0 20px rgba(255, 42, 117, 0.8);
}
100% {
transform: scale(1) rotate(-2deg);
box-shadow: 0 0 10px rgba(255, 42, 117, 0.6);
}
}
/* Sexy animated gradient border */
.glowing-border {
position: relative;
}
.glowing-border::before {
content: '';
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
background: linear-gradient(45deg, #ff2a75, #a777e3, #6e8efb, #ff2a75);
background-size: 400% 400%;
border-radius: 14px;
z-index: -1;
animation: glowingBorder 6s ease infinite;
}
@keyframes glowingBorder {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}