File size: 29,896 Bytes
91e85e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
526
527
528
529
530
531
532
533
534
535
536
537
538
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Kamil & Martyna's Wedding Planner</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .countdown-number {
            font-size: clamp(1.5rem, 5vw, 3rem);
        }
        .progress-ring__circle {
            transition: stroke-dashoffset 0.35s;
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
        }
        .task-checkbox:checked + .task-label {
            text-decoration: line-through;
            color: #9ca3af;
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .sidebar {
            transition: all 0.3s ease;
        }
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
                position: fixed;
                z-index: 50;
                height: 100vh;
            }
            .sidebar.open {
                transform: translateX(0);
            }
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Mobile Menu Button -->
    <div class="md:hidden fixed top-4 left-4 z-50">
        <button id="menuBtn" class="p-2 rounded-lg bg-white shadow-md text-pink-600">
            <i class="fas fa-bars text-xl"></i>
        </button>
    </div>

    <!-- Sidebar -->
    <div id="sidebar" class="sidebar w-64 bg-gradient-to-b from-pink-600 to-pink-500 text-white fixed h-full overflow-y-auto">
        <div class="p-6 flex flex-col items-center">
            <div class="w-24 h-24 rounded-full bg-white flex items-center justify-center mb-4 shadow-lg">
                <i class="fas fa-heart text-pink-500 text-4xl"></i>
            </div>
            <h1 class="text-2xl font-bold text-center">Kamil & Martyna</h1>
            <p class="text-pink-100 text-sm mt-1">October 12, 2024</p>
        </div>

        <nav class="mt-8">
            <div class="px-4">
                <div class="relative">
                    <input type="text" placeholder="Search..." class="w-full bg-pink-700 text-white placeholder-pink-200 rounded-lg px-4 py-2 pl-10 focus:outline-none focus:ring-2 focus:ring-pink-300">
                    <i class="fas fa-search absolute left-3 top-3 text-pink-200"></i>
                </div>
            </div>

            <ul class="mt-6">
                <li>
                    <a href="#" class="flex items-center px-6 py-3 bg-pink-700 text-white">
                        <i class="fas fa-home mr-3"></i>
                        Dashboard
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-tasks mr-3"></i>
                        Tasks
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-dollar-sign mr-3"></i>
                        Budget
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-calendar-alt mr-3"></i>
                        Calendar
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-chart-pie mr-3"></i>
                        Statistics
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-users mr-3"></i>
                        Guest List
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-utensils mr-3"></i>
                        Vendors
                    </a>
                </li>
                <li>
                    <a href="#" class="flex items-center px-6 py-3 hover:bg-pink-700 text-white">
                        <i class="fas fa-images mr-3"></i>
                        Gallery
                    </a>
                </li>
            </ul>
        </nav>

        <div class="absolute bottom-0 w-full p-4 bg-pink-700">
            <div class="flex items-center">
                <div class="w-10 h-10 rounded-full bg-pink-500 flex items-center justify-center">
                    <i class="fas fa-user text-white"></i>
                </div>
                <div class="ml-3">
                    <p class="text-white font-medium">Admin</p>
                    <p class="text-pink-200 text-xs">Kamil & Martyna</p>
                </div>
                <button class="ml-auto text-pink-200 hover:text-white">
                    <i class="fas fa-sign-out-alt"></i>
                </button>
            </div>
        </div>
    </div>

    <!-- Main Content -->
    <div class="md:ml-64 min-h-screen">
        <!-- Header -->
        <header class="bg-white shadow-sm">
            <div class="px-6 py-4 flex items-center justify-between">
                <h2 class="text-2xl font-semibold text-gray-800">Dashboard</h2>
                <div class="flex items-center space-x-4">
                    <button class="p-2 rounded-full hover:bg-gray-100 text-gray-600">
                        <i class="fas fa-bell"></i>
                    </button>
                    <button class="p-2 rounded-full hover:bg-gray-100 text-gray-600">
                        <i class="fas fa-envelope"></i>
                    </button>
                </div>
            </div>
        </header>

        <!-- Dashboard Content -->
        <main class="p-6">
            <!-- Countdown and Stats -->
            <div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
                <!-- Countdown Card -->
                <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 col-span-1 md:col-span-2">
                    <h3 class="text-lg font-semibold text-gray-700 mb-4">Countdown to the Big Day</h3>
                    <div class="flex justify-between items-center">
                        <div class="text-center">
                            <div class="countdown-number font-bold text-pink-600" id="days">00</div>
                            <div class="text-xs text-gray-500">Days</div>
                        </div>
                        <div class="text-center">
                            <div class="countdown-number font-bold text-pink-600" id="hours">00</div>
                            <div class="text-xs text-gray-500">Hours</div>
                        </div>
                        <div class="text-center">
                            <div class="countdown-number font-bold text-pink-600" id="minutes">00</div>
                            <div class="text-xs text-gray-500">Minutes</div>
                        </div>
                        <div class="text-center">
                            <div class="countdown-number font-bold text-pink-600" id="seconds">00</div>
                            <div class="text-xs text-gray-500">Seconds</div>
                        </div>
                    </div>
                </div>

                <!-- Budget Summary -->
                <div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
                    <h3 class="text-lg font-semibold text-gray-700 mb-4">Budget Summary</h3>
                    <div class="flex justify-between items-center mb-2">
                        <span class="text-sm text-gray-600">Total Budget</span>
                        <span class="font-medium">$25,000</span>
                    </div>
                    <div class="flex justify-between items-center mb-2">
                        <span class="text-sm text-gray-600">Spent</span>
                        <span class="font-medium text-red-500">$8,750</span>
                    </div>
                    <div class="flex justify-between items-center mb-4">
                        <span class="text-sm text-gray-600">Remaining</span>
                        <span class="font-medium text-green-500">$16,250</span>
                    </div>
                    <div class="w-full bg-gray-200 rounded-full h-2">
                        <div class="bg-pink-600 h-2 rounded-full" style="width: 35%"></div>
                    </div>
                </div>

                <!-- Tasks Progress -->
                <div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
                    <h3 class="text-lg font-semibold text-gray-700 mb-4">Tasks Progress</h3>
                    <div class="flex items-center justify-center">
                        <svg class="w-20 h-20">
                            <circle class="text-gray-200" stroke-width="8" stroke="currentColor" fill="transparent" r="30" cx="40" cy="40" />
                            <circle class="text-pink-600 progress-ring__circle" stroke-width="8" stroke-linecap="round" stroke="currentColor" fill="transparent" r="30" cx="40" cy="40" stroke-dasharray="188.49555921538757" stroke-dashoffset="56.54866776461627" />
                        </svg>
                        <div class="ml-4">
                            <div class="text-2xl font-bold text-pink-600">70%</div>
                            <div class="text-sm text-gray-500">Completed</div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Upcoming Tasks and Recent Activity -->
            <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
                <!-- Upcoming Tasks -->
                <div class="bg-white rounded-xl shadow-md overflow-hidden lg:col-span-2">
                    <div class="p-6 border-b border-gray-200">
                        <h3 class="text-lg font-semibold text-gray-700">Upcoming Tasks</h3>
                    </div>
                    <div class="divide-y divide-gray-200">
                        <div class="p-4 hover:bg-gray-50 transition-colors duration-150">
                            <div class="flex items-center">
                                <input type="checkbox" class="task-checkbox rounded-full border-gray-300 text-pink-600 focus:ring-pink-500">
                                <label class="task-label ml-3 flex-1">
                                    <div class="font-medium">Book photographer</div>
                                    <div class="text-sm text-gray-500">Due tomorrow</div>
                                </label>
                                <span class="px-2 py-1 text-xs rounded-full bg-pink-100 text-pink-800">High</span>
                            </div>
                        </div>
                        <div class="p-4 hover:bg-gray-50 transition-colors duration-150">
                            <div class="flex items-center">
                                <input type="checkbox" class="task-checkbox rounded-full border-gray-300 text-pink-600 focus:ring-pink-500">
                                <label class="task-label ml-3 flex-1">
                                    <div class="font-medium">Finalize guest list</div>
                                    <div class="text-sm text-gray-500">Due in 3 days</div>
                                </label>
                                <span class="px-2 py-1 text-xs rounded-full bg-yellow-100 text-yellow-800">Medium</span>
                            </div>
                        </div>
                        <div class="p-4 hover:bg-gray-50 transition-colors duration-150">
                            <div class="flex items-center">
                                <input type="checkbox" class="task-checkbox rounded-full border-gray-300 text-pink-600 focus:ring-pink-500" checked>
                                <label class="task-label ml-3 flex-1">
                                    <div class="font-medium">Book venue</div>
                                    <div class="text-sm text-gray-500">Completed</div>
                                </label>
                                <span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Done</span>
                            </div>
                        </div>
                        <div class="p-4 hover:bg-gray-50 transition-colors duration-150">
                            <div class="flex items-center">
                                <input type="checkbox" class="task-checkbox rounded-full border-gray-300 text-pink-600 focus:ring-pink-500">
                                <label class="task-label ml-3 flex-1">
                                    <div class="font-medium">Choose wedding cake</div>
                                    <div class="text-sm text-gray-500">Due in 1 week</div>
                                </label>
                                <span class="px-2 py-1 text-xs rounded-full bg-yellow-100 text-yellow-800">Medium</span>
                            </div>
                        </div>
                        <div class="p-4 hover:bg-gray-50 transition-colors duration-150">
                            <div class="flex items-center">
                                <input type="checkbox" class="task-checkbox rounded-full border-gray-300 text-pink-600 focus:ring-pink-500">
                                <label class="task-label ml-3 flex-1">
                                    <div class="font-medium">Send save-the-dates</div>
                                    <div class="text-sm text-gray-500">Due in 2 weeks</div>
                                </label>
                                <span class="px-2 py-1 text-xs rounded-full bg-blue-100 text-blue-800">Low</span>
                            </div>
                        </div>
                    </div>
                    <div class="p-4 border-t border-gray-200 text-center">
                        <button class="text-pink-600 hover:text-pink-800 font-medium">View All Tasks</button>
                    </div>
                </div>

                <!-- Recent Activity -->
                <div class="bg-white rounded-xl shadow-md overflow-hidden">
                    <div class="p-6 border-b border-gray-200">
                        <h3 class="text-lg font-semibold text-gray-700">Recent Activity</h3>
                    </div>
                    <div class="p-4">
                        <div class="flex mb-4 pb-4 border-b border-gray-100">
                            <div class="flex-shrink-0 mr-3">
                                <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center">
                                    <i class="fas fa-check text-pink-600"></i>
                                </div>
                            </div>
                            <div>
                                <p class="text-sm font-medium text-gray-800">Venue deposit paid</p>
                                <p class="text-xs text-gray-500">Today, 10:45 AM</p>
                            </div>
                        </div>
                        <div class="flex mb-4 pb-4 border-b border-gray-100">
                            <div class="flex-shrink-0 mr-3">
                                <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center">
                                    <i class="fas fa-user-plus text-blue-600"></i>
                                </div>
                            </div>
                            <div>
                                <p class="text-sm font-medium text-gray-800">5 guests added</p>
                                <p class="text-xs text-gray-500">Yesterday, 4:30 PM</p>
                            </div>
                        </div>
                        <div class="flex mb-4 pb-4 border-b border-gray-100">
                            <div class="flex-shrink-0 mr-3">
                                <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center">
                                    <i class="fas fa-calendar-check text-green-600"></i>
                                </div>
                            </div>
                            <div>
                                <p class="text-sm font-medium text-gray-800">Photographer meeting scheduled</p>
                                <p class="text-xs text-gray-500">Yesterday, 11:20 AM</p>
                            </div>
                        </div>
                        <div class="flex mb-4 pb-4 border-b border-gray-100">
                            <div class="flex-shrink-0 mr-3">
                                <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center">
                                    <i class="fas fa-tasks text-purple-600"></i>
                                </div>
                            </div>
                            <div>
                                <p class="text-sm font-medium text-gray-800">Task "Choose flowers" completed</p>
                                <p class="text-xs text-gray-500">2 days ago</p>
                            </div>
                        </div>
                        <div class="flex">
                            <div class="flex-shrink-0 mr-3">
                                <div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center">
                                    <i class="fas fa-dollar-sign text-yellow-600"></i>
                                </div>
                            </div>
                            <div>
                                <p class="text-sm font-medium text-gray-800">Budget updated</p>
                                <p class="text-xs text-gray-500">3 days ago</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Budget Breakdown -->
            <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
                <div class="p-6 border-b border-gray-200">
                    <div class="flex items-center justify-between">
                        <h3 class="text-lg font-semibold text-gray-700">Budget Breakdown</h3>
                        <button class="text-pink-600 hover:text-pink-800 font-medium">View Details</button>
                    </div>
                </div>
                <div class="p-6">
                    <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
                        <div class="flex items-center">
                            <div class="w-12 h-12 rounded-lg bg-pink-100 flex items-center justify-center mr-4">
                                <i class="fas fa-home text-pink-600"></i>
                            </div>
                            <div>
                                <p class="text-sm text-gray-500">Venue</p>
                                <p class="font-medium">$8,000 / $10,000</p>
                                <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
                                    <div class="bg-pink-600 h-1.5 rounded-full" style="width: 80%"></div>
                                </div>
                            </div>
                        </div>
                        <div class="flex items-center">
                            <div class="w-12 h-12 rounded-lg bg-blue-100 flex items-center justify-center mr-4">
                                <i class="fas fa-camera text-blue-600"></i>
                            </div>
                            <div>
                                <p class="text-sm text-gray-500">Photography</p>
                                <p class="font-medium">$1,500 / $3,000</p>
                                <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
                                    <div class="bg-blue-600 h-1.5 rounded-full" style="width: 50%"></div>
                                </div>
                            </div>
                        </div>
                        <div class="flex items-center">
                            <div class="w-12 h-12 rounded-lg bg-green-100 flex items-center justify-center mr-4">
                                <i class="fas fa-utensils text-green-600"></i>
                            </div>
                            <div>
                                <p class="text-sm text-gray-500">Catering</p>
                                <p class="font-medium">$2,000 / $5,000</p>
                                <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
                                    <div class="bg-green-600 h-1.5 rounded-full" style="width: 40%"></div>
                                </div>
                            </div>
                        </div>
                        <div class="flex items-center">
                            <div class="w-12 h-12 rounded-lg bg-purple-100 flex items-center justify-center mr-4">
                                <i class="fas fa-tshirt text-purple-600"></i>
                            </div>
                            <div>
                                <p class="text-sm text-gray-500">Attire</p>
                                <p class="font-medium">$1,200 / $2,500</p>
                                <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
                                    <div class="bg-purple-600 h-1.5 rounded-full" style="width: 48%"></div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Upcoming Events -->
            <div class="bg-white rounded-xl shadow-md overflow-hidden">
                <div class="p-6 border-b border-gray-200">
                    <div class="flex items-center justify-between">
                        <h3 class="text-lg font-semibold text-gray-700">Upcoming Events</h3>
                        <button class="text-pink-600 hover:text-pink-800 font-medium">View Calendar</button>
                    </div>
                </div>
                <div class="p-6">
                    <div class="space-y-4">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 mr-4 mt-1">
                                <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center">
                                    <i class="fas fa-calendar-day text-pink-600"></i>
                                </div>
                            </div>
                            <div class="flex-1">
                                <div class="flex items-center justify-between">
                                    <h4 class="font-medium text-gray-800">Photographer Meeting</h4>
                                    <span class="text-xs px-2 py-1 rounded-full bg-pink-100 text-pink-800">Tomorrow</span>
                                </div>
                                <p class="text-sm text-gray-600 mt-1">Discuss wedding day schedule and shot list</p>
                                <div class="flex items-center text-xs text-gray-500 mt-2">
                                    <i class="far fa-clock mr-1"></i>
                                    <span>10:00 AM - 11:30 AM</span>
                                    <i class="fas fa-map-marker-alt ml-3 mr-1"></i>
                                    <span>Studio Downtown</span>
                                </div>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <div class="flex-shrink-0 mr-4 mt-1">
                                <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center">
                                    <i class="fas fa-ring text-blue-600"></i>
                                </div>
                            </div>
                            <div class="flex-1">
                                <div class="flex items-center justify-between">
                                    <h4 class="font-medium text-gray-800">Dress Fitting</h4>
                                    <span class="text-xs px-2 py-1 rounded-full bg-blue-100 text-blue-800">In 5 days</span>
                                </div>
                                <p class="text-sm text-gray-600 mt-1">First fitting for the wedding dress</p>
                                <div class="flex items-center text-xs text-gray-500 mt-2">
                                    <i class="far fa-clock mr-1"></i>
                                    <span>2:00 PM - 3:30 PM</span>
                                    <i class="fas fa-map-marker-alt ml-3 mr-1"></i>
                                    <span>Bridal Boutique</span>
                                </div>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <div class="flex-shrink-0 mr-4 mt-1">
                                <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center">
                                    <i class="fas fa-cake text-green-600"></i>
                                </div>
                            </div>
                            <div class="flex-1">
                                <div class="flex items-center justify-between">
                                    <h4 class="font-medium text-gray-800">Cake Tasting</h4>
                                    <span class="text-xs px-2 py-1 rounded-full bg-green-100 text-green-800">In 1 week</span>
                                </div>
                                <p class="text-sm text-gray-600 mt-1">Sample flavors and designs for wedding cake</p>
                                <div class="flex items-center text-xs text-gray-500 mt-2">
                                    <i class="far fa-clock mr-1"></i>
                                    <span>1:00 PM - 2:30 PM</span>
                                    <i class="fas fa-map-marker-alt ml-3 mr-1"></i>
                                    <span>Sweet Delights Bakery</span>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </main>
    </div>

    <script>
        // Mobile menu toggle
        const menuBtn = document.getElementById('menuBtn');
        const sidebar = document.getElementById('sidebar');

        menuBtn.addEventListener('click', () => {
            sidebar.classList.toggle('open');
        });

        // Countdown timer
        function updateCountdown() {
            const weddingDate = new Date('October 12, 2024 00:00:00').getTime();
            const now = new Date().getTime();
            const distance = weddingDate - now;

            const days = Math.floor(distance / (1000 * 60 * 60 * 24));
            const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
            const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
            const seconds = Math.floor((distance % (1000 * 60)) / 1000);

            document.getElementById('days').textContent = days.toString().padStart(2, '0');
            document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
            document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
            document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
        }

        updateCountdown();
        setInterval(updateCountdown, 1000);

        // Task completion toggle
        document.querySelectorAll('.task-checkbox').forEach(checkbox => {
            checkbox.addEventListener('change', function() {
                const label = this.nextElementSibling;
                if (this.checked) {
                    label.classList.add('line-through', 'text-gray-400');
                } else {
                    label.classList.remove('line-through', 'text-gray-400');
                }
            });
        });

        // Fade in animation for elements
        document.addEventListener('DOMContentLoaded', () => {
            const elements = document.querySelectorAll('.countdown-number, .progress-ring__circle, .task-label');
            elements.forEach((el, index) => {
                setTimeout(() => {
                    el.classList.add('fade-in');
                }, index * 100);
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=kamioll999/weeding" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>