-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
314 lines (286 loc) · 9.56 KB
/
Copy pathpricing.html
File metadata and controls
314 lines (286 loc) · 9.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Fellowship Event Hall</title>
<link rel="stylesheet" href="styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet" />
<style>
:root {
--bg: #fff9f2;
--panel: #fffefb;
--accent: #4CAF50;
--accent-600: #43a047;
--text: #2f2f2f;
--muted: #6b6b6b;
--ring: rgba(76, 175, 80, 0.35);
--table-border: #e9e9e9;
--row-alt: #fafafa;
}
body {
background:
radial-gradient(1200px 500px at 80% -50%, rgba(76,175,80,0.08), transparent 40%),
radial-gradient(800px 400px at -10% 110%, rgba(255,193,7,0.08), transparent 40%),
var(--bg);
margin: 0;
}
.page {
max-width: 1100px;
margin: 56px auto;
padding: 0 16px 56px;
}
.card {
background: var(--panel);
border: 1px solid rgba(0,0,0,0.06);
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 24px;
margin-bottom: 28px;
animation: fadeUp 420ms ease both;
}
.h1-underline { width: 72px; height: 4px; margin: 10px auto 26px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); border-radius: 999px; }
h2 { margin: 0 0 12px; color: var(--text); font-size: 22px; }
p { color: var(--muted); }
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--table-border); }
table { width: 100%; border-collapse: collapse; min-width: 680px; background: white; }
thead th {
position: sticky; top: 0; background: #f6fff7; color: #245a2a; text-align: left; font-weight: 700; font-size: 14px;
border-bottom: 1px solid var(--table-border);
padding: 14px 16px;
}
tbody td { padding: 14px 16px; border-bottom: 1px solid var(--table-border); font-size: 15px; color: var(--text); }
tbody tr:nth-child(even) { background: var(--row-alt); }
tbody tr:hover { background: #f1fff2; }
.price { white-space: nowrap; font-weight: 700; color: #205a25; }
.muted { color: var(--muted); }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #e9f7ea; color: #2e7d32; font-weight: 700; font-size: 12px; }
.notes { font-size: 14px; color: var(--muted); margin-top: 8px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fellowship Event Hall</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="sourcefiles/logo.ico">
</head>
<body>
<div id="navbar"></div>
<!-- HERO with auto crossfade -->
<div id="main-content" class="page">
<h1>Pricing</h1>
<div class="h1-underline" aria-hidden="true"></div>
<div class="card" id="venue-packages">
<h2>Venue Packages</h2>
<p class="muted">Base pricing by event type. Includes tables and chairs, standard setup, and a 4-hour booking window.</p>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Event Type</th>
<th>Capacity</th>
<th>Includes</th>
<th>Base Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Party</td>
<td>Up to 120</td>
<td>Standard layout, cleanup, on-site host</td>
<td class="price">$650</td>
</tr>
<tr>
<td>Company Meeting</td>
<td>Up to 100</td>
<td>Projector + screen, podium, water service</td>
<td class="price">$500</td>
</tr>
<tr>
<td>Company Get Together</td>
<td>Up to 150</td>
<td>Open floor layout, lounge seating</td>
<td class="price">$550</td>
</tr>
<tr>
<td>Quinceañera</td>
<td>Up to 180</td>
<td>Head table, dance floor, cake table</td>
<td class="price">$1,200</td>
</tr>
<tr>
<td>Wedding</td>
<td>Up to 200</td>
<td>Bridal suite, ceremony flip, coordinator</td>
<td class="price">$2,200</td>
</tr>
<tr>
<td>Birthday</td>
<td>Up to 120</td>
<td>Standard layout, cake table</td>
<td class="price">$450</td>
</tr>
<tr>
<td>Conference</td>
<td>Up to 220</td>
<td>Breakout seating, AV tech on call</td>
<td class="price">$1,000</td>
</tr>
<tr>
<td>Other</td>
<td>Custom</td>
<td>We’ll tailor to your needs</td>
<td class="price">$1,500</td>
</tr>
</tbody>
</table>
</div>
<p class="notes">Need extra hours? <span class="badge">+ $175/hr</span> beyond the included 4 hours.</p>
</div>
<div class="card" id="catering">
<h2>Catering</h2>
<p class="muted">Pricing shown per 50 guests. Mix and match packages — we’ll scale to your headcount.</p>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Package</th>
<th>Description</th>
<th>Price (per 50 guests)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Italian Cuisine</td>
<td>Pasta duo, salad, focaccia, 2 proteins</td>
<td class="price">$1,250</td>
</tr>
<tr>
<td>BBQ</td>
<td>Smoked meats, classic sides, buns & fixings</td>
<td class="price">$1,050</td>
</tr>
<tr>
<td>Vegan Options</td>
<td>Seasonal mains, grain bowls, salads</td>
<td class="price">$1,350</td>
</tr>
<tr>
<td>Desserts</td>
<td>Assorted minis, cake service included</td>
<td class="price">$550</td>
</tr>
</tbody>
</table>
</div>
<p class="notes">Add beverage station (coffee/tea/lemonade): <span class="badge">$250 per 50 guests</span>.</p>
</div>
<div class="card" id="decor">
<h2>Decorations</h2>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Package</th>
<th>Includes</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Standard Decorations</td>
<td>Table linens, centerpieces, entry signage</td>
<td class="price">$250</td>
</tr>
<tr>
<td>Enhanced Decorations</td>
<td>Everything in Standard + backdrop, upgraded florals, theme colors</td>
<td class="price">$600</td>
</tr>
<tr>
<td>Theme Color Add-on</td>
<td>Add accent color palette to Standard package</td>
<td class="price">$100</td>
</tr>
</tbody>
</table>
</div>
<p class="notes">Custom builds available on request.</p>
</div>
<div class="card" id="extras">
<h2>Extras</h2>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Service</th>
<th>Details</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lighting</td>
<td>Uplights + dance floor wash</td>
<td class="price">$300</td>
</tr>
<tr>
<td>Sound System</td>
<td>PA, 2 wireless mics, setup/tech check</td>
<td class="price">$350</td>
</tr>
<tr>
<td>Security</td>
<td>Licensed guard (up to 4 hours)</td>
<td class="price">$180</td>
</tr>
<tr>
<td>Cleaning Upgrade</td>
<td>Post-event deep clean</td>
<td class="price">$140</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="card" id="photography">
<h2>Event Photography</h2>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Package</th>
<th>Details</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Basic</td>
<td>1 photographer, 3 hours, online gallery</td>
<td class="price">$500</td>
</tr>
<tr>
<td>Premium</td>
<td>2 photographers, 6 hours, online gallery + USB</td>
<td class="price">$1,100</td>
</tr>
</tbody>
</table>
</div>
<p class="notes">Add an extra hour: <span class="badge">$150/hr</span>.</p>
</div>
</div>
<div id="footer"></div>
<!-- ===== JAVASCRIPT ===== -->
<script>
// Load Navbar / Footer
fetch('sourcefiles/navbar.html')
.then(r=>r.text())
.then(html=>document.getElementById('navbar').innerHTML = html);
fetch('sourcefiles/footer.html')
.then(r=>r.text())
.then(html=>document.getElementById('footer').innerHTML = html);
</script>
</body>
</html>