/* Terminal-inspired styles */
:root {
    --bg-color: #1e1e1e;
    --text-color: #e0e0e0;
    --green: #4EC9B0;
    --blue: #569CD6;
    --purple: #C586C0;
    --yellow: #DCDCAA;
    --orange: #CE9178;
    --red: #F44747;
    --comment: #6A9955;
    --highlight: #FFD700;
}

body {
    background-color: #121212;
    font-family: 'Source Code Pro', monospace;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.terminal {
    width: 100%;
    max-width: 900px;
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background-color: #3c3c3c;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 12px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-btn.red { background-color: var(--red); }
.terminal-btn.yellow { background-color: #FF9F1C; }
.terminal-btn.green { background-color: #4CAF50; }

.terminal-title {
    color: #b0b0b0;
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: center;
}

.terminal-body {
    padding: 1.5rem;
}

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

.prompt {
    color: var(--green);
    margin-right: 10px;
    font-weight: bold;
}

.command {
    color: var(--blue);
}

.output {
    margin-bottom: 2rem;
}

h1, h2 {
    color: var(--blue);
    margin: 1rem 0;
}

.keyword {
    color: var(--blue);
}

.var-name {
    color: var(--green);
}

.property {
    color: var(--purple);
}

.string {
    color: var(--orange);
}

.highlight {
    color: var(--highlight);
    font-weight: bold;
}

.comment {
    color: var(--comment);
    font-style: italic;
}

.method {
    color: var(--yellow);
}

.bracket {
    color: var(--blue);
}

.indent {
    margin-left: 2rem;
}

.process-list {
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 0.8rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 1rem;
}

.skill-tag {
    background-color: #252525;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.form-line .input {
    margin-left: 10px;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* New CTA Elements */
.hero-cta {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--green);
}

.cta-button {
    margin-top: 1.5rem;
    text-align: center;
}

.cta-button a {
    display: inline-block;
    background-color: var(--green);
    color: #121212;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background-color: var(--highlight);
    transform: translateY(-2px);
    text-decoration: none;
}

.highlight-box {
    background-color: #252525;
    border-left: 4px solid var(--orange);
    padding: 1rem;
    margin-top: 1rem;
    font-weight: bold;
}

/* Animations */
.blinking {
    animation: blink 1s step-end infinite;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { color: var(--blue); }
    50% { color: var(--highlight); }
    100% { color: var(--blue); }
}

.typing-animation {
    margin-top: 2rem;
    display: inline-block;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--green);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .cta-button a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}