-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
379 lines (358 loc) · 22.4 KB
/
index.html
File metadata and controls
379 lines (358 loc) · 22.4 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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chef Claudinei | Brazilian BBQ Catering</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--black: #0d0b08;
--dark: #151209;
--charcoal: #2a2016;
--gold: #c9973a;
--gold-light: #e0b55a;
--cream: #f0e6d3;
--warm-white: #faf6ef;
--muted: #8a7a65;
--ember: #c44a18;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: 'Cormorant Garamond', Georgia, serif; overflow-x: hidden; }
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
display: flex; justify-content: space-between; align-items: center;
padding: 1.3rem 3.5rem;
background: linear-gradient(to bottom, rgba(13,11,8,0.96) 0%, rgba(13,11,8,0) 100%);
transition: background 0.3s;
}
nav.scrolled { background: rgba(13,11,8,0.97) !important; border-bottom: 1px solid rgba(201,151,58,0.15); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold); text-decoration: none; letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,230,211,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
/* HERO */
.hero { position: relative; height: 100vh; min-height: 520px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: 1fr 1fr; gap: 3px; opacity: 0.22; filter: sepia(25%); }
.hero-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(13,11,8,0.25) 0%, rgba(13,11,8,0.72) 70%), linear-gradient(to bottom, rgba(13,11,8,0.6) 0%, rgba(13,11,8,0.15) 40%, rgba(13,11,8,0.92) 100%); }
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 65%, rgba(196,74,24,0.13) 0%, transparent 55%), radial-gradient(ellipse at 25% 80%, rgba(201,151,58,0.08) 0%, transparent 45%); animation: glowPulse 5s ease-in-out infinite alternate; }
@keyframes glowPulse { from { opacity: 0.7; } to { opacity: 1; } }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 2rem; animation: fadeUp 1.1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.4rem; }
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); opacity: 0.55; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3.2rem, 9vw, 7.5rem); font-weight: 900; line-height: 0.92; color: var(--warm-white); margin-bottom: 0.2rem; }
.hero-title em { display: block; font-style: italic; color: var(--gold); }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.2vw, 1.55rem); font-weight: 300; font-style: italic; color: rgba(240,230,211,0.7); margin: 1.6rem 0 2.8rem; letter-spacing: 0.04em; }
.hero-btns { display: inline-flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; }
.btn { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; display: inline-block; padding: 1rem 2.6rem; transition: transform 0.2s, background 0.25s, color 0.25s, border-color 0.25s; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(201,151,58,0.45); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-family: 'Montserrat', sans-serif; font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); animation: scrollBounce 2.8s ease-in-out infinite; }
.scroll-hint span { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 55% { transform: translateX(-50%) translateY(7px); } }
/* SECTIONS */
section { padding: 6.5rem 2rem; }
.inner { max-width: 1160px; margin: 0 auto; }
.section-label { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.9rem; }
.section-label::after { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.5; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.1; color: var(--warm-white); margin-bottom: 1.4rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-text { font-size: 1.15rem; font-weight: 300; line-height: 1.95; color: var(--muted); max-width: 580px; }
/* ABOUT */
#about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-imgs { position: relative; height: 540px; }
.about-imgs img { position: absolute; object-fit: cover; border: 3px solid var(--charcoal); }
.about-imgs .img-main { top: 0; left: 0; width: 73%; height: 78%; filter: grayscale(100%) sepia(15%) contrast(1.05); }
.about-imgs .img-accent { bottom: 0; right: 0; width: 58%; height: 62%; border-color: var(--gold); }
.about-imgs::before { content: ''; position: absolute; top: 20px; left: 20px; width: 80px; height: 80px; border: 1px solid rgba(201,151,58,0.25); z-index: 0; pointer-events: none; }
.about-text { padding-left: 1rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 3rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(201,151,58,0.2); }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat span { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; display: block; }
/* SERVICES */
#services { background: var(--black); }
.services-header { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { position: relative; overflow: hidden; height: 440px; cursor: pointer; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.5s ease; filter: brightness(0.65) sepia(15%); }
.service-card:hover img { transform: scale(1.06); filter: brightness(0.5) sepia(10%); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,11,8,0.92) 0%, rgba(13,11,8,0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2.2rem; transition: background 0.4s; }
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(13,11,8,0.97) 0%, rgba(13,11,8,0.5) 60%, rgba(13,11,8,0.2) 100%); }
.service-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(201,151,58,0.18); line-height: 1; margin-bottom: 0.5rem; transition: color 0.4s; }
.service-card:hover .service-number { color: rgba(201,151,58,0.35); }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--warm-white); margin-bottom: 0.6rem; }
.service-desc { font-size: 1rem; font-weight: 300; color: rgba(240,230,211,0.6); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.4s ease; opacity: 0; }
.service-card:hover .service-desc { max-height: 120px; opacity: 1; }
.service-tag { display: inline-block; margin-top: 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
/* GALLERY */
#gallery { background: var(--dark); }
.gallery-header { margin-bottom: 3rem; }
.gallery-masonry { columns: 4; column-gap: 8px; }
.gallery-item { break-inside: avoid; margin-bottom: 8px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease, filter 0.4s ease; filter: brightness(0.88); }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(201,151,58,0); transition: background 0.3s; }
.gallery-item:hover::after { background: rgba(201,151,58,0.07); }
/* VIDEO */
#video { background: var(--black); }
.video-wrapper { margin-top: 2.5rem; position: relative; width: 100%; max-width: 900px; margin-left: auto; margin-right: auto; }
.video-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border: 2px solid rgba(201,151,58,0.25); }
.video-frame video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #0d0b08; }
.video-caption { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: center; margin-top: 1.2rem; }
/* CONTACT */
#contact { background: var(--black); position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,151,58,0.07) 0%, transparent 60%), radial-gradient(ellipse at 20% 50%, rgba(196,74,24,0.06) 0%, transparent 55%); pointer-events: none; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
.contact-icon { width: 42px; height: 42px; min-width: 42px; border: 1px solid rgba(201,151,58,0.4); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.contact-item-label { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.contact-item-value { font-size: 1.1rem; font-weight: 400; color: var(--cream); }
.contact-item-value a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--gold); }
/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(201,151,58,0.15); padding: 3rem 2rem; text-align: center; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.95rem; font-weight: 300; font-style: italic; color: var(--muted); margin-bottom: 2rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; list-style: none; margin-bottom: 2rem; }
.footer-links a { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em; color: rgba(138,122,101,0.5); }
/* RESPONSIVE */
@media (max-width: 900px) {
nav { padding: 1.2rem 1.5rem; }
.nav-links { gap: 1.5rem; }
.about-grid { grid-template-columns: 1fr; gap: 3rem; }
.about-imgs { height: 360px; }
.services-grid { grid-template-columns: 1fr 1fr; }
.gallery-masonry { columns: 2; }
.service-desc { max-height: 120px; opacity: 1; }
}
@media (max-width: 600px) {
nav { padding: 1rem 1.2rem; }
.nav-links { display: none; }
.services-grid { grid-template-columns: 1fr; }
.gallery-masonry { columns: 2; }
section { padding: 4.5rem 1.2rem; }
.stat-row { gap: 2rem; }
.hero-mosaic { grid-template-columns: repeat(4, 1fr); }
.about-imgs { height: 280px; }
}
</style>
</head>
<body>
<!-- NAVBAR -->
<nav id="navbar">
<a href="#" class="nav-logo">Chef Claudinei</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#video">Video</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-mosaic">
<img src="assets/img/chef-grilling-outdoor.jpg" alt="">
<img src="assets/img/skewers-picanha-linguica.jpg" alt="">
<img src="assets/img/skewers-peppers-closeup.jpg" alt="">
<img src="assets/img/fruit-platter-tropical.jpg" alt="">
<img src="assets/img/picanha-skewer-closeup.jpg" alt="">
<img src="assets/img/grill-sausage-peppers.jpg" alt="">
<img src="assets/img/flame-grilled-meat.jpg" alt="">
<img src="assets/img/premium-steaks-raw.jpg" alt="">
<img src="assets/img/charcuterie-italian-spread.jpg" alt="">
<img src="assets/img/bread-cheese-table.jpg" alt="">
<img src="assets/img/grazing-table-spread.jpg" alt="">
<img src="assets/img/fruit-display-colorful.jpg" alt="">
<img src="assets/img/pineapple-melon-centerpiece.jpg" alt="">
<img src="assets/img/team-portrait.jpg" alt="">
</div>
<div class="hero-overlay"></div>
<div class="hero-glow"></div>
<div class="hero-content">
<div class="eyebrow">Brazilian Catering Experience</div>
<h1 class="hero-title">Chef<br><em>Claudinei</em></h1>
<p class="hero-sub">Authentic Churrasco & Artisan Catering for Every Occasion</p>
<div class="hero-btns">
<a href="#contact" class="btn btn-gold">Book an Event</a>
<a href="#services" class="btn btn-ghost">Our Services</a>
</div>
</div>
<div class="scroll-hint">Scroll<span></span></div>
</section>
<!-- ABOUT -->
<section id="about">
<div class="inner">
<div class="about-grid">
<div class="about-imgs">
<img class="img-main" src="assets/img/team-portrait.jpg" alt="Chef Claudinei and team wearing Brazilian flag aprons">
<img class="img-accent" src="assets/img/chef-grilling-outdoor.jpg" alt="Chef grilling churrasco at outdoor event">
</div>
<div class="about-text">
<div class="section-label">Our Story</div>
<h2 class="section-title">Passion Forged<br><em>Over Open Fire</em></h2>
<p class="section-text">
Chef Claudinei brings the vibrant flavors of Brazil straight to your backyard,
garden party, or corporate event. With years of experience in authentic
Brazilian churrasco, artisan charcuterie boards, and full-service outdoor
catering, every event becomes a celebration of fire, flavor, and family.
</p>
<p class="section-text" style="margin-top: 1.2rem;">
From slow-grilled picanha and tender skewers to stunning grazing tables
overflowing with artisan cheeses, meats, and seasonal fruits — we bring
the full Brazilian spirit to your table.
</p>
<div class="stat-row">
<div class="stat"><strong>10+</strong><span>Years Experience</span></div>
<div class="stat"><strong>100+</strong><span>Events Catered</span></div>
<div class="stat"><strong>100%</strong><span>Fresh Ingredients</span></div>
</div>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section id="services">
<div class="inner">
<div class="services-header">
<div class="section-label">What We Offer</div>
<h2 class="section-title">Our <em>Specialties</em></h2>
</div>
<div class="services-grid">
<div class="service-card">
<img src="assets/img/grill-sausage-peppers.jpg" alt="Linguiça, peppers and grilled meats on the churrasco grill">
<div class="service-card-overlay">
<div class="service-number">01</div>
<div class="service-name">Brazilian Churrasco</div>
<p class="service-desc">Authentic fire-grilled meats — picanha, fraldinha, linguiça, chicken and more — prepared tableside in true Brazilian style.</p>
<span class="service-tag">Signature Service</span>
</div>
</div>
<div class="service-card">
<img src="assets/img/grazing-table-spread.jpg" alt="Full grazing table with artisan breads, cured meats and preserves">
<div class="service-card-overlay">
<div class="service-number">02</div>
<div class="service-name">Charcuterie & Grazing Boards</div>
<p class="service-desc">Stunning artisan boards featuring imported cheeses, cured meats, seasonal fruits, house-made jams, and rustic breads.</p>
<span class="service-tag">Popular Add-On</span>
</div>
</div>
<div class="service-card">
<img src="assets/img/fruit-platter-tropical.jpg" alt="Tropical fruit platter on Chef Claudinei branded board">
<div class="service-card-overlay">
<div class="service-number">03</div>
<div class="service-name">Fruit & Dessert Displays</div>
<p class="service-desc">Beautifully arranged seasonal fruit platters and dessert spreads — the perfect sweet finale to any event.</p>
<span class="service-tag">Available Year-Round</span>
</div>
</div>
</div>
</div>
</section>
<!-- GALLERY -->
<section id="gallery">
<div class="inner">
<div class="gallery-header">
<div class="section-label">Previous Events</div>
<h2 class="section-title">The <em>Experience</em></h2>
</div>
<div class="gallery-masonry">
<div class="gallery-item"><img src="assets/img/chef-grilling-outdoor.jpg" alt="Chef grilling churrasco at outdoor event"></div>
<div class="gallery-item"><img src="assets/img/fruit-platter-tropical.jpg" alt="Tropical fruit platter with seasonal fruits"></div>
<div class="gallery-item"><img src="assets/img/premium-steaks-raw.jpg" alt="Premium raw steaks on the rack"></div>
<div class="gallery-item"><img src="assets/img/fruit-display-colorful.jpg" alt="Colorful fruit display with berries and macarons"></div>
<div class="gallery-item"><img src="assets/img/skewers-picanha-linguica.jpg" alt="Picanha and linguiça skewers on the grill"></div>
<div class="gallery-item"><img src="assets/img/charcuterie-italian-spread.jpg" alt="Charcuterie spread with cheeses, salami and artisan pasta"></div>
<div class="gallery-item"><img src="assets/img/picanha-skewer-closeup.jpg" alt="Close-up of picanha skewer over charcoal"></div>
<div class="gallery-item"><img src="assets/img/pineapple-melon-centerpiece.jpg" alt="Pineapple and melon fruit centerpiece"></div>
<div class="gallery-item"><img src="assets/img/skewers-peppers-closeup.jpg" alt="Grilled skewers with peppers and meats"></div>
<div class="gallery-item"><img src="assets/img/bread-cheese-table.jpg" alt="Artisan bread, cheese and charcuterie table"></div>
<div class="gallery-item"><img src="assets/img/flame-grilled-meat.jpg" alt="Flame-grilled meat close-up over open fire"></div>
<div class="gallery-item"><img src="assets/img/team-portrait.jpg" alt="Chef Claudinei and team in Brazilian flag aprons"></div>
</div>
</div>
</section>
<!-- VIDEO -->
<section id="video">
<div class="inner">
<div class="section-label">In Action</div>
<h2 class="section-title">Watch Us <em>Work</em></h2>
<div class="video-wrapper">
<div class="video-frame">
<video
controls
preload="metadata">
<source src="assets/video/bbq-highlight.mov#t=0.001" type="video/quicktime">
<source src="assets/video/bbq-highlight.mov#t=0.001" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<p class="video-caption">Live fire · Authentic flavors · Unforgettable events</p>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="inner">
<div class="section-label">Get in Touch</div>
<h2 class="section-title">Let's Plan<br><em>Your Event</em></h2>
<p class="section-text" style="margin-bottom: 3rem;">
Ready to bring the heat to your next gathering? Whether it's a backyard
birthday, corporate lunch, or wedding reception — Chef Claudinei is here
to make it unforgettable.
</p>
<div class="contact-item">
<div class="contact-icon">📞</div>
<div>
<div class="contact-item-label">Phone</div>
<div class="contact-item-value"><a href="tel:+15164771234">(516) 477-1234</a></div>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<div class="footer-logo">Chef Claudinei</div>
<div class="footer-tagline">Authentic Brazilian Catering · Long Island, NY</div>
<ul class="footer-links">
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="footer-copy">© 2025 Chef Claudinei. All rights reserved. · (516) 477-1234</div>
</div>
</footer>
<script>
const navbar = document.getElementById('navbar');
window.addEventListener('scroll', () => {
navbar.classList.toggle('scrolled', window.scrollY > 60);
});
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.section-label, .section-title, .section-text, .about-imgs, .service-card, .gallery-item, .contact-item, .stat').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(22px)';
el.style.transition = 'opacity 0.7s ease, transform 0.7s ease';
observer.observe(el);
});
</script>
</body>
</html>