-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
222 lines (205 loc) · 9.51 KB
/
Copy pathindex.html
File metadata and controls
222 lines (205 loc) · 9.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>YourName — Photographer | Weddings • Portraits • Commercial</title>
<meta name="description"
content="Professional photographer — wedding, portrait and editorial photography. Based in Mumbai. Book a session or view portfolio." />
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<header class="site-header" role="banner">
<div class="wrap header-row">
<a class="brand" href="#">YourName<span class="accent">.</span></a>
<nav class="main-nav" role="navigation" aria-label="Main">
<a href="#home">Home</a>
<a href="#gallery">Gallery</a>
<a href="#services">Services</a>
<a href="#testimonials">Testimonials</a>
<a href="#contact">Contact</a>
</nav>
<button id="menuBtn" class="menu-btn" aria-expanded="false" aria-controls="mobileNav">☰</button>
</div>
<!-- mobile nav -->
<div id="mobileNav" class="mobile-nav" aria-hidden="true">
<a href="#home">Home</a>
<a href="#gallery">Gallery</a>
<a href="#services">Services</a>
<a href="#testimonials">Testimonials</a>
<a href="#contact">Contact</a>
</div>
</header>
<main>
<!-- HERO -->
<section id="home" class="hero">
<div class="wrap hero-grid">
<div class="hero-content">
<h1>Capturing moments that become stories.</h1>
<p class="lede">Fine art & lifestyle photographer — weddings, portraits, editorial. Available for travel.</p>
<div class="actions">
<a class="btn" href="#contact">Book a Session</a>
<button id="viewGalleryBtn" class="btn btn-ghost">View Gallery</button>
</div>
</div>
<div class="hero-media" aria-hidden="true">
<img loading="lazy"
src="https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=1600"
alt="Hero sample image" class="cover" />
</div>
</div>
</section>
<!-- GALLERY -->
<section id="gallery" class="wrap section">
<h2>Gallery</h2>
<p class="muted">Click any image to open larger — images lazy-load for performance.</p>
<!-- Category Filter -->
<div class="filters">
<button class="filter-btn active" data-filter="All">All</button>
<button class="filter-btn" data-filter="Wedding">Wedding</button>
<button class="filter-btn" data-filter="Haldi">Haldi</button>
<button class="filter-btn" data-filter="Mehandi">Mehandi</button>
<button class="filter-btn" data-filter="Portrait">Portrait</button>
</div>
<div id="galleryGrid" class="grid gallery-grid" aria-live="polite">
<!-- Gallery dynamically rendered by script.js -->
</div>
<!-- accessible lightbox -->
<div id="lightbox" class="lightbox" role="dialog" aria-modal="true" aria-hidden="true">
<button id="lbClose" class="lb-close" aria-label="Close">✕</button>
<button id="lbPrev" class="lb-nav lb-prev" aria-label="Previous">‹</button>
<div class="lb-body">
<img id="lbImage" alt="">
<p id="lbCaption" class="muted"></p>
</div>
<button id="lbNext" class="lb-nav lb-next" aria-label="Next">›</button>
</div>
</section>
<!-- SERVICES -->
<section id="services" class="wrap section alt">
<h2>Services & Pricing</h2>
<div class="grid services-grid">
<article class="card">
<h3>Wedding</h3>
<p class="price">From ₹40,000</p>
<ul class="muted">
<li>Full-day coverage</li>
<li>2 photographers, highlights film</li>
<li>Online gallery, 50+ edited images</li>
</ul>
<button class="btn" data-action="book" data-service="Wedding">Enquire / Book</button>
</article>
<article class="card">
<h3>Portrait</h3>
<p class="price">From ₹6,500</p>
<ul class="muted">
<li>1-hour studio or location</li>
<li>10 retouched images</li>
<li>Print release</li>
</ul>
<button class="btn" data-action="book" data-service="Portrait">Book</button>
</article>
<article class="card">
<h3>Drone Photography</h3>
<p class="price">From ₹15,000</p>
<ul class="muted">
<li>4K Aerial Video & Photos</li>
<li>Cinematic Angles</li>
<li>Perfect for Events & Real Estate</li>
</ul>
<button class="btn" data-action="book" data-service="Drone">Book Drone</button>
</article>
<article class="card">
<h3>Commercial & Editorial</h3>
<p class="price">Contact for quote</p>
<ul class="muted">
<li>Creative direction & high-res deliverables</li>
<li>Usage & licensing options</li>
</ul>
<button class="btn" data-action="book" data-service="Commercial">Get Quote</button>
</article>
</div>
</section>
<!-- TESTIMONIALS -->
<section id="testimonials" class="wrap section">
<h2>Testimonials</h2>
<div class="carousel" id="testCarousel" aria-roledescription="carousel">
<blockquote class="slide">“They captured our day perfectly.”<cite>— Riya & Sameer</cite></blockquote>
<blockquote class="slide">“Patient, creative and professional.”<cite>— Ankit</cite></blockquote>
<blockquote class="slide">“Amazing portrait session.”<cite>— Meera</cite></blockquote>
</div>
</section>
<!-- CONTACT + BOOKING (modal) -->
<section id="contact" class="wrap section alt">
<h2>Contact & Booking</h2>
<div class="grid contact-grid">
<form id="contactForm" class="card form" aria-labelledby="contactHeading" novalidate>
<h3 id="contactHeading">Send a message via WhatsApp</h3>
<label>Full name<input required name="name" id="name" type="text" placeholder="Your full name"></label>
<label>Email<input required name="email" id="email" type="email" placeholder="you@example.com"></label>
<label>Phone<input required name="phone" id="phone" type="tel" placeholder="+91 9XXXXXXXXX"></label>
<label>Message<textarea name="message" id="message" rows="4"
placeholder="Tell me about your shoot"></textarea></label>
<div class="row">
<button class="btn" type="submit">Send on WhatsApp</button>
<a href="tel:+919763098110" class="btn btn-ghost">Call Now</a>
<button type="button" class="btn btn-ghost" id="openBooking">Book a Session</button>
</div>
<p id="contactStatus" role="status" class="muted"></p>
</form>
<aside class="card contact-info">
<h3>Studio Info</h3>
<p class="muted">Based in Mumbai • Available for travel</p>
<p><strong>Email:</strong> <a href="mailto:you@domain.com">you@domain.com</a></p>
<p><strong>Phone:</strong> <a href="tel:+919763098110">+91 97630 98110</a></p>
<div class="socials">
<a href="#" aria-label="Instagram">Instagram</a>
<a href="#" aria-label="Behance">Behance</a>
</div>
</aside>
</div>
</section>
</main>
<footer class="site-footer">
<div class="wrap">
<small>© <span id="year"></span> Pallavipandit — All rights reserved. | <a href="admin.html">Admin Login</a></small>
</div>
</footer>
<!-- WhatsApp floating -->
<a class="whatsapp" href="https://wa.me/919763098110?text=Hi%20I'd%20like%20to%20book%20a%20session" target="_blank"
rel="noopener" aria-label="Open WhatsApp chat">💬</a>
<!-- BOOKING MODAL -->
<div id="bookingModal" class="modal" aria-hidden="true" role="dialog" aria-modal="true">
<div class="modal-inner">
<button id="closeBooking" class="modal-close" aria-label="Close booking">✕</button>
<h3>Book a session</h3>
<form id="bookingForm" class="form" novalidate>
<label>Name<input id="bname" name="name" required></label>
<label>Email<input id="bemail" name="email" type="email" required></label>
<label>Phone<input id="bphone" name="phone" required></label>
<label>Service
<select id="bservice" name="service">
<option>Wedding</option>
<option>Portrait</option>
<option>Drone Photography</option>
<option>Commercial</option>
<option>Other</option>
</select>
</label>
<label>Date<input id="bdate" name="date" type="date"></label>
<label>Notes<textarea id="bnotes" name="notes"></textarea></label>
<div class="row">
<button class="btn" type="submit">Book via WhatsApp</button>
<a href="tel:+919763098110" class="btn btn-ghost">Call to Book</a>
<button type="button" class="btn btn-ghost" id="bookingCancel">Cancel</button>
</div>
<p id="bookingStatus" role="status" class="muted"></p>
</form>
</div>
</div>
<script src="data.js"></script>
<script src="script.js" defer></script>
</body>
</html>