2025-04-28 11:20:03 -07:00
|
|
|
// Cyberpunk color variables
|
|
|
|
|
$neon-pink: #ff2a6d;
|
|
|
|
|
$neon-blue: #05d9e8;
|
|
|
|
|
$neon-purple: #d300c5;
|
|
|
|
|
$neon-yellow: #f7f500;
|
|
|
|
|
$dark-bg: #0d0221;
|
|
|
|
|
$cyber-black: #1a1a1a;
|
|
|
|
|
|
2025-04-30 15:45:44 -07:00
|
|
|
// Breakpoints
|
|
|
|
|
$mobile-breakpoint: 768px;
|
|
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
@keyframes scanline {
|
|
|
|
|
0% {
|
|
|
|
|
transform: translateY(-100%);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: translateY(100%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes glitch {
|
|
|
|
|
0% {
|
|
|
|
|
text-shadow: 0.05em 0 0 $neon-blue, -0.05em -0.025em 0 $neon-pink;
|
2025-04-30 11:00:04 -07:00
|
|
|
clip-path: polygon(
|
|
|
|
|
0 0,
|
|
|
|
|
100% 0,
|
|
|
|
|
100% 25%,
|
|
|
|
|
0 25%,
|
|
|
|
|
0 30%,
|
|
|
|
|
100% 30%,
|
|
|
|
|
100% 50%,
|
|
|
|
|
0 50%,
|
|
|
|
|
0 60%,
|
|
|
|
|
100% 60%,
|
|
|
|
|
100% 75%,
|
|
|
|
|
0 75%,
|
|
|
|
|
0 100%,
|
|
|
|
|
100% 100%
|
|
|
|
|
);
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
25% {
|
|
|
|
|
text-shadow: -0.05em -0.025em 0 $neon-blue, 0.025em 0.025em 0 $neon-pink;
|
2025-04-30 11:00:04 -07:00
|
|
|
clip-path: polygon(
|
|
|
|
|
0 0,
|
|
|
|
|
100% 0,
|
|
|
|
|
100% 35%,
|
|
|
|
|
0 35%,
|
|
|
|
|
0 65%,
|
|
|
|
|
100% 65%,
|
|
|
|
|
100% 85%,
|
|
|
|
|
0 85%,
|
|
|
|
|
0 100%,
|
|
|
|
|
100% 100%
|
|
|
|
|
);
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
text-shadow: 0.025em 0.05em 0 $neon-blue, -0.05em -0.05em 0 $neon-pink;
|
2025-04-30 11:00:04 -07:00
|
|
|
clip-path: polygon(
|
|
|
|
|
0 0,
|
|
|
|
|
100% 0,
|
|
|
|
|
100% 15%,
|
|
|
|
|
0 15%,
|
|
|
|
|
0 40%,
|
|
|
|
|
100% 40%,
|
|
|
|
|
100% 55%,
|
|
|
|
|
0 55%,
|
|
|
|
|
0 70%,
|
|
|
|
|
100% 70%,
|
|
|
|
|
100% 100%,
|
|
|
|
|
0 100%
|
|
|
|
|
);
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
75% {
|
|
|
|
|
text-shadow: -0.05em -0.025em 0 $neon-blue, 0.025em 0.025em 0 $neon-pink;
|
2025-04-30 11:00:04 -07:00
|
|
|
clip-path: polygon(
|
|
|
|
|
0 0,
|
|
|
|
|
100% 0,
|
|
|
|
|
100% 45%,
|
|
|
|
|
0 45%,
|
|
|
|
|
0 50%,
|
|
|
|
|
100% 50%,
|
|
|
|
|
100% 70%,
|
|
|
|
|
0 70%,
|
|
|
|
|
0 80%,
|
|
|
|
|
100% 80%,
|
|
|
|
|
100% 100%,
|
|
|
|
|
0 100%
|
|
|
|
|
);
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
text-shadow: 0.05em 0 0 $neon-blue, -0.05em -0.025em 0 $neon-pink;
|
2025-04-30 11:00:04 -07:00
|
|
|
clip-path: polygon(
|
|
|
|
|
0 0,
|
|
|
|
|
100% 0,
|
|
|
|
|
100% 25%,
|
|
|
|
|
0 25%,
|
|
|
|
|
0 30%,
|
|
|
|
|
100% 30%,
|
|
|
|
|
100% 50%,
|
|
|
|
|
0 50%,
|
|
|
|
|
0 60%,
|
|
|
|
|
100% 60%,
|
|
|
|
|
100% 75%,
|
|
|
|
|
0 75%,
|
|
|
|
|
0 100%,
|
|
|
|
|
100% 100%
|
|
|
|
|
);
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-30 15:45:44 -07:00
|
|
|
@keyframes hamburger-pulse {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: 0 0 5px $neon-pink, 0 0 10px $neon-pink;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
box-shadow: 0 0 8px $neon-pink, 0 0 15px $neon-pink, 0 0 20px $neon-pink;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: 0 0 5px $neon-pink, 0 0 10px $neon-pink;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes menu-reveal {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(-20px);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
@keyframes neon-flicker {
|
2025-04-30 11:00:04 -07:00
|
|
|
0%,
|
|
|
|
|
19.999%,
|
|
|
|
|
22%,
|
|
|
|
|
62.999%,
|
|
|
|
|
64%,
|
|
|
|
|
64.999%,
|
|
|
|
|
70%,
|
|
|
|
|
100% {
|
2025-04-28 11:20:03 -07:00
|
|
|
opacity: 0.99;
|
|
|
|
|
filter: drop-shadow(0 0 1px rgba($neon-pink, 0.95))
|
2025-04-30 11:00:04 -07:00
|
|
|
drop-shadow(0 0 4px rgba($neon-pink, 0.6))
|
|
|
|
|
drop-shadow(0 0 8px rgba($neon-pink, 0.4));
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
20%,
|
|
|
|
|
21.999%,
|
|
|
|
|
63%,
|
|
|
|
|
63.999%,
|
|
|
|
|
65%,
|
|
|
|
|
69.999% {
|
2025-04-28 11:20:03 -07:00
|
|
|
opacity: 0.4;
|
|
|
|
|
filter: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes hover-glow {
|
|
|
|
|
0% {
|
2025-04-30 11:00:04 -07:00
|
|
|
box-shadow: 0 0 5px $neon-blue, 0 0 10px $neon-blue, 0 0 15px $neon-blue,
|
|
|
|
|
0 0 20px $neon-blue;
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
100% {
|
2025-04-30 11:00:04 -07:00
|
|
|
box-shadow: 0 0 10px $neon-blue, 0 0 20px $neon-blue, 0 0 30px $neon-blue,
|
|
|
|
|
0 0 40px $neon-blue;
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-17 10:31:02 -07:00
|
|
|
.navbar {
|
2025-04-28 11:20:03 -07:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: rgba($cyber-black, 0.85);
|
|
|
|
|
padding: 0.8rem 2rem;
|
|
|
|
|
color: white;
|
|
|
|
|
box-shadow: 0 0 10px $neon-purple, 0 0 20px rgba($neon-purple, 0.5);
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-bottom: 1px solid $neon-pink;
|
|
|
|
|
backdrop-filter: blur(5px);
|
2025-04-30 15:45:44 -07:00
|
|
|
transition: all 0.3s ease;
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
// Glitch effect for the navbar
|
|
|
|
|
&--glitch {
|
|
|
|
|
animation: glitch 0.2s linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__logo {
|
|
|
|
|
position: relative;
|
2025-04-30 11:00:04 -07:00
|
|
|
font-size: 2rem;
|
2025-04-28 11:20:03 -07:00
|
|
|
font-weight: bold;
|
2025-04-17 10:31:02 -07:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-04-28 11:20:03 -07:00
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
border: 1px solid $neon-pink;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background-color: rgba($dark-bg, 0.7);
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&-text {
|
|
|
|
|
color: white;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
animation: neon-flicker 5s infinite alternate;
|
|
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&-highlight {
|
|
|
|
|
color: $neon-pink;
|
|
|
|
|
text-shadow: 0 0 5px $neon-pink, 0 0 10px $neon-pink;
|
|
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&-scanner {
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 2px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: linear-gradient(90deg, transparent, $neon-blue, transparent);
|
|
|
|
|
animation: scanline 2s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-30 15:45:44 -07:00
|
|
|
&__hamburger {
|
|
|
|
|
display: none;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 1001;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-line {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 3px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
position: relative;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
box-shadow: 0 0 5px $neon-pink, 0 0 10px $neon-pink;
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
&:nth-child(1) {
|
|
|
|
|
transform: translateY(9.5px) rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateX(-20px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
|
|
|
|
transform: translateY(-9.5px) rotate(-45deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
.navbar__hamburger-line {
|
|
|
|
|
animation: hamburger-pulse 1.5s infinite;
|
|
|
|
|
box-shadow: 0 0 10px $neon-blue, 0 0 20px $neon-blue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-30 11:00:04 -07:00
|
|
|
&__greeting {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
border: 1px solid $neon-blue;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background-color: rgba($dark-bg, 0.7);
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 40%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
2025-04-30 15:45:44 -07:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-30 11:00:04 -07:00
|
|
|
&-text {
|
|
|
|
|
color: $neon-blue;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
text-shadow: 0 0 5px rgba($neon-blue, 0.7);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-name {
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
animation: neon-flicker 5s infinite alternate;
|
|
|
|
|
text-shadow: 0 0 5px $neon-pink, 0 0 10px $neon-pink;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 2px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: linear-gradient(90deg, transparent, $neon-blue, transparent);
|
|
|
|
|
animation: scanline 2s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&__links {
|
|
|
|
|
list-style: none;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2025-04-30 15:45:44 -07:00
|
|
|
transition: all 0.3s ease;
|
2025-04-28 11:20:03 -07:00
|
|
|
|
2025-04-30 15:45:44 -07:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: -100%;
|
|
|
|
|
width: 250px;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background-color: rgba($cyber-black, 0.95);
|
2025-04-28 11:20:03 -07:00
|
|
|
flex-direction: column;
|
2025-04-30 15:45:44 -07:00
|
|
|
gap: 1.5rem;
|
|
|
|
|
padding: 5rem 2rem 2rem;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
box-shadow: -5px 0 15px rgba($neon-purple, 0.5);
|
|
|
|
|
border-left: 1px solid $neon-pink;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--open {
|
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
animation: menu-reveal 0.5s ease forwards;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
|
|
@for $i from 1 through 10 {
|
|
|
|
|
&:nth-child(#{$i}) {
|
|
|
|
|
animation-delay: 0.1s * $i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
li {
|
|
|
|
|
position: relative;
|
2025-04-30 15:45:44 -07:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__link {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-decoration: none;
|
2025-04-17 10:31:02 -07:00
|
|
|
color: white;
|
2025-04-28 11:20:03 -07:00
|
|
|
font-weight: 500;
|
|
|
|
|
padding: 0.5rem 0.8rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
letter-spacing: 1px;
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-30 15:45:44 -07:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.8rem 1rem;
|
|
|
|
|
border: 1px solid rgba($neon-blue, 0.3);
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&-icon {
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
font-size: 1.2rem;
|
2025-04-17 10:31:02 -07:00
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&-text {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&-hover {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: $neon-blue;
|
|
|
|
|
transform: scaleX(0);
|
|
|
|
|
transform-origin: left;
|
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&:hover {
|
|
|
|
|
color: $neon-blue;
|
|
|
|
|
text-shadow: 0 0 5px rgba($neon-blue, 0.7);
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
.navbar__link-hover {
|
|
|
|
|
transform: scaleX(1);
|
|
|
|
|
box-shadow: 0 0 10px $neon-blue, 0 0 20px $neon-blue;
|
2025-04-17 10:31:02 -07:00
|
|
|
}
|
|
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
&--active {
|
|
|
|
|
color: $neon-pink;
|
|
|
|
|
text-shadow: 0 0 5px rgba($neon-pink, 0.7);
|
|
|
|
|
border: 1px solid $neon-pink;
|
|
|
|
|
background-color: rgba($neon-pink, 0.1);
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-17 10:31:02 -07:00
|
|
|
&:hover {
|
2025-04-28 11:20:03 -07:00
|
|
|
color: $neon-pink;
|
|
|
|
|
}
|
2025-04-30 11:00:04 -07:00
|
|
|
|
2025-04-28 11:20:03 -07:00
|
|
|
.navbar__link-hover {
|
|
|
|
|
background-color: $neon-pink;
|
|
|
|
|
transform: scaleX(1);
|
|
|
|
|
box-shadow: 0 0 10px $neon-pink, 0 0 20px $neon-pink;
|
2025-04-17 10:31:02 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-30 15:45:44 -07:00
|
|
|
|
|
|
|
|
// Mobile menu open state
|
|
|
|
|
&--menu-open {
|
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
|
z-index: 999;
|
|
|
|
|
backdrop-filter: blur(3px);
|
|
|
|
|
animation: menu-reveal 0.3s ease forwards;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-28 11:20:03 -07:00
|
|
|
}
|