@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Space+Grotesk:wght@300;500&display=swap');

:root {
    --cyan: #00f2ff;
    --magenta: #ff00ff;
    --bg-dark: #020204;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    cursor: none;
    user-select: none;
}

body {
    background: var(--bg-dark);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    overflow: hidden;
    height: 100vh;
}

#bg { position: fixed; top: 0; left: 0; z-index: 1; outline: none; }

/* Loader */
#loader {
    position: fixed; inset: 0; background: var(--bg-dark); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    font-family: 'Syncopate'; font-size: 0.7rem; letter-spacing: 5px;
}

/* Nav & Mobile Menu */
nav {
    position: fixed; top: 0; width: 100%; padding: 30px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
}

.logo { font-family: 'Syncopate'; font-size: 1.2rem; letter-spacing: 5px; pointer-events: none; }
.nav-links { display: flex; gap: 30px; }
.nav-links button {
    background: none; border: none; color: white; font-family: 'Syncopate';
    font-size: 0.65rem; letter-spacing: 2px; transition: 0.4s; cursor: pointer;
}
.nav-links button:hover { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }

.menu-toggle { display: none; font-family: 'Syncopate'; font-size: 0.7rem; color: var(--cyan); cursor: pointer; }

/* Sections */
section {
    position: absolute; inset: 0; padding: 0 10%;
    display: flex; align-items: center;
    opacity: 0; visibility: hidden; z-index: 5;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

section.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }

.hero h1 { font-family: 'Syncopate'; font-size: clamp(2.2rem, 10vw, 6rem); line-height: 0.9; margin-bottom: 20px; }
.tagline { letter-spacing: 4px; opacity: 0.6; font-size: 0.8rem; }

.glass-panel {
    background: var(--glass); backdrop-filter: blur(20px);
    border: 1px solid var(--border); padding: clamp(20px, 5vw, 60px);
    max-width: 650px; border-left: 4px solid var(--cyan);
}

.skill-matrix {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px; margin-top: 30px;
}

.skill {
    padding: 12px; border: 1px solid var(--border);
    text-align: center; font-size: 0.7rem; letter-spacing: 1px; transition: 0.3s;
}
.skill:hover { background: var(--cyan); color: black; }

/* Cursor UI */
#cursor { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10001; }
#cursor-blur { width: 40px; height: 40px; border: 1px solid var(--cyan); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; }

.overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 2;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), radial-gradient(circle, transparent 40%, rgba(0,0,0,0.5) 100%);
    background-size: 100% 4px, 100% 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #cursor, #cursor-blur { display: none; }
    * { cursor: auto !important; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 80%;
        background: rgba(2, 2, 4, 0.98); flex-direction: column;
        justify-content: center; align-items: center; transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .nav-links.active { right: 0; }
    .menu-toggle { display: block; }
    .glass-panel { padding: 30px 20px; }
}

.email-link{
    color: rgb(189, 187, 187);
}
