:root {
    --neon-green: #17DEE2;
    --bright-neon-green: #05F301;
    --bright-neon-green-shadow: #05f3017a;
    --neon-purple: #9D00FF;
    --neon-pink: #FF00A0;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --text-primary: #F0F0F0;
    --text-secondary: #B0B0B0;
    --transition: all 0.3s ease;
    --glow-intensity: 0.4;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    height: 100svh;
    width: 100svw;
    background: var(--bg-dark);
    overflow: scroll;
    scroll-snap-type: y proximity;
    scroll-padding-top: 18svh;
}

/* MOUSE MOVE PARTICLES */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--bright-neon-green);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1500;
}

::-webkit-scrollbar {
    scroll-behavior: smooth;
    width: .5svh;
    height: 0px;

}

::-webkit-scrollbar-thumb {
    background: var(--bright-neon-green);
    border-radius: .25svh;
}

.info-lower::-webkit-scrollbar,
.portfolio-grid::-webkit-scrollbar,
.services-lower::-webkit-scrollbar {
    scroll-behavior: smooth;
    width: 0;
}

/* FONT */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    background: linear-gradient(30deg, var(--neon-green), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--text-primary)
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), transparent);
}

p {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 65ch;
}

em {
    font-style: normal;
    color: var(--neon-pink);
    font-weight: bold;
}

/* Buttons */
.cta {
    height: 59.863px;
    width: 170px;
    filter: drop-shadow(0 .5svh .5svh var(--bright-neon-green-shadow));
    transition: all .1s ease-in-out;
}

.cta:active {
    filter: drop-shadow(0 0 0);
    transform: translateY(-.25svh);
}

.cta:hover{
    transform:scaleX(1.05)
}

@keyframes grow {

    0%,
    100% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(1.1)
    }
}

/* LANDING */
.landing-container {
    background: var(--bg-darker);
    z-index: 1500;
    height: 100svh;
    width: 100svw;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-logo {
    filter: drop-shadow(0 2svh 2svh var(--neon-green));
    width: 43.75%;
    height: auto;
}

.loader {
    position: absolute;
    bottom: 15%;
    width: fit-content;
    font-weight: bold;
    font-family: fantasy;
    font-size: 30px;
    background: linear-gradient(90deg, var(--bg-darker) 50%, var(--bg-darker) 0) right/200% 100%;
    animation: l21 3s infinite linear;

}

.loader::before {
    content: "Let's Get Weird...";
    color: #0000;
    padding: 0 5px;
    background: inherit;
    background-image: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes l21 {
    100% {
        background-position: left
    }
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    height: 18svh;
    width: 99.8%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.nav-image {
    position: relative;
    top: 2svh;
    left: 2svh;
    width: 20svw;
    height: 20svh;
    filter: drop-shadow(0 1svh 1svh var(--neon-green));
    transition: filter 1s ease-in-out;
}

.nav-image:hover {
    filter: drop-shadow(0 1svh 1svh var(--neon-pink))
}

.navigation {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-right: 2svh;
}

.navigation a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-right: 2svh;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--neon-green);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    text-align: center;
}

.mobile-menu ul {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--neon-green);
}

section {
    width: 100%;
    height: 82%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2svh;
    position: relative;
    top: 0;
    scroll-snap-align: start;
}

section div {
    height: 90%;
    width: 100%;
}

/* HERO */
.hero {
    height: 100%;
    padding-top: 20svh;

}

.hero-lower {
    background-image: url(/Images/heroBackground.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.hero-lower aside,
.about-lower aside {
    height: fit-content;
    width: 30svw;
    position: absolute;
    bottom: 3svh;
    left: 35svw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.hero-lower aside p,
.about-lower aside p {
    color: white;
    text-shadow: 0 .25svh .25svh black;
}

.hero-lower aside .cta,
.about-lower aside .cta {
    margin-top: 1svh;
}

/* SERVICES */
.services-lower {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background: var(--bg-darker);
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.card-outer {
    background-image: conic-gradient(from var(--angle), var(--neon-purple), var(--neon-pink), var(--neon-purple));
    height: 90%;
    width: 30%;
    animation: 10s spin linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
}

@keyframes spin {
    to {
        --angle: 360deg
    }
}

.card-outer:hover {
    filter: drop-shadow(0 1svh 1svh var(--neon-green));
    transform: scaleY(1.1)
}

.card {
    width: 99%;
    height: 99%;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 2svh;
    transition: all 1s ease-in-out;
}

.card-img {
    width: 90%;
    height: auto;
}

.card .cta {
    width: fit-content;
}

#app-card-inner2 article {
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation:fadeIn 2s linear 1;
}

/* PORTFOLIO */
.portfolio-lower {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   position:relative;
   top:-3svh;
   height:69svh;
}

.portfolio-grid {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    overflow: auto;
}

.portfolio-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 45%;
    width: 45%;
   
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, var(--neon-purple), transparent);
    color: var(--neon-green);
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.8;
    color: var(--neon-pink);
}

/* ABOUT */
.about {
    background: var(--bg-darker);
}

.about-lower {
    background-image: url(/Images/aboutBackgroundGray.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about figure {
    background: white;
    width: 35%;
    height: 100%;
    position: relative;
    left: 32.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-robot {
    width: 100%;
    height: 100%;
}

/* meet modal */
.modal-outer {
    height: 78%;
    width: 50%;
    position: absolute;
    left: 25%;
    top: 16svh;
    z-index: 500;
    background-image: conic-gradient(from var(--angle), var(--neon-purple), var(--neon-pink), var(--neon-purple));
    animation: 10s spin linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
    animation:fadeIn 2s linear 1;
}

@keyframes fadeIn{
    from{opacity:0;}
}
@keyframes fadeOut{
    to{opacity:0;}
}

.meet-modal {
    height: 99%;
    width: 99%;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2svh;
}

.meet-img {
    width: 60%;
    height: auto;
    border: .25svh solid var(--neon-green);

}

.meet-modal .cta {
    width: fit-content;
}

/* info */
.info-lower{
    background:var(--bg-darker);
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    overflow-y:scroll;
}

.info-post{
width:100%;
height:fit-content;
display:flex;
flex-direction: column;
align-items: center;
margin-bottom: 4svh;
}
.info-post h3{
    margin:2svh;
    color:var(--neon-green)
}
.info-image{
    float:left;
    width:300px;
    height:200px;
    margin-right:2svh;
}
hr{
    width:100%;
    margin:1svh;
}

/* FORM */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.glow-input {
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glow-input:focus {
    outline: none;
    border-bottom-color: var(--neon-green);
    box-shadow: 0 2px 0 var(--neon-green);
}

form button {
    background: var(--bg-darker);
    border: none;
    position: relative;
    left: 35%
}

.contact-lower figure {
    width: 25%;
    position: absolute;
    left: 37.5svw;
    display: flex;
    justify-content: center;
    margin-top: 5svh;
}

.footer-image {
    width: 100%;

    transition: filter 1s ease-in-out;
    animation: flasher 4s linear infinite;
}

@keyframes flasher {

    0%,
    100% {
        filter: drop-shadow(0 1svh .5svh var(--neon-pink));
    }

    50% {
        filter: drop-shadow(0 1svh .5svh var(--neon-purple));
    }
}

/* FOOTER */
.sitemap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1000;
}

.sitemap-lower {
    height: 80%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.footer-links h3,
.footer-social h3 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons img {
    width: 5svh;
    height: 5svh;
    fill: var(--text-primary);
    transition: all 1s ease-in-out;
    border-radius: 1svh;
}

.social-icons a img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 .5svh .5svh var(--neon-purple))
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* MEDIA QUERIES HEIGHT */
@media(min-height:1000px) {
    section {
        height: 60%
    }
}

@media(max-height:689px) {

    .hero-lower aside,
    .about-lower aside {
        bottom: 5svh;
    }

}

@media(max-height:500px) {
    section {
        height: 150%;
    }

    .hero {
        height: 200%
    }
}

/* MEDIA QUERIES WIDTH*/
@media(max-width:800px) {
    .footer-image {
        visibility: hidden;
    }
}

@media (max-width: 760px) {

    .navigation {
        display: none;
    }

    .nav-image {
        width: 45%;
        height: auto
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero */
    .hero-lower aside,
    .about-lower aside {
        height: fit-content;
        width: 50svw;
        position: absolute;
        bottom: 10svh;
        left: 25svw;

    }

    /* SERVICES */
    .services-lower {
        flex-direction: column;
        overflow-y: scroll;
    }

    .card-outer {
        height: 100%;
        width: 80%;
        margin: 2svh 0;
    }

    .card-outer:hover {
        transform: scaleX(1.1);
    }

    #app-card-inner2 article {
        height: 80%;
        width: 100%;
        text-align: left;
    }

    /* About */
    .modal-outer {
        width: 90%;
        left: 5%;
    }

    .about figure {
        background: white;
        width: 50%;
        height: 100%;
        position: relative;
        left: 25%;

    }
}

@media(max-width:600px) {
    .landing-logo {

        width: 75%;
    }
}

@media(max-width:499px) {
    .nav-image {
        width: 60%;
        height: auto
    }

}

@media(max-width:450px) {
    .about figure {
        background: white;
        width: 100%;
        height: 100%;
        position: relative;
        left: -5svw
    }
}

@media(max-width:400px){
    .info-image{
       visibility: hidden;
       width:0;
       height:0;
       
    }
}