/* Contact Page Styles */

.contact-page {
    background-color: #1a1a1a;
    min-height: 100vh;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dirty-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

/* Terminal Form Styling */
.terminal-form {
    background-color: #0d0d0d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.terminal-header {
    background-color: #1c1c1c;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-buttons {
    display: flex;
    margin-right: 1.5rem;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.terminal-buttons span:nth-child(1) {
    background-color: #ff5f57;
}

.terminal-buttons span:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-buttons span:nth-child(3) {
    background-color: #28ca41;
}

.terminal-title {
    color: var(--dirty-gold);
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.terminal-body {
    padding: 2rem;
    font-family: 'Courier Prime', monospace;
}

.terminal-line {
    color: #0f0;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dirty-gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #1c1c1c;
    border: 1px solid #444;
    color: #ddd;
    font-family: 'Courier Prime', monospace;
    border-radius: 4px;
    resize: vertical;
}

.form-group textarea {
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dirty-gold);
    box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.2);
}

.submit-button {
    background-color: var(--blood-red);
    color: #fff;
    border: 1px solid var(--dirty-gold);
    padding: 0.8rem 2rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.submit-button:hover {
    background-color: var(--dirty-gold);
    color: #000;
}

.success-message {
    color: #0f0;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(0, 100, 0, 0.2);
    border: 1px solid #0f0;
    border-radius: 4px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .terminal-body {
        padding: 1.5rem;
    }
    
    .terminal-buttons span {
        width: 10px;
        height: 10px;
    }
    
    .submit-button {
        width: 100%;
    }
}