/* Contact Page - Unique Element Styles Only */

/* Hide scrollbar */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 16px;
}

.contact-form-wrapper {
    background: rgba(13, 17, 23, 0.8);
    padding: 24px;
    border: 3px solid #3d2e0a;
    box-shadow: 2px 2px 0 #3d2e0a, 0 0 10px rgba(0,0,0,0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form .form-group label {
    color: #d4a847;
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: #0d1117;
    color: #b1bac4;
    border: 3px solid #3d2e0a;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #d4a847;
    box-shadow: 0 0 8px rgba(212, 168, 71, 0.4);
    color: #c9d1d9;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #6e7681;
}

.contact-form .form-group textarea {
    resize: vertical;
    max-height: 200px;
    min-height: 120px;
}

.contact-submit {
    background: linear-gradient(135deg, #d4a847 0%, #8a6820 100%);
    color: #0d1117;
    border: 3px solid #3d2e0a;
    padding: 12px 24px;
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 4px 0 #3d2e0a;
    margin-top: 8px;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #3d2e0a;
}

.contact-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 #3d2e0a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-section {
    background: rgba(13, 17, 23, 0.8);
    padding: 20px;
    border: 3px solid #3d2e0a;
    box-shadow: 2px 2px 0 #3d2e0a, 0 0 10px rgba(0,0,0,0.5);
}

.info-section h3 {
    color: #d4a847;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.info-section p {
    color: #b1bac4;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.info-section a {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-section a:hover {
    color: #79c0ff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .info-section {
        padding: 16px;
    }

    .contact-form .form-group label {
        font-size: 8px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 13px;
        padding: 10px;
    }

    .contact-submit {
        font-size: 10px;
        padding: 10px 20px;
    }

    .info-section h3 {
        font-size: 11px;
    }

    .info-section p {
        font-size: 13px;
    }
}
