/* CONTACT TERMINAL STYLES */
/* Extends kraemer.css with contact-specific styling */

.contact-terminal-container {
    max-width: 1000px;
    margin: 120px auto 0;
    padding: 20px;
}

.terminal-window {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
}

.terminal-header {
    background: #001100;
    border-bottom: 1px solid #00ff00;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.terminal-btn:hover {
    opacity: 0.7;
}

.terminal-btn.close {
    background: #ff5f56;
}

.terminal-btn.minimize {
    background: #ffbd2e;
}

.terminal-btn.maximize {
    background: #27ca3f;
}

.terminal-title {
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    font-weight: bold;
}

.terminal-body {
    padding: 20px;
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.4;
    max-height: 60vh;
    overflow-y: auto;
}

.terminal-content {
    margin-bottom: 20px;
}

.terminal-line {
    margin-bottom: 8px;
    min-height: 20px;
}

.terminal-form {
    margin-top: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.terminal-label {
    display: block;
    color: #00ff00;
    margin-bottom: 8px;
    font-weight: bold;
}

.terminal-input, .terminal-textarea {
    width: 100%;
    background: #000;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 8px 12px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.terminal-input:focus, .terminal-textarea:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
}

.terminal-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.terminal-submit, .terminal-cancel {
    background: #001100;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 10px 20px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.terminal-submit:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.terminal-cancel:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

/* Contact buttons group styling */
.contact-buttons-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

/* Remove the three dots from terminal window */
.terminal-window::before {
    display: none !important;
}

/* Responsive design */
@media (max-width: 480px) {
    .contact-terminal-container {
        margin: 100px auto 0;
        padding: 10px;
    }
    
    .terminal-body {
        padding: 15px;
        font-size: 12px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .terminal-submit, .terminal-cancel {
        width: 100%;
    }
}
