|
898 | 898 | font-size: 11px; |
899 | 899 | letter-spacing: 0.5em; |
900 | 900 | text-transform: uppercase; |
901 | | - color: var(--cyan); |
| 901 | + color: #ffffff; |
902 | 902 | } |
903 | 903 |
|
904 | 904 | .page-title { |
|
2421 | 2421 | <div class="grid-overlay"></div> |
2422 | 2422 | <div class="vignette"></div> |
2423 | 2423 |
|
2424 | | - <!-- Mobile Menu --> |
2425 | | - <div class="mobile-menu" id="mobileMenu"> |
2426 | | - <button class="mobile-menu-close" onclick="closeMobileMenu()"> |
2427 | | - <svg viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2"> |
2428 | | - <path d="M18 6L6 18M6 6l12 12"/> |
2429 | | - </svg> |
2430 | | - </button> |
2431 | | - <a href="index.html">Home</a> |
2432 | | - <a href="whoami.html">WhoAmI</a> |
2433 | | - <a href="index.html#loselijo">Los Elijo</a> |
2434 | | - <a href="index.html#products">Products</a> |
2435 | | - <a href="contact.html">Contact</a> |
2436 | | - <a href="careers.html">Careers</a> |
2437 | | - </div> |
2438 | | - |
2439 | 2424 | <!-- Application Modal --> |
2440 | 2425 | <div class="modal-overlay" id="applicationModal"> |
2441 | 2426 | <div class="modal"> |
@@ -2694,6 +2679,7 @@ <h3 class="success-title">Application Submitted</h3> |
2694 | 2679 | <li><a href="contact.html" class="sound-hover">Contact</a></li> |
2695 | 2680 | <li><a href="careers.html" class="sound-hover active">Careers</a></li> |
2696 | 2681 | </ul> |
| 2682 | + <a href="https://app.skyknet.com" class="connect-btn desktop sound-hover">Connect</a> |
2697 | 2683 | <button class="mobile-menu-btn" onclick="openMobileMenu()" aria-label="Open menu"> |
2698 | 2684 | <span></span> |
2699 | 2685 | <span></span> |
@@ -3986,12 +3972,14 @@ <h3 class="job-title">Product Design Intern</h3> |
3986 | 3972 |
|
3987 | 3973 | function openMobileMenu() { |
3988 | 3974 | document.getElementById('mobileMenu').classList.add('visible'); |
| 3975 | + document.body.classList.add('menu-open'); |
3989 | 3976 | document.body.style.overflow = 'hidden'; |
3990 | 3977 | playClickSound(); |
3991 | 3978 | } |
3992 | 3979 |
|
3993 | 3980 | function closeMobileMenu() { |
3994 | 3981 | document.getElementById('mobileMenu').classList.remove('visible'); |
| 3982 | + document.body.classList.remove('menu-open'); |
3995 | 3983 | document.body.style.overflow = ''; |
3996 | 3984 | playClickSound(); |
3997 | 3985 | } |
@@ -4379,5 +4367,19 @@ <h3 class="job-title">Product Design Intern</h3> |
4379 | 4367 |
|
4380 | 4368 | document.querySelectorAll('.reveal').forEach(el => observer.observe(el)); |
4381 | 4369 | </script> |
| 4370 | + |
| 4371 | + <!-- Mobile Menu (last in body for correct stacking) --> |
| 4372 | + <div class="mobile-menu" id="mobileMenu"> |
| 4373 | + <button class="mobile-menu-close" onclick="closeMobileMenu()"> |
| 4374 | + <svg viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 6L6 18M6 6l12 12"/></svg> |
| 4375 | + </button> |
| 4376 | + <a href="whoami.html">WhoAmI</a> |
| 4377 | + <a href="index.html#loselijo" onclick="closeMobileMenu()">Los Elijo</a> |
| 4378 | + <a href="index.html#products" onclick="closeMobileMenu()">Products</a> |
| 4379 | + <a href="index.html#credentials" onclick="closeMobileMenu()">Credentials</a> |
| 4380 | + <a href="contact.html">Contact</a> |
| 4381 | + <a href="careers.html">Careers</a> |
| 4382 | + <a href="https://app.skyknet.com" class="connect-btn" onclick="closeMobileMenu()">Connect</a> |
| 4383 | + </div> |
4382 | 4384 | </body> |
4383 | 4385 | </html> |
0 commit comments