-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
324 lines (303 loc) · 12.2 KB
/
Copy pathgallery.html
File metadata and controls
324 lines (303 loc) · 12.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
<!doctype html>
<html class="dark" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gallery — Saptarshi Sadhu</title>
<meta name="description" content="Visual gallery of Saptarshi Sadhu's projects, designs, and creative work." />
<meta name="author" content="Saptarshi Sadhu" />
<meta property="og:title" content="Gallery — Saptarshi Sadhu" />
<meta property="og:description" content="A visual showcase of projects and creative work." />
<meta property="og:image" content="https://saptarshisadhu.co.in/my_image.png" />
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<script>
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#06b6d4",
accent: "#0891b2",
},
fontFamily: {
sans: ['"Inter"', "sans-serif"],
mono: ['"JetBrains Mono"', "monospace"],
},
},
},
};
</script>
<link rel="stylesheet" href="3d.css" />
<style>
/* ── Mode Switch ── */
.switch-wrapper-fixed {
position: fixed;
top: 20px;
right: 20px;
display: flex;
align-items: center;
text-decoration: none;
cursor: pointer;
z-index: 10000;
}
.switch-wrapper-fixed .switch {
position: relative;
width: 80px;
height: 32px;
border-radius: 32px;
background: linear-gradient(135deg, #ff007a, #7a00ff, #00d4ff, #00ff7a);
background-size: 300% 300%;
animation: rgbGradient 4s ease infinite, floatAnim 3s ease-in-out infinite;
box-shadow: 0 4px 18px rgba(122,0,255,0.5);
}
.switch-wrapper-fixed:hover .switch { filter: brightness(1.15); }
@keyframes rgbGradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes floatAnim {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-4px); }
}
.switch-wrapper-fixed .switch::before {
content: "";
position: absolute;
height: 24px; width: 24px;
right: 4px; top: 4px;
background: #ffffff;
border-radius: 50%;
box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.switch-wrapper-fixed .switch::after {
content: "3D";
position: absolute;
left: 12px; top: 50%;
transform: translateY(-50%);
color: #fff;
font-size: 10px;
font-weight: 800;
letter-spacing: 1.2px;
text-shadow: 0 0 8px rgba(255,255,255,0.95);
}
@media (max-width: 768px) {
.switch-wrapper-fixed {
top: 14px; right: 14px;
transform: scale(0.82);
transform-origin: top right;
}
}
/* ── Hamburger ── */
#hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px; height: 36px;
cursor: pointer;
z-index: 9999;
padding: 4px;
border-radius: 8px;
transition: background 0.2s;
background: none;
border: none;
}
#hamburger:hover { background: rgba(255,255,255,0.08); }
#hamburger span {
display: block; height: 2px; width: 100%;
background: #e2e8f0; border-radius: 2px;
transition: all 0.3s ease; transform-origin: center;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-nav-gallery {
display: none;
position: absolute; top: 100%; left: 0; width: 100%;
background: rgba(2,4,10,0.97);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(255,255,255,0.06);
border-bottom: 1px solid rgba(255,255,255,0.06);
padding: 1rem 1.5rem 1.5rem;
flex-direction: column; gap: 0;
z-index: 9998;
animation: slideDown 0.25s ease;
}
#mobile-nav-gallery.open { display: flex; }
@keyframes slideDown {
from { opacity: 0; transform: translateY(-8px); }
to { opacity: 1; transform: translateY(0); }
}
#mobile-nav-gallery a {
padding: 0.7rem 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
color: #94a3b8;
font-size: 0.85rem; font-weight: 600;
letter-spacing: 0.06em; text-transform: uppercase;
text-decoration: none; transition: color 0.2s;
}
#mobile-nav-gallery a:last-child { border-bottom: none; }
#mobile-nav-gallery a:hover { color: #06b6d4; }
@media (max-width: 1023px) {
#hamburger { display: flex; }
#desktop-nav-gallery { display: none !important; }
}
/* ── Coming Soon placeholder ── */
.coming-soon-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 2rem;
gap: 1.5rem;
}
.coming-soon-label {
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.3em;
text-transform: uppercase;
color: #06b6d4;
font-family: 'JetBrains Mono', monospace;
}
.coming-soon-title {
font-size: clamp(2.5rem, 8vw, 5rem);
font-weight: 800;
color: #ffffff;
line-height: 1.1;
background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.coming-soon-sub {
color: #64748b;
font-size: 1rem;
max-width: 400px;
line-height: 1.7;
}
.coming-soon-divider {
width: 60px;
height: 2px;
background: linear-gradient(90deg, #06b6d4, #a855f7);
border-radius: 2px;
}
/* Pulsing icon */
.coming-soon-icon {
font-size: 3.5rem;
animation: pulseFade 2.5s ease-in-out infinite;
color: #06b6d4;
}
@keyframes pulseFade {
0%, 100% { opacity: 0.5; transform: scale(1); }
50% { opacity: 1; transform: scale(1.08); }
}
</style>
</head>
<body class="text-slate-300 antialiased selection:bg-primary/30 selection:text-primary relative overscroll-none">
<!-- Background Video -->
<video
class="fixed inset-0 w-full h-full object-cover object-top -z-20 brightness-[0.2]"
autoplay loop muted playsinline
>
<source src="Background.mp4" type="video/mp4" />
</video>
<!-- Nebula layer -->
<div class="nebula-container opacity-50 mix-blend-screen">
<div class="stars"></div>
<div class="blur-orb bg-indigo-900/20 w-[800px] h-[800px] bottom-0 -right-48"></div>
</div>
<!-- Rotating digital globe bg -->
<div class="fixed inset-0 z-[-15] flex justify-center items-center pointer-events-none opacity-25">
<img
src="https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop"
alt=""
aria-hidden="true"
loading="lazy"
class="w-[700px] h-[700px] object-cover rounded-full mix-blend-screen animate-[spin_120s_linear_infinite]"
style="mask-image:radial-gradient(circle,black 50%,transparent 100%);-webkit-mask-image:radial-gradient(circle,black 50%,transparent 100%)"
/>
</div>
<!-- ── NAVIGATION ── -->
<header class="fixed top-0 z-50 w-full backdrop-blur-md bg-[#02040a]/70 border-b border-white/5">
<div class="max-w-6xl mx-auto px-4 sm:px-6 h-16 flex items-center justify-between relative">
<div class="flex items-center gap-3">
<img src="my_image.png" alt="Saptarshi"
class="w-8 h-8 rounded-full object-cover object-top border border-orange-500/60 shadow-[0_0_10px_rgba(249,115,22,0.5)]" />
<span class="text-white font-bold tracking-widest text-xs lg:text-sm uppercase">Saptarshi Sadhu</span>
</div>
<!-- Desktop Nav -->
<nav id="desktop-nav-gallery" class="flex items-center gap-4 lg:gap-6">
<a class="nav-link" href="3d.html">Home</a>
<a class="nav-link" href="3d.html#about">About</a>
<a class="nav-link" href="3d.html#skills">Skills</a>
<a class="nav-link" href="3d.html#projects">Projects</a>
<a class="nav-link" href="3d.html#experience">Experience</a>
<a class="nav-link" href="3d.html#education">Education</a>
<a class="nav-link" href="3d.html#achievements">Achievements</a>
<a class="nav-link" href="blog.html">Blog</a>
<a class="nav-link text-cyan-400 hover:text-cyan-300" href="gallery.html">Gallery</a>
<a class="nav-link" href="3d.html#contact">Contact</a>
</nav>
<!-- Hamburger -->
<button id="hamburger" aria-label="Toggle menu" aria-expanded="false">
<span></span><span></span><span></span>
</button>
</div>
<!-- Mobile Dropdown -->
<nav id="mobile-nav-gallery" aria-label="Mobile navigation">
<a href="3d.html">Home</a>
<a href="3d.html#about">About</a>
<a href="3d.html#skills">Skills</a>
<a href="3d.html#projects">Projects</a>
<a href="3d.html#experience">Experience</a>
<a href="3d.html#education">Education</a>
<a href="3d.html#achievements">Achievements</a>
<a href="blog.html">Blog</a>
<a href="gallery.html" style="color:#06b6d4">Gallery</a>
<a href="3d.html#contact">Contact</a>
</nav>
</header>
<script>
(function() {
const btn = document.getElementById('hamburger');
const menu = document.getElementById('mobile-nav-gallery');
btn.addEventListener('click', function() {
const isOpen = menu.classList.toggle('open');
btn.classList.toggle('open', isOpen);
btn.setAttribute('aria-expanded', isOpen);
});
menu.querySelectorAll('a').forEach(function(link) {
link.addEventListener('click', function() {
menu.classList.remove('open');
btn.classList.remove('open');
btn.setAttribute('aria-expanded', 'false');
});
});
})();
</script>
<!-- ── MAIN ── -->
<main class="w-full relative z-10">
<div class="coming-soon-container">
<p class="coming-soon-label">Saptarshi Sadhu</p>
<span class="material-symbols-outlined coming-soon-icon">photo_library</span>
<div class="coming-soon-divider"></div>
<h1 class="coming-soon-title">Gallery</h1>
<p class="coming-soon-sub">
A curated visual showcase of projects, designs & creative work.<br />Coming soon.
</p>
</div>
</main>
<!-- Mode Switch (fixed top-right) -->
<a href="static.html" class="switch-wrapper-fixed" title="Switch to Static Mode">
<div class="switch"></div>
</a>
<footer class="border-t border-white/5 py-8 flex flex-col items-center gap-2 text-center text-xs tracking-widest font-mono opacity-60 hover:opacity-100 transition-opacity duration-500">
<div class="text-slate-400">© 2026 Saptarshi Sadhu</div>
<div class="text-slate-500">Built with intention · <span class="text-cyan-400/80 font-medium tracking-normal">Systems over shortcuts</span></div>
</footer>
</body>
</html>