/* Base Variables & Reset */
:root {
    --bg-color: #0d1117;
    --text-main: #c9d1d9;
    --accent-color: #00ff9d; /* Neon Cyber Green */
    --accent-glow: rgba(0, 255, 157, 0.4);
    --secondary-bg: #161b22;
    --font-mono: 'Fira Code', 'Share Tech Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-mono);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 50px;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.greeting {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

/* Typing Effect CSS */
.typing-container {
    font-size: 2rem;
    height: 3rem;
    margin-bottom: 2.5rem;
    color: #8b949e;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--accent-color);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Social Links */
.socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-bg);
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link .icon {
    color: var(--accent-color);
    margin-right: 10px;
}

.social-link:hover {
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateX(10px);
}

/* Sections */
main {
    padding: 0 5%;
}

section {
    padding: 6rem 0;
    min-height: 60vh;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: rgba(0, 255, 157, 0.2);
    margin-left: 20px;
}

/* Terminal Box Aesthetic */
.terminal-box {
    background: var(--secondary-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.terminal-header {
    background: #090c10;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-body {
    padding: 3rem;
}

.coming-soon {
    color: #8b949e;
    font-style: italic;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

footer {
    text-align: center;
    padding: 2rem;
    color: #8b949e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .typing-container { font-size: 1.2rem; }
    .nav-links { display: none; } /* Add a hamburger menu later if needed */
    section { padding: 4rem 0; }
}
