/* Contact page styles */

.contact-header {
    padding-top: 140px;
    padding-bottom: 32px;
}

.contact-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}

.contact-email {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--charcoal);
    text-decoration: none;
    display: block;
    margin: 40px 0;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: var(--plutonium-yellow);
}

.contact-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.contact-social a:hover {
    color: var(--plutonium-yellow);
}
