/* Contact Page Specific Styles */

.contact-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dm-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.dm-message {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ccc;
    text-align: center;
}

.dm-link {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 1rem 3rem;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.dm-link:hover {
    background-color: #fff;
    color: #000;
}

/* Update nav items to handle links vs spans */
.nav-item {
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #666;
}