/* Contact Page Specific Styles */
.contact-section {
    margin: 30px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    width: 350px;
    gap: 40px;
    margin: 0 auto;      /* top/bottom 0 and 60px, auto left/right */
    justify-items: center;    /* center each grid item horizontally */
}

.contact-info {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 30px;
    border-left: 3px solid var(--primary-color);
}

.contact-info h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.contact-method {
    margin-bottom: 25px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.contact-method h3 i {
    margin-right: 10px;
}

.contact-method p, .contact-method a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-left: 25px;
}

.contact-method a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 30px;
}

.contact-form img {
    height: 500px;
    border-radius: 4px;
}

.contact-form h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 255, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 12px 25px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

.social-media-section {
    margin-top: 50px;
    text-align: center;
    padding-bottom: 30px;
}

.social-media-section h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-media-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.social-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-media-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-media-card:hover .social-media-icon {
    color: var(--primary-color);
}

.social-media-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.social-media-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-media-link:hover {
    background-color: rgba(255, 0, 255, 0.2);
    color: var(--text-color);
}
.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-info h2, .contact-form h2, .social-media-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-method h3 {
        font-size: 1.1rem;
    }
    
    .contact-method p, .contact-method a {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .social-media-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info, .contact-form {
        padding: 20px;
    }
}