/* ============================================================
   TERMINAL SECTION (Hire Me)
   ============================================================ */
.hire-terminal-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(0, 210, 255, 0.02));
}

.terminal-container {
    max-width: 800px;
    margin: 0 auto;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.terminal-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0, 210, 255, 0.3);
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #111;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots .red { background: #ff5f56; }
.terminal-dots .yellow { background: #ffbd2e; }
.terminal-dots .green { background: #27c93f; }

.terminal-title {
    flex-grow: 1;
    text-align: center;
    color: #999;
    font-family: 'Consolas', monospace;
    font-size: 0.85rem;
    margin-right: 56px; /* Balance the dots width */
}

.terminal-body {
    padding: 25px;
    position: relative;
}

.terminal-body pre {
    margin: 0;
    white-space: pre-wrap;
}

.terminal-body code {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #e6e6e6;
}

.terminal-body .prompt {
    color: #27c93f;
    font-weight: bold;
    margin-right: 10px;
}

.terminal-run-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 8px 20px;
    font-family: 'Consolas', monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.terminal-run-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-color);
}

/* Success Message Overlay */
.terminal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

.terminal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.terminal-overlay .success-icon {
    font-size: 3rem;
    color: #27c93f;
    margin-bottom: 15px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.terminal-overlay h3 {
    color: #fff;
    font-family: 'Consolas', monospace;
    margin-bottom: 20px;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
