-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsors.html
executable file
·472 lines (408 loc) · 14.3 KB
/
sponsors.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
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ROVolutionaries - Sponsors</title>
<link rel="icon" href="assets/logo/favicon.png" type="image/png">
<style>
:root {
--orange: #ff7f50;
--blue: #0077be;
--dark-bg: #121212;
--light-text: #f0f0f0;
--overlay-bg: rgba(0, 0, 0, 0.5); /* Darker overlay */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: var(--dark-bg);
color: var(--light-text);
line-height: 1.6;
transition: background-color 1s ease; /* Smooth background transition */
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
nav {
background-color: rgba(18, 18, 18, 0.9);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
.nav-links {
display: flex;
align-items: center;
}
.nav-links a {
color: var(--light-text);
text-decoration: none;
padding: 10px 15px;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--orange);
}
.hamburger {
display: none;
cursor: pointer;
padding: 10px;
}
.hamburger div {
width: 25px;
height: 3px;
background-color: var(--light-text);
margin: 5px 0;
transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
.nav-links {
position: fixed;
right: -100%;
top: 70px;
flex-direction: column;
background-color: rgba(18, 18, 18, 0.9);
width: 50%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
}
.nav-links.active {
right: 0;
}
.nav-links a {
padding: 15px;
display: block;
}
.hamburger {
display: block;
}
}
.logo {
padding: 0 15px;
}
.logo img {
height: 60px;
width: auto;
max-width: 100%;
}
.logo img.logo-small {
display: none;
}
@media screen and (max-width: 768px) {
.logo {
padding: 0 10px;
}
.logo img.logo-large {
display: none;
}
.logo img.logo-small {
display: block;
}
}
.sponsors-hero {
height: 50vh;
position: relative;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.sponsors-hero h1 {
font-size: 4rem;
color: var(--orange);
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
z-index: 2;
position: relative;
}
/* New media queries for smaller screens */
@media screen and (max-width: 768px) {
.sponsors-hero h1 {
font-size: 3rem;
}
}
@media screen and (max-width: 480px) {
.sponsors-hero h1 {
font-size: 2rem;
}
}
.slideshow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.slideshow img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.slideshow img.active {
opacity: 1;
}
/* Dark overlay */
.slideshow::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--overlay-bg);
z-index: 1;
}
.sponsors-content {
padding: 80px 0;
}
.sponsors-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 60px;
}
.sponsor-card {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 20px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.sponsor-logo {
width: 150px;
height: 150px;
margin: 0 auto 20px;
background-color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.sponsor-logo img {
max-width: 80%;
max-height: 80%;
object-fit: contain;
}
.sponsor-name {
font-size: 1.5rem;
color: var(--blue);
margin-bottom: 10px;
}
.text-link {
color: var(--blue);
text-decoration: none;
}
.text-link:hover {
color: var(--orange);
text-decoration: underline;
}
.sponsor-cta {
padding: 40px;
background-color: rgba(255, 255, 255, 0.05);
color: var(--light-text);
border-radius: 10px;
margin-bottom: 40px;
}
.sponsor-cta h2 {
color: var(--orange);
font-size: 2.5rem;
margin-bottom: 20px;
}
.sponsor-cta p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 20px;
}
.sponsor-cta h3 {
color: var(--blue);
font-size: 2rem;
margin-bottom: 15px;
}
.sponsor-cta ul {
list-style-type: none;
padding: 0;
margin-bottom: 20px;
}
.sponsor-cta ul li {
font-size: 1.1rem;
margin-bottom: 10px;
color: var(--light-text);
padding-left: 20px;
position: relative;
}
.sponsor-cta ul li:before {
content: '•';
color: var(--white);
position: absolute;
left: 0;
}
.button-container {
text-align: center;
padding-top: 0vh; /* Adjust this value to move the button up or down */
}
.cta-button {
display: inline-block;
background-color: var(--blue);
color: var(--light-text);
padding: 12px 24px;
border-radius: 5px;
text-decoration: none;
font-size: 1.1rem;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: var(--orange);
}
</style>
</head>
<body>
<nav>
<div class="container nav-container">
<a href="index.html" class="logo">
<img src="assets/logo/logo1.png" alt="ROVolutionaries Logo" class="logo-large">
<img src="assets/logo/logo2.png" alt="ROVolutionaries Logo" class="logo-small">
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="sponsors.html">Sponsors</a>
</div>
<div class="hamburger">
<div></div>
<div></div>
<div></div>
</div>
</div>
</nav>
<section class="sponsors-hero">
<div class="slideshow">
<img src="assets/images/sponsors-hero1.jpg" alt="Sponsors Hero 1" class="active">
<img src="assets/images/sponsors-hero2.jpg" alt="Sponsors Hero 2">
</div>
<h1>Our Sponsors</h1>
</section>
<section class="sponsors-content">
<div class="container">
<div class="sponsors-grid">
<div class="sponsor-card">
<div class="sponsor-logo">
<img src="assets/images/sponsor-logo1.jpg" alt="Sponsor 1 Logo">
</div>
<h3 class="sponsor-name">
<a href="https://www.kaust.edu.sa/html/reefscape/" class="text-link">KAUST Coral Restoration Initiative</a>
</h3>
<p class="sponsor-description">(sample text) Provided funding for our ROV components and materials.</p>
</div>
<div class="sponsor-card">
<div class="sponsor-logo">
<img src="assets/images/sponsor-logo2.jpg" alt="Sponsor 2 Logo">
</div>
<h3 class="sponsor-name">
<a href="https://corelabs.kaust.edu.sa/labs/coastal-and-marine-resources/cmr-team" class="text-link">KAUST Costal and Marine Resources</a>
</h3>
<p class="sponsor-description">Provided us with essential components and granted access to advanced tools and equipment.</p>
</div>
<div class="sponsor-card">
<div class="sponsor-logo">
<img src="assets/images/sponsor-logo3.jpg" alt="Sponsor 3 Logo">
</div>
<h3 class="sponsor-name">
<a href="https://tks.kaust.edu.sa/" class="text-link">The Kaust School</a>
</h3>
<p class="sponsor-description">Hosted the competition, offered invaluable mentorship throughout the process, and provided access to basic tools.</p>
</div>
<div class="sponsor-card">
<div class="sponsor-logo">
<img src="assets/images/sponsor-logo4.jpg" alt="Sponsor 4 Logo">
</div>
<h3 class="sponsor-name">
<a href="https://corelabs.kaust.edu.sa/labs/detail/prototyping-product-development-core-lab" class="text-link">KAUST Prototype Core Lab</a>
</h3>
<p class="sponsor-description">Provided advanced prototyping equipment and mentorship.</p>
</div>
<!-- Add more sponsor cards as needed -->
</div>
<section class="sponsor-cta">
<h2>Join Us on Our Journey! Become a Sponsor Today!</h2>
<p>
At <strong>ROVolutionaries</strong>, we're on a mission to innovate and inspire as we tackle exciting underwater robotics challenges in the <strong>MATE ROV competition</strong>. But we can't do it alone — we need partners like you to help make our vision a reality!
</p>
<p>
By sponsoring our team, you'll be supporting the next generation of engineers, innovators, and problem-solvers. Your sponsorship will directly contribute to our success, helping us access essential equipment, cutting-edge technology, and vital resources for competition.
</p>
<h3>Why Sponsor Us?</h3>
<ul>
<li>Gain exposure through our website, social media, and competition presence</li>
<li>Showcase your support for STEM education and hands-on learning</li>
<li>Join us in an innovative project focused on underwater exploration</li>
</ul>
<p>
Join our community of passionate sponsors and partners who are making waves in underwater robotics!
</p>
<p>
Let's work together to make a lasting impact. Reach out today to explore sponsorship opportunities and help us dive deeper into success.
</p>
<div class="button-container">
<a href="contact.html" class="cta-button">Contact Us</a>
</div>
</section>
</div>
</section>
<script>
// Nav bar
const hamburger = document.querySelector(".hamburger");
const navLinks = document.querySelector(".nav-links");
hamburger.addEventListener("click", () => {
navLinks.classList.toggle("active");
hamburger.classList.toggle("active");
});
// Close menu when a link is clicked
document.querySelectorAll(".nav-links a").forEach(n => n.addEventListener("click", () => {
navLinks.classList.remove("active");
hamburger.classList.remove("active");
}));
// Image slideshow
const images = document.querySelectorAll('.slideshow img');
let currentImage = 0;
function nextImage() {
images[currentImage].classList.remove('active');
currentImage = (currentImage + 1) % images.length;
images[currentImage].classList.add('active');
}
setInterval(nextImage, 10000); // Change image every 10 seconds
// Background color change
const colors = ['#121212', '#1c1c1c', '#242424']; // Darker background colors
let currentColor = 0;
function changeBackground() {
currentColor = (currentColor + 1) % colors.length;
document.body.style.backgroundColor = colors[currentColor];
}
setInterval(changeBackground, 10000); // Change background color every 10 seconds
</script>
</body>
</html>