-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresources.html
More file actions
212 lines (196 loc) · 7.72 KB
/
Copy pathresources.html
File metadata and controls
212 lines (196 loc) · 7.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Relevant Resources — Platform Bengali</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@500;600;700;800;900&family=DM+Sans:wght@400;500;700&family=Syne:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--cream: #1a1a1a;
--ochre: #cc2828;
--orange: #cc2828;
--teal: #4a4a4a;
--bg-deep: #d8d5d0;
--bg-section: #e0ddd8;
}
body {
background: var(--bg-deep);
color: var(--cream);
font-family: 'DM Sans', sans-serif;
min-height: 100vh;
overflow-x: hidden;
}
/* --- Cubist background (simplified) --- */
.page-bg {
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background:
linear-gradient(160deg, #d8d5d0 0%, #dddad5 20%, #e0ddd8 40%, #dddad5 60%, #d9d4ce 80%, #d9d4ce 100%);
}
.page-bg::before {
content: ''; position: absolute; inset: 0;
background:
radial-gradient(ellipse 600px 500px at 20% 30%, rgba(0,0,0,0.02), transparent),
radial-gradient(ellipse 400px 300px at 80% 70%, rgba(0,0,0,0.01), transparent);
}
.page-bg::after {
content: ''; position: absolute; inset: 0; opacity: 0.04;
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
background-size: 128px 128px;
mix-blend-mode: overlay;
}
/* --- Navigation bar --- */
.top-nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 20px 40px;
background: rgba(216,213,208,0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-home {
display: flex; align-items: center; gap: 12px;
text-decoration: none; color: var(--cream);
font-family: 'Syne', sans-serif; font-weight: 700;
font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
opacity: 0.7; transition: opacity 0.3s;
}
.nav-home:hover { opacity: 1; }
.nav-home svg { width: 20px; height: 20px; }
.nav-lang {
font-family: 'Syne', sans-serif; font-size: 12px;
letter-spacing: 0.15em; text-transform: uppercase;
color: var(--orange); cursor: pointer;
background: none; border: 1px solid rgba(204,40,40,0.3);
padding: 6px 16px; border-radius: 20px;
transition: all 0.3s;
}
.nav-lang:hover { background: rgba(204,40,40,0.08); border-color: var(--orange); }
/* --- Page content --- */
.page-content {
position: relative; z-index: 1;
max-width: 900px; margin: 0 auto;
padding: 140px 40px 80px;
}
.page-number {
font-family: 'Syne', sans-serif; font-size: 120px; font-weight: 800;
color: rgba(0,0,0,0.03); line-height: 1;
position: absolute; top: 100px; right: -20px;
pointer-events: none; user-select: none;
}
.page-title {
font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800;
text-transform: uppercase; letter-spacing: 0.04em;
color: var(--cream); margin-bottom: 8px;
line-height: 1.1;
}
.page-subtitle {
font-family: 'DM Sans', sans-serif; font-size: 15px;
color: rgba(74,74,74,0.7); letter-spacing: 0.08em;
text-transform: uppercase; margin-bottom: 48px;
}
.divider {
width: 60px; height: 2px; background: var(--ochre);
margin-bottom: 48px; opacity: 0.6;
}
.content-placeholder {
background: rgba(255,255,255,0.3);
border: 1px solid rgba(0,0,0,0.06);
border-radius: 8px;
padding: 48px;
min-height: 300px;
display: flex; align-items: center; justify-content: center;
flex-direction: column; gap: 16px;
}
.content-placeholder p {
color: rgba(74,74,74,0.5);
font-size: 15px; text-align: center; line-height: 1.7;
}
.content-placeholder .placeholder-icon {
width: 48px; height: 48px; opacity: 0.15;
border: 2px solid var(--cream); border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin-bottom: 8px;
}
/* --- Footer --- */
.page-footer {
position: relative; z-index: 1;
max-width: 900px; margin: 0 auto;
padding: 0 40px 48px;
border-top: 1px solid rgba(0,0,0,0.06);
padding-top: 32px;
display: flex; justify-content: space-between; align-items: center;
}
.footer-text {
font-size: 12px; color: rgba(74,74,74,0.4);
letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
font-size: 12px; color: rgba(74,74,74,0.5);
text-decoration: none; letter-spacing: 0.05em;
text-transform: uppercase; font-family: 'Syne', sans-serif;
transition: color 0.3s;
}
.footer-links a:hover { color: var(--ochre); }
/* --- Responsive --- */
@media (max-width: 600px) {
.top-nav { padding: 16px 20px; }
.page-content { padding: 120px 20px 60px; }
.page-title { font-size: 32px; }
.page-number { font-size: 80px; top: 90px; right: 10px; }
.content-placeholder { padding: 32px 20px; }
.page-footer { padding: 0 20px 32px; flex-direction: column; gap: 16px; text-align: center; }
}
</style>
</head>
<body>
<div class="page-bg"></div>
<nav class="top-nav">
<a href="index.html" class="nav-home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 12H5M12 19l-7-7 7-7"/></svg>
Platform Bengali
</a>
<button class="nav-lang" id="langToggle">EN / বাং</button>
</nav>
<main class="page-content">
<div class="page-number">03</div>
<h1 class="page-title" data-en="Relevant Resources" data-bn="প্রাসঙ্গিক সংস্থান">Relevant Resources</h1>
<p class="page-subtitle" data-en="Research materials and references" data-bn="গবেষণা উপকরণ ও তথ্যসূত্র">Research materials and references</p>
<div class="divider"></div>
<div class="content-placeholder">
<div class="placeholder-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M12 6v12M6 12h12"/></svg>
</div>
<p>Content for this section is being prepared.<br>Check back soon.</p>
</div>
</main>
<footer class="page-footer">
<span class="footer-text">© 2025 Platform Bengali — India Foundation for the Arts</span>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="about-ifa.html">About IFA</a>
</div>
</footer>
<script>
const langToggle = document.getElementById('langToggle');
let lang = 'en';
langToggle.addEventListener('click', () => {
lang = lang === 'en' ? 'bn' : 'en';
document.querySelectorAll('[data-en][data-bn]').forEach(el => {
el.textContent = el.getAttribute('data-' + lang);
if (lang === 'bn') {
el.style.fontFamily = "'Nirmala UI', 'Bangla Sangam MN', 'Noto Sans Bengali', sans-serif";
el.style.textTransform = 'none';
} else {
el.style.fontFamily = '';
el.style.textTransform = '';
}
});
});
</script>
</body>
</html>