/* contact.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.simple-nav { padding: 20px; }
.simple-nav a { color: #FFD700; text-decoration: none; font-weight: bold; }

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

.intro { text-align: center; margin-bottom: 50px; }
.intro h1 { font-size: 3rem; color: #fff; }
.subtitle { color: #888; letter-spacing: 2px; text-transform: uppercase; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

/* Form Styling */
.form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; color: #aaa; font-size: 0.9rem; }

input, select, textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #FFD700; /* Gold focus glow */
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover { background: #fff; transform: translateY(-2px); }

/* Connect Section */
.connect-info h3 { margin-bottom: 20px; color: #fff; }
.info-item { margin-bottom: 20px; }
.info-item span { color: #FFD700; font-size: 0.8rem; text-transform: uppercase; }

.social-links a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.2s;
}

.social-links a:hover { color: #fff; padding-left: 5px; }

footer { text-align: center; padding: 60px 0; color: #444; font-size: 0.8rem; }

