Cezarxil commited on
Commit
f694ef8
·
verified ·
1 Parent(s): 1238eed

Design a clean, minimalistic wedding videography portfolio website. Focus on elegance, simplicity, and emotional connection. Key features: Neutral color palette (white, beige, soft gray) Large fullscreen video header or hero reel Minimal text: name, tagline (‘Capturing Timeless Moments’), and contact button Grid gallery of wedding films with simple hover play About section with a short, warm description Contact form (name, email, message) Mobile-friendly, smooth scrolling, no clutter, no heavy effects." - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +532 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Portfolio
3
- emoji: 🔥
4
- colorFrom: yellow
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: portfolio
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,532 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Timeless Moments | Wedding Videography</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ /* Custom CSS for video hover effects */
11
+ .video-thumbnail {
12
+ position: relative;
13
+ overflow: hidden;
14
+ transition: all 0.3s ease;
15
+ }
16
+
17
+ .video-thumbnail:hover {
18
+ transform: scale(1.02);
19
+ box-shadow: 0 10px 25px rgba(0,0,0,0.1);
20
+ }
21
+
22
+ .play-icon {
23
+ position: absolute;
24
+ top: 50%;
25
+ left: 50%;
26
+ transform: translate(-50%, -50%);
27
+ opacity: 0;
28
+ transition: all 0.3s ease;
29
+ background: rgba(255,255,255,0.8);
30
+ width: 60px;
31
+ height: 60px;
32
+ border-radius: 50%;
33
+ display: flex;
34
+ align-items: center;
35
+ justify-content: center;
36
+ }
37
+
38
+ .video-thumbnail:hover .play-icon {
39
+ opacity: 1;
40
+ }
41
+
42
+ /* Smooth scrolling */
43
+ html {
44
+ scroll-behavior: smooth;
45
+ }
46
+
47
+ /* Hero video */
48
+ .hero-video {
49
+ height: 100vh;
50
+ max-height: 800px;
51
+ }
52
+
53
+ /* Custom underline for headings */
54
+ .heading-underline {
55
+ position: relative;
56
+ display: inline-block;
57
+ }
58
+
59
+ .heading-underline:after {
60
+ content: '';
61
+ position: absolute;
62
+ width: 50%;
63
+ height: 2px;
64
+ bottom: -8px;
65
+ left: 25%;
66
+ background-color: #d4a76a;
67
+ }
68
+
69
+ /* Contact form focus */
70
+ .contact-input:focus {
71
+ outline: none;
72
+ box-shadow: 0 0 0 2px rgba(212, 167, 106, 0.3);
73
+ }
74
+ </style>
75
+ </head>
76
+ <body class="font-sans text-gray-700 bg-white">
77
+ <!-- Navigation -->
78
+ <nav class="fixed w-full z-50 bg-white bg-opacity-90 backdrop-blur-sm shadow-sm">
79
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
80
+ <div class="flex justify-between h-16 items-center">
81
+ <div class="flex-shrink-0 flex items-center">
82
+ <span class="text-xl font-light text-gray-800">Timeless Moments</span>
83
+ </div>
84
+ <div class="hidden md:block">
85
+ <div class="ml-10 flex items-center space-x-8">
86
+ <a href="#home" class="text-gray-700 hover:text-amber-700 px-3 py-2 text-sm font-medium transition-colors duration-200">Home</a>
87
+ <a href="#portfolio" class="text-gray-700 hover:text-amber-700 px-3 py-2 text-sm font-medium transition-colors duration-200">Portfolio</a>
88
+ <a href="#about" class="text-gray-700 hover:text-amber-700 px-3 py-2 text-sm font-medium transition-colors duration-200">About</a>
89
+ <a href="#contact" class="text-gray-700 hover:text-amber-700 px-3 py-2 text-sm font-medium transition-colors duration-200">Contact</a>
90
+ </div>
91
+ </div>
92
+ <div class="md:hidden">
93
+ <button id="menu-toggle" class="text-gray-700 focus:outline-none">
94
+ <i class="fas fa-bars text-xl"></i>
95
+ </button>
96
+ </div>
97
+ </div>
98
+ </div>
99
+
100
+ <!-- Mobile menu -->
101
+ <div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
102
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
103
+ <a href="#home" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-amber-700">Home</a>
104
+ <a href="#portfolio" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-amber-700">Portfolio</a>
105
+ <a href="#about" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-amber-700">About</a>
106
+ <a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-amber-700">Contact</a>
107
+ </div>
108
+ </div>
109
+ </nav>
110
+
111
+ <!-- Hero Section with Video Background -->
112
+ <section id="home" class="hero-video relative flex items-center justify-center bg-gray-100 overflow-hidden">
113
+ <video autoplay muted loop playsinline class="absolute w-full h-full object-cover">
114
+ <source src="https://assets.mixkit.co/videos/preview/mixkit-wedding-couple-in-a-field-1862-large.mp4" type="video/mp4">
115
+ Your browser does not support the video tag.
116
+ </video>
117
+ <div class="absolute inset-0 bg-black bg-opacity-30"></div>
118
+ <div class="relative z-10 text-center px-4">
119
+ <h1 class="text-4xl md:text-6xl font-light text-white mb-4">Capturing Timeless Moments</h1>
120
+ <p class="text-xl md:text-2xl text-white font-light mb-8 max-w-2xl mx-auto">Beautiful wedding films that tell your unique love story</p>
121
+ <a href="#contact" class="inline-block px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-amber-700 hover:bg-amber-800 transition-colors duration-200">
122
+ Get in Touch
123
+ </a>
124
+ </div>
125
+ </section>
126
+
127
+ <!-- Portfolio Section -->
128
+ <section id="portfolio" class="py-20 bg-white">
129
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
130
+ <div class="text-center mb-16">
131
+ <h2 class="text-3xl md:text-4xl font-light text-gray-800 heading-underline">Wedding Films</h2>
132
+ <p class="mt-6 max-w-2xl mx-auto text-gray-600">Each wedding tells a different story. Here are some of our favorites.</p>
133
+ </div>
134
+
135
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
136
+ <!-- Video 1 -->
137
+ <div class="video-thumbnail rounded-lg overflow-hidden relative cursor-pointer">
138
+ <img src="https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Wedding Film" class="w-full h-64 md:h-80 object-cover">
139
+ <div class="play-icon">
140
+ <i class="fas fa-play text-amber-700 text-xl"></i>
141
+ </div>
142
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
143
+ <h3 class="text-white font-light text-xl">Sarah & Michael</h3>
144
+ <p class="text-gray-300 text-sm">Tuscany, Italy</p>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- Video 2 -->
149
+ <div class="video-thumbnail rounded-lg overflow-hidden relative cursor-pointer">
150
+ <img src="https://images.unsplash.com/photo-1523438885200-e635ba2c371e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Wedding Film" class="w-full h-64 md:h-80 object-cover">
151
+ <div class="play-icon">
152
+ <i class="fas fa-play text-amber-700 text-xl"></i>
153
+ </div>
154
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
155
+ <h3 class="text-white font-light text-xl">Emma & James</h3>
156
+ <p class="text-gray-300 text-sm">New York, USA</p>
157
+ </div>
158
+ </div>
159
+
160
+ <!-- Video 3 -->
161
+ <div class="video-thumbnail rounded-lg overflow-hidden relative cursor-pointer">
162
+ <img src="https://images.unsplash.com/photo-1520854221256-17451cc331bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Wedding Film" class="w-full h-64 md:h-80 object-cover">
163
+ <div class="play-icon">
164
+ <i class="fas fa-play text-amber-700 text-xl"></i>
165
+ </div>
166
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
167
+ <h3 class="text-white font-light text-xl">Sophia & Daniel</h3>
168
+ <p class="text-gray-300 text-sm">Santorini, Greece</p>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Video 4 -->
173
+ <div class="video-thumbnail rounded-lg overflow-hidden relative cursor-pointer">
174
+ <img src="https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Wedding Film" class="w-full h-64 md:h-80 object-cover">
175
+ <div class="play-icon">
176
+ <i class="fas fa-play text-amber-700 text-xl"></i>
177
+ </div>
178
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
179
+ <h3 class="text-white font-light text-xl">Olivia & William</h3>
180
+ <p class="text-gray-300 text-sm">Paris, France</p>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Video 5 -->
185
+ <div class="video-thumbnail rounded-lg overflow-hidden relative cursor-pointer">
186
+ <img src="https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Wedding Film" class="w-full h-64 md:h-80 object-cover">
187
+ <div class="play-icon">
188
+ <i class="fas fa-play text-amber-700 text-xl"></i>
189
+ </div>
190
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
191
+ <h3 class="text-white font-light text-xl">Ava & Benjamin</h3>
192
+ <p class="text-gray-300 text-sm">Bali, Indonesia</p>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Video 6 -->
197
+ <div class="video-thumbnail rounded-lg overflow-hidden relative cursor-pointer">
198
+ <img src="https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Wedding Film" class="w-full h-64 md:h-80 object-cover">
199
+ <div class="play-icon">
200
+ <i class="fas fa-play text-amber-700 text-xl"></i>
201
+ </div>
202
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
203
+ <h3 class="text-white font-light text-xl">Charlotte & Henry</h3>
204
+ <p class="text-gray-300 text-sm">Lake Como, Italy</p>
205
+ </div>
206
+ </div>
207
+ </div>
208
+
209
+ <div class="text-center mt-16">
210
+ <a href="#" class="inline-block px-6 py-2 border border-gray-300 text-base font-medium rounded-md text-gray-700 hover:bg-gray-50 transition-colors duration-200">
211
+ View More Films
212
+ </a>
213
+ </div>
214
+ </div>
215
+ </section>
216
+
217
+ <!-- About Section -->
218
+ <section id="about" class="py-20 bg-gray-50">
219
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
220
+ <div class="lg:grid lg:grid-cols-2 lg:gap-16 items-center">
221
+ <div class="mb-12 lg:mb-0">
222
+ <img src="https://images.unsplash.com/photo-1552664199-fd31f7431a55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="About Us" class="rounded-lg shadow-md w-full h-auto">
223
+ </div>
224
+ <div>
225
+ <h2 class="text-3xl md:text-4xl font-light text-gray-800 heading-underline">Our Story</h2>
226
+ <p class="mt-6 text-gray-600 leading-relaxed">
227
+ We're a passionate team of wedding filmmakers dedicated to capturing the essence of your special day.
228
+ With over a decade of experience, we've learned that the most beautiful moments are often the quietest -
229
+ the stolen glances, the tender touches, the joyful tears.
230
+ </p>
231
+ <p class="mt-4 text-gray-600 leading-relaxed">
232
+ Our approach is unobtrusive and natural. We blend into your day, capturing authentic emotions as they unfold,
233
+ creating films that you'll cherish for a lifetime. Every wedding is unique, and we take the time to understand
234
+ your story so we can tell it beautifully through film.
235
+ </p>
236
+ <div class="mt-8 grid grid-cols-2 gap-4">
237
+ <div class="flex items-center">
238
+ <div class="flex-shrink-0 bg-amber-100 rounded-full p-3">
239
+ <i class="fas fa-camera text-amber-700"></i>
240
+ </div>
241
+ <div class="ml-4">
242
+ <h3 class="text-lg font-medium text-gray-800">Cinematic Style</h3>
243
+ <p class="mt-1 text-gray-600">Beautiful, film-like quality</p>
244
+ </div>
245
+ </div>
246
+ <div class="flex items-center">
247
+ <div class="flex-shrink-0 bg-amber-100 rounded-full p-3">
248
+ <i class="fas fa-heart text-amber-700"></i>
249
+ </div>
250
+ <div class="ml-4">
251
+ <h3 class="text-lg font-medium text-gray-800">Emotional Storytelling</h3>
252
+ <p class="mt-1 text-gray-600">Capturing real moments</p>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </section>
260
+
261
+ <!-- Testimonials -->
262
+ <section class="py-20 bg-white">
263
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
264
+ <div class="text-center mb-16">
265
+ <h2 class="text-3xl md:text-4xl font-light text-gray-800 heading-underline">Kind Words</h2>
266
+ </div>
267
+
268
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
269
+ <div class="bg-gray-50 p-8 rounded-lg">
270
+ <div class="flex items-center mb-4">
271
+ <div class="text-amber-600 text-2xl mr-2">
272
+ <i class="fas fa-star"></i>
273
+ <i class="fas fa-star"></i>
274
+ <i class="fas fa-star"></i>
275
+ <i class="fas fa-star"></i>
276
+ <i class="fas fa-star"></i>
277
+ </div>
278
+ </div>
279
+ <p class="text-gray-600 italic mb-6">"We couldn't have asked for a more beautiful way to remember our day. The film captured emotions we didn't even realize were happening."</p>
280
+ <div class="flex items-center">
281
+ <div>
282
+ <h4 class="font-medium text-gray-800">Emily & Robert</h4>
283
+ <p class="text-gray-600 text-sm">June 2023</p>
284
+ </div>
285
+ </div>
286
+ </div>
287
+
288
+ <div class="bg-gray-50 p-8 rounded-lg">
289
+ <div class="flex items-center mb-4">
290
+ <div class="text-amber-600 text-2xl mr-2">
291
+ <i class="fas fa-star"></i>
292
+ <i class="fas fa-star"></i>
293
+ <i class="fas fa-star"></i>
294
+ <i class="fas fa-star"></i>
295
+ <i class="fas fa-star"></i>
296
+ </div>
297
+ </div>
298
+ <p class="text-gray-600 italic mb-6">"Every time we watch our wedding film, we discover new details and emotions. It's like reliving the best day of our lives over and over."</p>
299
+ <div class="flex items-center">
300
+ <div>
301
+ <h4 class="font-medium text-gray-800">Sophie & David</h4>
302
+ <p class="text-gray-600 text-sm">August 2023</p>
303
+ </div>
304
+ </div>
305
+ </div>
306
+
307
+ <div class="bg-gray-50 p-8 rounded-lg">
308
+ <div class="flex items-center mb-4">
309
+ <div class="text-amber-600 text-2xl mr-2">
310
+ <i class="fas fa-star"></i>
311
+ <i class="fas fa-star"></i>
312
+ <i class="fas fa-star"></i>
313
+ <i class="fas fa-star"></i>
314
+ <i class="fas fa-star"></i>
315
+ </div>
316
+ </div>
317
+ <p class="text-gray-600 italic mb-6">"The team was so professional and unobtrusive. We barely noticed them during the day, but the film shows they captured everything perfectly."</p>
318
+ <div class="flex items-center">
319
+ <div>
320
+ <h4 class="font-medium text-gray-800">Jessica & Michael</h4>
321
+ <p class="text-gray-600 text-sm">September 2023</p>
322
+ </div>
323
+ </div>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ </section>
328
+
329
+ <!-- Contact Section -->
330
+ <section id="contact" class="py-20 bg-gray-50">
331
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
332
+ <div class="lg:grid lg:grid-cols-2 lg:gap-16">
333
+ <div class="mb-12 lg:mb-0">
334
+ <h2 class="text-3xl md:text-4xl font-light text-gray-800 heading-underline">Let's Connect</h2>
335
+ <p class="mt-6 text-gray-600 leading-relaxed">
336
+ We'd love to hear about your wedding plans and how we can help capture your special day.
337
+ Whether you're just starting to plan or have all the details finalized, we're here to help.
338
+ </p>
339
+ <div class="mt-8 space-y-4">
340
+ <div class="flex items-center">
341
+ <div class="flex-shrink-0 bg-amber-100 rounded-full p-3">
342
+ <i class="fas fa-envelope text-amber-700"></i>
343
+ </div>
344
+ <div class="ml-4">
345
+ <h3 class="text-lg font-medium text-gray-800">Email Us</h3>
346
+ <p class="mt-1 text-gray-600">[email protected]</p>
347
+ </div>
348
+ </div>
349
+ <div class="flex items-center">
350
+ <div class="flex-shrink-0 bg-amber-100 rounded-full p-3">
351
+ <i class="fas fa-phone text-amber-700"></i>
352
+ </div>
353
+ <div class="ml-4">
354
+ <h3 class="text-lg font-medium text-gray-800">Call Us</h3>
355
+ <p class="mt-1 text-gray-600">+1 (555) 123-4567</p>
356
+ </div>
357
+ </div>
358
+ <div class="flex items-center">
359
+ <div class="flex-shrink-0 bg-amber-100 rounded-full p-3">
360
+ <i class="fas fa-map-marker-alt text-amber-700"></i>
361
+ </div>
362
+ <div class="ml-4">
363
+ <h3 class="text-lg font-medium text-gray-800">Based In</h3>
364
+ <p class="mt-1 text-gray-600">New York, USA<br>Available worldwide</p>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </div>
369
+
370
+ <div>
371
+ <form class="space-y-6">
372
+ <div>
373
+ <label for="name" class="block text-sm font-medium text-gray-700">Your Name</label>
374
+ <div class="mt-1">
375
+ <input id="name" name="name" type="text" required class="contact-input py-3 px-4 block w-full border border-gray-300 rounded-md focus:border-amber-500 focus:ring-amber-500">
376
+ </div>
377
+ </div>
378
+
379
+ <div>
380
+ <label for="email" class="block text-sm font-medium text-gray-700">Email Address</label>
381
+ <div class="mt-1">
382
+ <input id="email" name="email" type="email" required class="contact-input py-3 px-4 block w-full border border-gray-300 rounded-md focus:border-amber-500 focus:ring-amber-500">
383
+ </div>
384
+ </div>
385
+
386
+ <div>
387
+ <label for="wedding-date" class="block text-sm font-medium text-gray-700">Wedding Date</label>
388
+ <div class="mt-1">
389
+ <input id="wedding-date" name="wedding-date" type="date" class="contact-input py-3 px-4 block w-full border border-gray-300 rounded-md focus:border-amber-500 focus:ring-amber-500">
390
+ </div>
391
+ </div>
392
+
393
+ <div>
394
+ <label for="message" class="block text-sm font-medium text-gray-700">Your Message</label>
395
+ <div class="mt-1">
396
+ <textarea id="message" name="message" rows="4" class="contact-input py-3 px-4 block w-full border border-gray-300 rounded-md focus:border-amber-500 focus:ring-amber-500"></textarea>
397
+ </div>
398
+ </div>
399
+
400
+ <div>
401
+ <button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-amber-700 hover:bg-amber-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-amber-500 transition-colors duration-200">
402
+ Send Message
403
+ </button>
404
+ </div>
405
+ </form>
406
+ </div>
407
+ </div>
408
+ </div>
409
+ </section>
410
+
411
+ <!-- Footer -->
412
+ <footer class="bg-white py-12 border-t border-gray-200">
413
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
414
+ <div class="flex flex-col md:flex-row justify-between items-center">
415
+ <div class="mb-6 md:mb-0">
416
+ <span class="text-xl font-light text-gray-800">Timeless Moments</span>
417
+ <p class="mt-2 text-sm text-gray-500">Capturing your love story beautifully.</p>
418
+ </div>
419
+ <div class="flex space-x-6">
420
+ <a href="#" class="text-gray-500 hover:text-amber-700">
421
+ <i class="fab fa-instagram text-xl"></i>
422
+ </a>
423
+ <a href="#" class="text-gray-500 hover:text-amber-700">
424
+ <i class="fab fa-vimeo-v text-xl"></i>
425
+ </a>
426
+ <a href="#" class="text-gray-500 hover:text-amber-700">
427
+ <i class="fab fa-pinterest-p text-xl"></i>
428
+ </a>
429
+ </div>
430
+ </div>
431
+ <div class="mt-8 pt-8 border-t border-gray-200 flex flex-col md:flex-row justify-between items-center">
432
+ <p class="text-sm text-gray-500 mb-4 md:mb-0">&copy; 2023 Timeless Moments. All rights reserved.</p>
433
+ <div class="flex space-x-6">
434
+ <a href="#" class="text-sm text-gray-500 hover:text-amber-700">Privacy Policy</a>
435
+ <a href="#" class="text-sm text-gray-500 hover:text-amber-700">Terms of Service</a>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </footer>
440
+
441
+ <!-- Video Modal -->
442
+ <div id="video-modal" class="fixed inset-0 z-50 hidden items-center justify-center bg-black bg-opacity-90 p-4">
443
+ <div class="relative w-full max-w-4xl">
444
+ <button id="close-modal" class="absolute -top-12 right-0 text-white text-3xl focus:outline-none">
445
+ <i class="fas fa-times"></i>
446
+ </button>
447
+ <div class="aspect-w-16 aspect-h-9">
448
+ <iframe id="modal-video" class="w-full h-96 md:h-[32rem]" src="" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
449
+ </div>
450
+ </div>
451
+ </div>
452
+
453
+ <script>
454
+ // Mobile menu toggle
455
+ const menuToggle = document.getElementById('menu-toggle');
456
+ const mobileMenu = document.getElementById('mobile-menu');
457
+
458
+ menuToggle.addEventListener('click', () => {
459
+ mobileMenu.classList.toggle('hidden');
460
+ });
461
+
462
+ // Close mobile menu when clicking on a link
463
+ const mobileLinks = document.querySelectorAll('#mobile-menu a');
464
+ mobileLinks.forEach(link => {
465
+ link.addEventListener('click', () => {
466
+ mobileMenu.classList.add('hidden');
467
+ });
468
+ });
469
+
470
+ // Video modal functionality
471
+ const videoThumbnails = document.querySelectorAll('.video-thumbnail');
472
+ const videoModal = document.getElementById('video-modal');
473
+ const modalVideo = document.getElementById('modal-video');
474
+ const closeModal = document.getElementById('close-modal');
475
+
476
+ // Sample video URLs (in a real site, these would be your actual video links)
477
+ const videoUrls = [
478
+ 'https://player.vimeo.com/video/123456789?autoplay=1',
479
+ 'https://player.vimeo.com/video/987654321?autoplay=1',
480
+ 'https://player.vimeo.com/video/567891234?autoplay=1',
481
+ 'https://player.vimeo.com/video/432156789?autoplay=1',
482
+ 'https://player.vimeo.com/video/876543219?autoplay=1',
483
+ 'https://player.vimeo.com/video/345678912?autoplay=1'
484
+ ];
485
+
486
+ videoThumbnails.forEach((thumbnail, index) => {
487
+ thumbnail.addEventListener('click', () => {
488
+ modalVideo.src = videoUrls[index];
489
+ videoModal.classList.remove('hidden');
490
+ document.body.style.overflow = 'hidden';
491
+ });
492
+ });
493
+
494
+ closeModal.addEventListener('click', () => {
495
+ modalVideo.src = '';
496
+ videoModal.classList.add('hidden');
497
+ document.body.style.overflow = 'auto';
498
+ });
499
+
500
+ // Close modal when clicking outside the video
501
+ videoModal.addEventListener('click', (e) => {
502
+ if (e.target === videoModal) {
503
+ modalVideo.src = '';
504
+ videoModal.classList.add('hidden');
505
+ document.body.style.overflow = 'auto';
506
+ }
507
+ });
508
+
509
+ // Smooth scrolling for anchor links
510
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
511
+ anchor.addEventListener('click', function(e) {
512
+ e.preventDefault();
513
+
514
+ const targetId = this.getAttribute('href');
515
+ if (targetId === '#') return;
516
+
517
+ const targetElement = document.querySelector(targetId);
518
+ if (targetElement) {
519
+ const headerOffset = 80;
520
+ const elementPosition = targetElement.getBoundingClientRect().top;
521
+ const offsetPosition = elementPosition + window.pageYOffset - headerOffset;
522
+
523
+ window.scrollTo({
524
+ top: offsetPosition,
525
+ behavior: 'smooth'
526
+ });
527
+ }
528
+ });
529
+ });
530
+ </script>
531
+ <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=Cezarxil/portfolio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
532
+ </html>