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

:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --accent-green: #50fa7b;
    --accent-blue: #8be9fd;
    --accent-purple: #bd93f9;
    --border: #44475a;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: "JetBrains Mono", "Fira Code", "Source Code Pro", monospace;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 2rem 0;
    border-bottom: 2px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-green);
}

.prompt {
    color: var(--accent-blue);
}

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

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

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

nav a::before {
    content: "# ";
    color: var(--accent-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.terminal-window {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    overflow: hidden;
}

.terminal-header {
    background: var(--border);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.close {
    background: #ff5555;
}

.btn.minimize {
    background: #f1fa8c;
}

.btn.maximize {
    background: var(--accent-green);
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.terminal-content {
    padding: 2rem;
    text-align: left;
}

.terminal-line {
    display: flex;
    margin-bottom: 0.5rem;
}

.prompt-symbol {
    color: var(--accent-blue);
    margin-right: 0.5rem;
}

.command {
    color: var(--accent-green);
}

.output {
    color: var(--text-primary);
    margin-left: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--accent-purple);
    margin-bottom: 2rem;
}

/* Services */
.services {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-green);
    font-size: 2rem;
}

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

.service-card {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-blue);
    /* transform: translateY(-5px); */
}

.service-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "▸";
    color: var(--accent-green);
    position: absolute;
    left: 0;
}

/* Contact */
.contact {
    padding: 4rem 0;
    text-align: center;
}

.contact h2 {
    color: var(--accent-green);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-info {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-item .label {
    color: var(--accent-blue);
    min-width: 80px;
    margin-right: 1rem;
}

.contact-item a {
    color: var(--accent-green);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

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

    .terminal-content {
        padding: 1rem;
    }

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

/* Subtle animations */
@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.cursor::after {
    content: "|";
    color: var(--accent-green);
    animation: blink 1s infinite;
}