@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

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

:root {
    --bg-primary: #000000;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #00ff00;
    --accent-alt: #00ccff;
    --border: #333333;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
}

main {
    min-height: calc(100vh - 100px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: normal;
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    color: var(--accent-alt);
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stack Section */
.stack {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stack-item {
    padding: 1.5rem;
    border: 1px solid var(--border);
    background-color: var(--bg-primary);
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: border-color 0.1s;
}

.stack-item:hover {border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3); /* Green Glow */
    transform: translateY(-2px); /* Slight lift */
}

/* Projects Section */
.projects {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    border: 1px solid var(--border);
    padding: 2rem;
    background-color: var(--bg-primary);
    transition: border-color 0.1s;
}

.project-card:hover {
    border-color: var(--accent-alt);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3); /* Blue Glow */
    transform: translateY(-2px);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.project-badge {
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-domain {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-alt);
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
        font-size: 14px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stack-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 1.5rem;
    }
}
