/* 

void: #050508
deep: #0A0A12
surface: #0F0F1A
card: #131320
border: #1E1E32
blue: #58A6FF
blue2: #A78BFA
blue3: #34D399
text: #E8E8F0
muted: #6B6B8A
dim: #2E2E4A
glow: rgba(88,166,255,0.15)

font-family:'Syne',sans-serif;
font-family:'DM Mono',monospace;
font-family: "DM Sans", sans-serif;

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(88, 166, 255, 0.4) transparent;
}

body {
    overflow-x: hidden;
    height: 100dvh;
    background: #0A0A12;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #34D399;
    border-radius: 10px;
    height: 10dvh;
}

/* SCAN LINE */
body::before {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(88, 166, 255, .85), transparent);
    animation: scanLine 10s linear infinite;
    z-index: 10000;
    pointer-events: none;
}

@keyframes scanLine {
    from {
        top: -2dvh;
    }

    to {
        top: 100dvh;
    }
}

/*                              NAVBAR                           */
.nav-mobile-hamburger {
    display: none;
}

.nav-dropdown-menu {
    display: none;
}

#nav-dropdown {
    display: none;
}

nav {
    height: 10dvh;
    padding: 0 4dvw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(5, 5, 8, .75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #1E1E32;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-logo {
    font-family:'DM Mono',monospace;
    font-size: 14px;
    letter-spacing: 2px;
    width: 13%;
    animation: navLogo 5s ease infinite;
    animation: name duration timing-function delay iteration-count direction fill-mode;
}

.nav-logo a {
    color: #58A6FF;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 900;
    color: #6B6B8A;
}

.logo-t {
    margin-left: 3px;
    background: #58A6FF;
    height: 4dvh;
    width: 2dvw;
    clip-path: polygon(10% 0, 100% 0, 90% 20%, 60% 20%, 45% 100%, 25% 100%, 40% 20%, 0 20%);
}

.logo-e {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 3px;
}

.logo-e-line {
    background: #58A6FF;
    height: .7dvh;
    width: 2dvw;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.logo-e-line:first-of-type {
    margin-left: 3px;
}

.logo-e-line:nth-of-type(2) {
    margin-left: 0px;
    background: white;
}

.logo-e-line:last-of-type {
    margin-left: -3px;
}

@keyframes navLogo {
    0% {
        transform: translateX(0); 
    }
    89% {
        transform: translateX(0);
    }
    91% {
        transform: translateX(-4px);
    }
    93% {
        transform: translateX(4px);
    }
    95% {
        transform: translateX(-2px);
    }
    97% {
        transform: translateX(2px);
    }
    100% {
        transform: translateX(0);
    }
}

.nav-middle {
    
}

.nav-middle ul {
    list-style: none;
    display: flex;
    gap: 3dvw;
}

.nav-middle a {
    font-size: 12px;
    letter-spacing: 2px;
    font-family:'DM Mono',monospace;
    color: #6B6B8A;
    text-decoration: none;
    position: relative;
}

.nav-middle a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #58A6FF, #A78BFA);
}

.nav-middle a:hover {
    color: white;
    transition: 0.3s;
}

.nav-middle a:hover::after {
    width: 100%;
    transition: 0.3s;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family:'DM Mono',monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #6B6B8A;
    width: 13%;
}

.nav-green-light {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 6px #34D399, 0 0 20px rgba(52, 211, 153, 0.5);
    animation: navGreenLight 2s ease infinite;
}

@keyframes navGreenLight {
    0% {
        opacity: .5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }

    100% {
        opacity: .5;
        transform: scale(1);
    }
}

.section {
    padding: 10dvh 4dvw;
}

/*                              HERO SECTION                         */

#hero {
    position: relative;
    background: #050508;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(#1e1e322f 1px, transparent 1px),
        linear-gradient(90deg, #1e1e322f 1px, transparent 1px);
    background-size: 4dvw 4dvw;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 62%;
    transform: translate(-50%, -50%);
    width: 40dvw;
    height: 70dvh;
    background: radial-gradient(circle at 40% 40%, 
        rgba(88, 166, 255, 0.1) 0%, 
        rgba(167, 139, 250, 0.07) 50%, 
        transparent 70%
    );
    animation: blobMorph 14s ease-in-out infinite, 
               pulseGlow 7s ease-in-out infinite;
    pointer-events: none;
}

.hero-blob2 {
    position: absolute;
    top: 25%;
    left: 18%;
    width: 20dvw;
    height: 35dvh;
    background: radial-gradient(circle, 
        rgba(167, 139, 250, 0.06), 
        transparent 70%
    );
    animation: blobMorph 18s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 60% / 40% 30% 60% 50%;
    }
    75% {
        border-radius: 40% 60% 50% 30% / 60% 40% 50% 40%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5; transform: scale(1);
    }
    50% {
        opacity: 1;   transform: scale(1.06);
    }
    100% {
        opacity: 0.5; transform: scale(1);
    }
}

.hero-circles {
    position: absolute;
}

.hero-circle-1 {
    width: 20dvw;
    height: 20dvw;
    right: 10dvw;
    bottom: 10dvh;
}

.orbital-ring {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #1E1E32;
    position: relative;
    animation: orbitalRing 20s linear infinite;
}

.orbital-ring-before::before {
    content: '';
    position: absolute;
    top: -.5dvh;
    left: 50%;
    transform: translateX(-50%);
    width: 1dvh;
    height: 1dvh;
    border-radius: 50%;
    background: #58A6FF;
    box-shadow: 
        0 0 4px #5280b6;
    transform: rotate(360deg);
}

@keyframes orbitalRing {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-circle-2 {
    width: 13dvw;
    height: 13dvw;
    right: 10dvw;
    bottom: 24dvh;
}

.hero-circle-3 {
    width: 15dvw;
    height: 15dvw;
    right: 9dvw;
    bottom: 22dvh;
}

.hero-circle-3 > .orbital-ring {
    border: none;
    animation: orbitalRing2 15s linear infinite;

}
.hero-circle-3 > .orbital-ring-before::before {
    background: #A78BFA;
    width: .8dvh;
    height: .8dvh;
    top: -.4dvh;
}

@keyframes orbitalRing2 {
    from {
        transform: rotate(360deg);
    }
    
    to {
        transform: rotate(0);
    }
}

.floating-circle {
    width: 3.5dvw;   
    height: 3.5dvw;
    border: 1px solid #58a6ff1c;
    border-radius: 50%;
    background: radial-gradient(rgb(88, 166, 255, .40) 0%, transparent 95%);
    position: absolute;
    right: 18dvw;
    bottom: 45dvh;
    animation: floatingCircle 5s ease-in-out infinite;
}

@keyframes floatingCircle {
    0%, 100% {
        transform: translateY(-2dvh);
    }

    50% {
        transform: translateY(2dvh);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-content-z-index {
    z-index: 10;
}

.hero-eyebrow {
    display: flex;
    gap: 1dvw;
    padding-top: 13dvh;
    align-items: center;
    margin-bottom: 3dvh;
}

.hero-accent {
    width: 3dvw;
    height: 1px;
    border-radius: 0 50% 50% 0;
    background: linear-gradient(90deg, #58A6FF, transparent);
}

.hero-tiny-heading {
    color: #58A6FF;
    font-family:'DM Mono',monospace;
    letter-spacing: 4px;
    font-size: 12px;
}

.hero-my-name h1 {
    font-size: 87px;
    font-family:'Syne',sans-serif;
    font-weight: 900;
    line-height: 12dvh;
}

.hero-my-name h1:first-of-type {
    color: #E8E8F0;
}

.hero-my-name h1:last-of-type {
    background: linear-gradient(90deg, #58A6FF, #A78BFA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-focus-areas {
    color: #6B6B8A;
    font-family:'DM Mono',monospace;
    margin-top: 2dvh;
}

.hero-focus-areas ul {
    display: flex;
    gap: 3dvw;
    font-size: 12px;
    letter-spacing: 3px;
}

.hero-focus-areas li:first-of-type {
    list-style: none;
    padding-left: 0;
}

.hero-focus-areas li {
    padding-left:  1dvw;
}

.hero-writeup {
    color: #6B6B8A;
    font-family:'DM Mono', monospace;   
    width: 38%;
    word-spacing: -3px;
    margin-top: 3dvh;
    line-height: 4dvh;
    font-size: 14px;
    padding: .5dvh 1dvw;
    border-left: 2px solid rgba(88,166,255,0.35);
}

.hero-stats {
    display: flex;
    gap: 3dvw;
    pointer-events: none;
}

.hero-stats h1 {
    color: #58A6FF;   
    font-family:'Syne',sans-serif;
    font-weight: 900;
    font-size: 36px;
    height: 7dvh;
}

.hero-stats p {
    color: #6B6B8A;   
    font-family:'DM Mono',monospace;
    font-size: 10px;
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 2dvh;
    display: flex;
    gap: 1dvw;
}

.hero-buttons a {
    text-decoration: none;
}

.hero-buttons button {
    padding: 2dvh 2dvw;
    border-radius: 5px;
    font-weight: 500;
    font-family:'DM Mono',monospace;
    font-size: 12px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.hero-buttons button:hover {
    cursor: pointer;
}

.hero-view-projects {
    box-shadow: 0 0 30px rgba(88,166,255,0.45);
    background: linear-gradient(90deg, #58A6FF, #A78BFA);   
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-view-projects::before {
    content: '';
    position: absolute;
    z-index: 0;
    left: -100%;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.30) 20%, rgba(255,255,255,0.30) 80%, transparent 100%);
    animation: heroButtonOneBefore 4s ease infinite;
}

@keyframes heroButtonOneBefore {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.hero-view-projects:hover {
    animation: heroButtonOne .5s ease-in-out forwards;
}

@keyframes heroButtonOne {
    to {
        transform: translateY(-3px);
        box-shadow: 0 0 50px rgba(88,166,255,0.75);
    }
}

.hero-lets-talk {
    background: transparent;
    border: 1px solid #1E1E32;
    color: #6B6B8A;
    animation: borderFade 4s linear infinite
}

.hero-lets-talk:hover {
    color: #58A6FF;
    box-shadow: 0 0 15px rgba(88,166,255,0.35);
    transition: 1s ease;
}

@keyframes borderFade {
    0% {
        border-color: #1E1E32;
    }

    50% {
        border-color: rgb(88, 166, 255, .5);
    }

    100% {
        border-color: #1E1E32;
    }
}

.hero-clip {
    background: #0A0A12;   
    position: absolute;
    bottom: -1px;   
    left: 0;
    right: 0;
    height: 15dvh;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.skills-marquee {
    width: 100%;
    height: 8dvh;
    border-top: 1px solid #58a6ff34;
    border-bottom: 1px solid #58a6ff34;
    display: flex;
    align-items: center;
    background: #0F0F1A;
    overflow: hidden;
    white-space: nowrap;
}

.skills-marquee ul {
    display: inline-flex;
    gap: 2dvw;
    white-space: nowrap;
    animation: skillsMarquee 20s linear infinite;
}

.skills-marquee li {
    color: #6B6B8A;
    font-family:'DM Mono',monospace;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 0 2dvw;
    white-space: nowrap;
    justify-content: center;
    list-style: none;
    position: relative;
}

.skills-marquee li::before {
    content: '';
    position: absolute;
    left: -1dvw;
    top: 50%;
    transform: translateY(-50%);
    width: 1dvh;
    height: 1dvh;
    background: #58A6FF;
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
    filter: drop-shadow(0 0 40px white);
}

@keyframes skillsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*                              ABOUT SECTION                        */
#about {
    position: relative;
}

.about-clip {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 12dvh;
    background: #050508;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-section {
    display: flex;
    justify-content: space-between;
    margin-top: 15dvh;
}

.about-section-content {
    width: 43dvw;
}

.about-section-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.about-section-accent {
    width: 2dvw;
    height: 1px;
    background: #58A6FF;
}

.about-section-tiny-heading {
    font-family:'DM Mono',monospace;
    color: #6B6B8A;
    letter-spacing: 2px;
}

.about-section-heading {
    margin-top: 3dvh;
}

.about-section-heading h1 {
    font-family:'Syne',sans-serif;   
    font-size: 55px;
    line-height: 8dvh;
}

.about-section-heading h1:first-of-type {
    color: #E8E8F0;
    font-weight: 900;
}

.about-section-heading h1:last-of-type {
    background: linear-gradient(90deg, #58A6FF, #A78BFA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 100;
}

.about-section-body {
    margin-top: 3dvh;
    line-height: 4dvh;
    color: #6B6B8A;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
}

.about-section-body p {
    margin-bottom: 3dvh;
}

.about-section-body p span {
    color: #E8E8F0;
}

.about-plaques {
    padding: 1dvh 1dvw;
    border: 1px solid #58a6ff34;
    background: #58a6ff1c;
    color: #58A6FF;
    border-radius: 3px;
    margin-bottom: 1dvh;
    margin-right: 3px;
    font-family:'DM Mono',monospace;
    font-size: 10px;
    letter-spacing: 2px;
}

.about-plaques:hover {
    border-color: #58A6FF;
    box-shadow: 0 0 10px rgba(88,166,255,0.15);
    transition: .5s ease;
}

.about-section-terminal {
    margin-top: 10dvh;
    width: 43dvw;
    height: 55dvh;
    border-radius: 10px;
    border: 1px solid #1E1E32;
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-section-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3px;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent, #58A6FF 1%, #A78BFA 50%, transparent);
}

.terminal-heading {
    background: #191925;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 5dvh;
    border-bottom: 1px solid #1E1E32;
    display: flex;
    gap: 1dvw;
    align-items: center;
    padding-left: 1dvw;
}

.terminal-heading-lights {
    display: flex;
    gap: 1dvh;
    align-items: center;
}

.terminal-lights {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-red-light {
    background: #FF5F57;
}

.terminal-yellow-light {
    background: #FEBC2E;
}

.terminal-green-light {
    background: #28C840;
}

.terminal-heading-text {
    font-family:'DM Mono',monospace;
    color: #6B6B8A;   
    font-size: 10px;
}

.terminal-body {
    background: #131320;
    height: 50dvh;
    padding: 4dvh 2dvw;
    font-family:'DM Mono',monospace;
    font-size: 12px;
}

.terminal-command-line {
    display: flex;
}

.cli-green {
    color: #3FB950;
}

.cli-grey {
    color: #6B6B8A; 
}

.cli-blue {
    color: #58A6FF;
}

.cli-white {
    color: #E8E8F0;
}

.terminal-whoami {
    padding: 0 5px;
    border-left: 2px solid #1E1E32;
    margin: 2dvh 0 3dvh;
    font-family:'DM Mono',monospace;
}

.terminal-whoami p {
    line-height: 4dvh;
}

.terminal-whoami p svg {
    margin: 0 1dvh;
}

.whoami-red {
    color: #FF5F57;
    display: inline-flex;
    align-items: center;
}

.terminal-philosophy {
    font-style: italic;
    line-height: 3dvh;
    margin: 2dvh 0 3dvh;
}

.terminal-cursor-blink {
    height: 2.3dvh;
    width: 1.3dvh;
    background: #365D90;
    animation: terminalCursorBlink 1s infinite;
}

@keyframes terminalCursorBlink {
    0% {
        background: #365D90;
    }

    50% {
        background: #58A6FF;
    }
}


/*                          SKILLS SECTION                           */
#skills {
    background: #050508;
    padding: 23dvh 4dvw;
}

.skills-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.skills-accent {
    width: 2dvw;
    height: 1px;
    background: #58A6FF;
}

.skills-tiny-heading {
    font-family:'DM Mono',monospace;
    color: #58A6FF;
    letter-spacing: 3px;
    font-size: 10px;
}

.skills-heading {
    margin: 2dvh 0 7dvh;
}

.skills-heading h1 {
    font-family:'Syne',sans-serif;
    font-size: 55px;   
    color: #E8E8F0;   
    font-weight: 900;
}

.skills-heading h1 span {
    font-weight: normal;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.skills-what-i-work-with-flex {
    display: flex;
    justify-content: space-between;
}

.what-i-work-with-block {
    width: 30.2dvw;
    height: 45dvh;
    background: #131320;   
    padding: 5dvh 2dvw;
    position: relative;
    overflow: hidden;
}

.what-i-work-with-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 60%);
    transition: .2s ease-in-out;
}

.what-i-work-with-block:hover::before {
    width: 100%;
}

.what-i-work-with-block::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .01) 97%, rgba(255,255,255,0.02) 98%);
    transition: .2s ease-in-out;
}

.what-i-work-with-block:hover::after {
    width: 100%;
}

.what-i-work-with-block:hover .wiww-img {
    border-color: #58a6ff62;
    box-shadow: 0 0 10px rgba(255,255,255,0.10);
    transition: .2s;
}

.wiww-no {
    font-family:'DM Mono',monospace;
    color: #2E2E4A;      
    font-size: 10px;
    letter-spacing: 2px;
}

.wiww-img {
    margin: 2dvh 0;
    width: 7dvh;
    height: 7dvh;
    border-radius: 10px;
    border: 1px solid #1E1E32;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-1-vertical-line {
    height: 1.7dvh;
    border: 1px solid #58A6FF;
}

.img-1-diagonal-line {
    width: 1dvh;
    border: 1px solid #A78BFA;
    margin: 0 3px;
    transform: rotate(30deg);
}

.img-2-box {
    border: 1px solid #34D399;
    width: 3dvh;
    height: 2dvh;
    border-radius: 3px;
    padding-left: 3px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.img-2-box-line {
    border: 1px solid #34D399;
    width: 1dvh;
    margin-bottom: 1px;
}

.img-u {
    width: 2.1dvh;
    height: 2.5dvh;
    border-radius: 0 0 50% 50%;
    border: 1px solid #A78BFA;
    display: flex;
    justify-content: center;
    padding-top: 3px;
}

.img-u-circle {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid #A78BFA;
}

.wiww-heading {
    font-family:'Syne',sans-serif;   
    color: #E8E8F0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3dvh;
}

.wiww-list {
    font-family: "DM Sans", sans-serif;   
    color: #6B6B8A;
    font-size: 12px;
}

.wiww-list-line {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 2dvh;
    margin-bottom: 2dvh;
}

.wiww-list-item {
    text-wrap: nowrap;
}

.wiww-list-accent {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 60%);
}



/*                          PROJECTS SECTION                         */

#projects {
    padding: 18dvh 4dvw;
}

.project-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.project-accent {
    width: 2dvw;
    height: 1px;
    background: #58A6FF;
}

.project-tiny-heading {
    font-family:'DM Mono',monospace;
    color: #58A6FF;
    letter-spacing: 3px;
    font-size: 10px;
}

.project-heading {
    margin: 2dvh 0 7dvh;
}

.project-heading h1 {
    font-family:'Syne',sans-serif;
    font-size: 55px;   
    color: #E8E8F0;   
    font-weight: 900;
}

.project-heading h1 span {
    font-weight: normal;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1dvw;
}

.projects-grid-block {
    position: relative;
    width: 30dvw;
    background: #131320;
    border: 1px solid #58a6ff1c;
    border-radius: 10px;
    padding: 4dvh 2dvw 3dvh;
}

.projects-bash {
    border-color: #34D3991c;
}

.projects-grid-block-category {
    color: #58A6FF;
    font-family:'DM Mono',monospace;
    font-size: 10px;    
    letter-spacing: 2px;
}

.projects-bash .projects-grid-block-category {
    color: #34D399;
}

.projects-grid-block-heading {
    color: #E8E8F0;    
    font-family:'Syne',sans-serif;
    font-weight: 700;
    margin: 2dvh 0;
}

.projects-grid-block-body {
    color: #6B6B8A;   
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 3dvh;
}

.projects-grid-block-tags {
    margin-top: 2dvh;  
}

.project-tags {
    padding: .5dvh 1dvh;
    border: 1px solid #58a6ff34;
    background: #58a6ff1c;
    color: #58A6FF;
    border-radius: 2px;
    margin-right: 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
}

.projects-bash .project-tags {
    border-color: #34D39934;
    background: #34D3991c;
    color: #34D399;
}

.project-link {
    margin-top: 1dvh;
}

.project-link a {
    color: #58a6ffb9;
    font-family:'DM Mono',monospace;
    text-underline-offset: 2px;
}

.projects-grid-block:first-of-type .projects-grid-block-tags {
    margin-top: 16dvh;
}

.projects-grid-block:nth-of-type(2) .projects-grid-block-tags {
    margin-top: 16dvh;
}

.projects-grid-block:nth-of-type(3) .projects-grid-block-tags {
    margin-top: 20dvh;
}

.projects-grid-block:nth-of-type(4) .projects-grid-block-tags {
    margin-top: 16dvh;
}

.projects-bash .project-link {
    margin-bottom: 2dvh;
}

.projects-grid-block:nth-of-type(5) .project-link {
    margin-top: 5dvh;
}

.projects-bash p {
    line-height: 4dvh;
    display: flex;
    align-items: center;
}

.projects-grid-block:nth-of-type(7) .projects-grid-block-tags {
    margin-top: 20dvh;
}

.projects-grid-block:hover {
    border-color: #58a6ff62;
    box-shadow: 0 0 10px rgba(88,166,255,0.15);
    transition: .5s ease;
}

.projects-bash:hover {
    border-color: #34D39962;
    box-shadow: 0 0 10px rgba(52, 211, 153, .15);
}

.projects-grid-block::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    height: 0%;
    width: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .01) 69%, rgba(255,255,255,0.02) 70%);
    transition: .2s ease-in-out;
    pointer-events: none;
}

.projects-grid-block:hover::after {
    height: 100%;
    width: 100%;
}


/*                          JOURNEY SECTION                          */

#journey {
    background: #050508;   
    padding: 25dvh 4dvw 18dvh;
}

.journey-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.journey-accent {
    width: 2dvw;
    height: 1px;
    background: #58A6FF;
}

.journey-tiny-heading {
    font-family:'DM Mono',monospace;
    color: #58A6FF;
    letter-spacing: 3px;
    font-size: 10px;
}

.journey-heading {
    margin: 2dvh 0 7dvh;
}

.journey-heading h1 {
    font-family:'Syne',sans-serif;
    font-size: 55px;   
    color: #E8E8F0;   
    font-weight: 900;
}

.journey-heading h1 span {
    font-weight: normal;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.journey-flex {
    display: flex;
    margin-top: 15dvh;
    justify-content: space-between;
}

.journey-flex-left {
    width: 42dvw;
    padding-top: 2dvh;
}

.journey-flex-middle-partition {
    position: relative;
    height: 50dvh;
    width: 2px;
    border-radius: 50%;
    background: linear-gradient(transparent, #58A6FF, #A78BFA 50%, transparent);
}

.journey-flex-middle-partition-circle-position-container {
    position: absolute;
}

.jfmpcpc-1 {
    top: 5dvh;
    left: -2px;
}

.jfmpcpc-2 {
    top: 15dvh;
    left: -12px;
}

.jfmpcpc-3 {
    left: -2px;
    top: 22dvh;
}

.jfmpcpc-4 {
    left: -12px;
    top: 35dvh;
}

.journey-flex-middle-partition-circle-border {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1px solid #58A6FF;
    background: #050508;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.4);
}

.journey-flex-middle-partition-circle {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #58A6FF;
}


.journey-flex-right {
    width: 42dvw;
    padding-top: 15dvh;
}

.journey-path-item {
    margin-bottom: 7dvh;
}

.journey-item-timeline {
    color: #6B6B8A;
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;
    font-size: 14px;
}

.journey-item-heading {
    font-family:'Syne',sans-serif;   
    color: #E8E8F0;
    font-weight: 700;
    margin: 1dvh 0;
}

.journey-item-info {
    color: #6B6B8A;
    font-size: 13px;
    line-height: 3dvh;
    font-family: "DM Sans", sans-serif;
}


/*                              CONTACT SECTION                      */

#contact {
    padding: 20dvh 4dvw;
    min-height: 110dvh;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45dvw;
    height: 60dvh;
    background: radial-gradient(
        ellipse,
        rgba(88, 166, 255, .05),
        transparent 70%
    );
    pointer-events: none;
}

.contact-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.contact-accent {
    width: 2dvw;
    height: 1px;
    background: #58A6FF;
}

.contact-tiny-heading {
    font-family:'DM Mono',monospace;
    color: #58A6FF;
    letter-spacing: 3px;
    font-size: 10px;
}

.contact-heading {
    margin: 2dvh 0 3dvh;
}

.contact-heading h1 {
    font-family:'Syne',sans-serif;
    font-size: 55px;   
    color: #E8E8F0;   
    font-weight: 900;
}

.contact-heading h1 span {
    font-weight: normal;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.contact-paragraph {
    color: #6B6B8A;   
    font-family: "DM Sans", sans-serif;
    width: 47%;
    font-size: 14px;
}

.contact-options {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 1dvh;
    margin-top: 7dvh;
}

.contact-options a {
    text-decoration: none;
}

.contact-individual-item {
    border: 1px solid #58a6ff11;
    background: #131320;
    height: 8dvh;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 1dvw;
    position: relative;
    overflow: hidden;
    transition: .5s ease-in-out;
}

.contact-individual-item:hover {
    border-color: #58a6ff62;
}

.contact-individual-item::before {
    content: '';
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgb(88, 166, 255, .1), transparent 90%);
    transition: .5s ease-in-out;
}

.contact-individual-item:hover::before {
    width: 100%;
}

.contact-individual-item img {
    width: 2dvw;
    height: 2dvw;
}

.contact-application {
    color: #58A6FF;
    font-family:'DM Mono',monospace;   
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 1dvw;
    margin-right: 15dvw;
    width: 5dvw;
}

.contact-address {
   color: #6B6B8A;
   font-size: 12px;
   font-family: "DM Sans", sans-serif;
   justify-self: end;
}


/*                              FOOTER                           */
footer {
    height: 12dvh;
    background: #050508;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4dvw;
}

.footer-name {
    font-family:'Syne',sans-serif;
    background: linear-gradient(90deg, #58A6FF, #A78BFA 80%);   
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.footer-copyright {
    color: #6B6B8A;
    display: flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
}

.footer-copyright img {
    width: 10px;
    height: 10px;
}

.footer-parting {
    color: #6B6B8A;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
}


@media (max-width: 768px) {
    .nav-middle {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-mobile-hamburger {
        display: block;
    }

    .nav-dropdown-close {
        display: none;
    }

    .nav-mobile-hamburger img {
        width: 7dvw;

    }

    .nav-logo {
        width: 20%;
    }

    .logo-t {
        width: 5dvw;
    }

    .logo-e-line {
        width: 5dvw;
    }

    #nav-dropdown:checked ~ .nav-dropdown-menu {
        display: block;
    }

    #nav-dropdown:checked ~ .nav-mobile-hamburger .nav-dropdown-open {
        display: none;
    }

    #nav-dropdown:checked ~ .nav-mobile-hamburger .nav-dropdown-close {
        display: block;
    }

    .nav-dropdown-menu {
        z-index: 10;
        position: fixed;
        inset: 0;
        top: 10dvh;
        height: 100dvh;
        width: 100%;
        background: #050508;
        overflow: hidden;
        padding: 5dvh 4dvw;
    }

    .nav-dropdown-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 3dvh;
    }

    .nav-dropdown-menu a {
        font-size: 20px;
        text-decoration: none;
        color: #6B6B8A;
        font-family:'DM Mono',monospace;
        letter-spacing: 2px;
    }

    .nav-dropdown-menu label {
        display: block;
        cursor: pointer;
    }

    .section {
        padding-left: 5dvw;
        padding-right: 5dvw;
    }

    .hero-blob {
        width: 60dvw;
        height: 30dvh;
        top: 70%;
        left: 50%;
    }

    .hero-circle-1 {
        bottom: 20dvh;
        right: 17dvw;
    }

    .hero-circle-2 {
        bottom: 26dvh;
        width: 10dvw;
        height: 10dvw;
        right: 15dvw;
    }

    .hero-circle-3 {
        width: 13dvw;
        height: 13dvw;
        right: 13.5dvw;
        bottom: 25.3dvh;
    }

    .orbital-ring-before::before {
        width: 4px;
        height: 4px;
        top: -2px;
        box-shadow: 0 0 8px #5280b6;;
    }

    .hero-circle-3 > .orbital-ring-before::before {
        width: 4px;
        height: 4px;
        top: -2px;
    }

    .floating-circle {
        bottom: 28dvh;
        right: 24dvw;
    }

    @keyframes floatingCircle {
        0%, 100% {
            transform: translateY(-1dvh);
        }

        50% {
            transform: translateY(1dvh);
        }
    }

    .hero-eyebrow {
        gap: 2dvw;
    }

    .hero-accent {
        width: 7dvw;
    }

    .hero-tiny-heading {
        font-size: 10px;
        line-height: 3dvh;
    }

    .hero-my-name h1 {
        font-size: 36px;    
        line-height: 6dvh;
    }

    .hero-focus-areas {
        margin-top: 3dvh;
    }

    .hero-focus-areas ul {
        gap: 7dvw;
        flex-wrap: wrap;
        text-wrap: nowrap;
        line-height: 1dvh;
    }

    .hero-focus-areas li:last-of-type {
        list-style: none;
        padding: 0;
    }
 
    .hero-writeup {
        width: 76%;
        padding-left: 2dvw;
    }

    .hero-buttons {
        gap: 2dvw;
        margin-top: 3dvh;
    }

    .hero-lets-talk {
        background: rgba(5, 5, 8, .6);       
    }

    .hero-clip {
        height: 10dvh;
    }

    .skills-marquee ul {
        gap: 4dvw;
    }

    .skills-marquee li {
        padding-left: 4dvw;
    }

    .about-clip {
        height: 10dvh;
    }

    .about-section {
        margin-top: 12dvh;
        display: block;
    }

    .about-section-eyebrow {
        gap: 3dvw;
    }

    .about-section-accent {
        width: 5dvw;
    }

    .about-section-content {
        width: 90dvw;
    }

    .about-section-tiny-heading {
        font-size: 14px;
    }

    .about-section-heading h1 {
        font-size: 32px;
        line-height: 5dvh;
    }

    .about-plaques {
        margin-right: 5px;
        margin-bottom: 7px;
    }

    .about-section-terminal {
        width: 90dvw;
    }

    .terminal-heading {
        padding-left: 2dvw;
    }

    .skills-eyebrow {
        gap: 3dvw;
    }

    .skills-accent {
        width: 5dvw;
    }

    .skills-tiny-heading {
        font-size: 12px;
    }

    .skills-heading h1 {
        font-size: 32px;
        line-height: 5dvh;
    }

    .skills-what-i-work-with-flex {
        flex-direction: column;
        gap: 2dvh;
    }

    .what-i-work-with-block {
        width: 100%;
    }

    .project-eyebrow {
        gap: 3dvw;
    }

    .project-accent {
        width: 5dvw;
    }

    .project-tiny-heading {
        font-size: 12px;
    }

    .project-heading h1 {
        font-size: 32px;
        line-height: 5dvh;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 3dvw;
    }

    .projects-grid-block {
        width: 100%;
    }

    .journey-eyebrow {
        gap: 3dvw;
    }

    .journey-accent {
        width: 5dvw;
    }

    .journey-tiny-heading {
        font-size: 12px;
    }

    .journey-heading h1 {
        font-size: 32px;
        line-height: 5dvh;
    }

    .journey-flex {
        margin-top: 5dvh;
        flex-direction: column;
    }

    .journey-flex-left {
        width: 100%;
    }

    .journey-flex-middle-partition {
        display: none;
    }

    .journey-path-item {
        border-left: 2px solid rgba(88,166,255,0.35);
        margin-left: 2dvw;
        padding-left: 2dvw;
    }

    .journey-flex-right {
        width: 100%;
        padding-top: 0;
    }

    #contact::before {
        height: 30dvh;
    }

    .contact-eyebrow {
        gap: 3dvw;
    }

    .contact-accent {
        width: 5dvw;
    }

    .contact-tiny-heading {
        font-size: 12px;
    }

    .contact-heading h1 {
        font-size: 32px;       
        line-height: 5dvh;
    }

    .contact-paragraph {
        width: 100%;
    }

    .contact-options {
        width: 100%;
    }

    .contact-individual-item {
        padding: 0 2dvw;
    }

    .contact-individual-item img {
        width: 5dvw;
        height: 5dvw;
    }

    .contact-application {
        margin-left: 2dvw;
        margin-right: 20dvw;
    }

    footer {
        height: 10dvh;
        flex-direction: column;
        gap: 5px;
        padding: 2dvh 4dvw;
    }

    .footer-name {
        font-size: 11px;
        text-wrap: nowrap;
    }

    .footer-copyright {
        font-size: 9px;
    }

    .footer-copyright img {
        width: 7px;
        height: 7px;
    }

    .footer-parting {
        font-size: 9px;
    }
}