-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
342 lines (296 loc) · 12.4 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Us</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<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=Herr+Von+Muellerhoff&display=swap" rel="stylesheet">
<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=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap" rel="stylesheet">
<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=Cormorant+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<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=Texturina:ital,opsz,wght@0,12..72,100..900;1,12..72,100..900&display=swap" rel="stylesheet">
<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=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: rgba(236, 236, 234, 0.943);
color: #ecf0f1;
overflow-x: hidden;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(20, 24, 24, 0.527), rgb(0, 0, 0));
background-size: 400% 400%;
animation: navbargradientAnimation 10s ease infinite;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.navbar a {
text-decoration: none;
}
@keyframes navbargradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.navbar .logo h1 {
font-size: 2rem;
color: white;
}
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin-left: 20px;
}
.nav-links a {
color: white;
text-decoration: none;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
transition: color 0.3s;
}
.nav-links a:hover {
color: #f1c40f;
}
.parallax {
background-image: url('images/aboutparallax.jpg');
height: 100vh;
background-attachment: fixed;
background-size: cover;
background-position: center;
position: relative;
}
.parallax h2 {
color: white;
font-size: 4rem;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-family: 'Herr Von Muellerhoff', sans-serif;
}
.about {
padding: 60px 20px;
background-color: #fff;
}
.about h2 {
font-size: 50px;
text-align: center;
color: #333;
}
.about-content {
font-family: 'Cormorant SC';
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.section {
padding: 80px 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}
.section {
opacity: 0;
transform: translateY(50px);
transition: all 0.6s ease-out;
}
.section.visible {
opacity: 1;
transform: translateY(0);
}
.section img {
width: 50%;
height: auto;
right: 0%;
position: relative;
z-index: 0;
border-radius: 0px;
}
.section-text {
width: 45%;
font-size: 20px;
text-align: justify;
}
.section:nth-child(even) .section-text {
text-align: left;
}
.social-logo {
width: 30px;
height: auto;
margin-right: 10px;
}
.typing-animation {
font-family: 'Tangerine', serif;
font-size: 3rem;
text-align: center;
white-space: nowrap;
overflow: hidden;
width: 0;
animation: typing 3s steps(40) 1s forwards, blinkCaret 0.35s step-end infinite;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
@keyframes blinkCaret {
50% {
border-color: transparent;
}
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px;
background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(20, 24, 24, 0.527), rgb(0, 0, 0));
background-size: 400% 400%;
animation: footergradientAnimation 10s ease infinite;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
@keyframes footergradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.slider-container {
display: flex;
gap: 10px;
justify-content: center;
animation: shuffleImages 5s infinite;
}
.slider-container img {
width: 100px;
height: 100px;
object-fit: cover;
transition: all 1s ease-in-out;
}
@keyframes shuffleImages {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="logo">
<a href="index.html" style="text-decoration: none;"><h1 style="font-family: 'Herr Von Muellerhoff', sans-serif;">Ivory Luxe</h1></a>
</div>
<ul class="nav-links" style="font-family:Cormorant SC ;">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="parallax">
<h2 style="font-family: 'Herr Von Muellerhoff', sans-serif;color:rgb(30, 32, 35);font-size: 100px;">About Us</h2>
</section>
<section id="about" class="about">
<h2 style="font-family:Tangerine;font-size: 80px">Our Story</h2>
<div class="about-content">
<div class="section">
<div class="section-text">
<h3 style="font-family:Cormorant SC ;color: black; font-size:50px;">Our Vision</h3>
<p style="font-family:Cormorant SC ;color: #333; font-size:20px;">At Ivory Luxe, our vision extends far beyond simply organizing events. We aspire to revolutionize the event planning landscape by creating unparalleled experiences that resonate with the emotions of our clients. Each celebration we curate is a reflection of our unwavering commitment to perfection and creativity. We believe in crafting moments that are not just memorable but truly transformative—bringing dreams to life in ways that leave lasting impressions for years to come.</p>
</div>
<img src="images/i17.png" alt="Vision">
</div>
<div class="section">
<img src="images/i18.png" alt="Mission">
<div class="section-text">
<h3 style="font-family:Cormorant SC ;color: black;font-size:50px;">Our Mission</h3>
<p style="font-family:Cormorant SC ;color: #333; font-size:20px;">Our mission is rooted in the art of delivering excellence with a personal touch. We aim to exceed expectations through meticulous planning, innovative solutions, and an unrelenting dedication to quality. Whether it’s a grand celebration or an intimate gathering, every detail is thoughtfully considered to ensure a seamless and unforgettable event. At Ivory Luxe, we are passionate about turning ordinary moments into extraordinary memories that celebrate life’s milestones in style.</p>
</div>
</div>
<div class="section">
<div class="section-text">
<h3 style="font-family:Cormorant SC ;color: black;font-size:50px;">Our Values</h3>
<p style="font-family:Cormorant SC ;color: #333; font-size:20px;">Integrity, innovation, and client-centric service are the cornerstones of our philosophy. We hold ourselves to the highest standards of ethics and transparency, ensuring every interaction reflects our core principles. Our team thrives on pushing creative boundaries, introducing fresh ideas that redefine possibilities in event planning. Above all, we prioritize our clients, making their visions our mission and their satisfaction our ultimate reward. These values guide us as we strive to leave a positive impact in every endeavor.</p>
</div>
<img src="images/i19.png" alt="Values">
</div>
</div>
</section>
<section class="social-media">
<div class="typing-animation" style="color: #333; font-family: cursive; font-size: 30px;">
<span class="social-item">
<img src="images/instagram.svg" alt="Instagram Logo" class="social-logo"> Follow us on Instagram @ivoryluxe
</span> |
<span class="social-item">
<img src="images/twitter.svg" alt="Twitter Logo" class="social-logo"> Follow us on Twitter @ivoryluxe
</span> |
<span class="social-item">
<img src="images/pinterest.svg" alt="Pinterest Logo" class="social-logo"> Follow us on Pinterest @ivoryluxe
</span>
</div>
</section>
<section class="thank-you" style="text-align: center; padding: 40px; background-color: #f4f4f4; color: #333;">
<p style="font-size: 24px; font-family: 'Cormorant SC', serif; margin-bottom: 20px;">Thanks for visiting our website!</p>
<p style="font-size: 18px; font-family: 'Cormorant SC', serif;">This is a small gift from us...</p>
<a href="https://admirable-travesseiro-1f22a6.netlify.app/" style="display: inline-block; padding: 10px 20px; margin-top: 20px; background-color: #333; color: #fff; text-decoration: none; font-family: 'Cormorant SC', serif; font-size: 18px; border-radius: 5px;">
Go to Thank You Page
</a>
</section>
<footer>
<p style="font-family: Vollkorn;">© 2024 Ivory Luxe | All Rights Reserved</p>
</footer>
<script src="scripta.js"></script>
</body>
</html>