/* Contact Page Styles */

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: white;
}

/* Remove the old overlay structure's absolute positioning since the SVG is gone */
.contact-text-overlay {
    /* Just a container now */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'MyArialNarrow', 'Arial Narrow', sans-serif;
    font-weight: normal;
}

.contact-text-overlay p {
    font-family: 'MyArialNarrow', 'Arial Narrow', sans-serif;
    font-size: 50px;
    /* Increased size */
    line-height: 60px;
    /* Increased line-height */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    /* Matches -50 tracking */
    transform: scaleY(1.47);
    /* Matches 147% vertical scale */
    transform-origin: center;
    margin-bottom: 12px;
    /* Compensate for vertical scaling */
}

.contact-text-overlay br {
    display: block;
    margin-bottom: 40px;
    /* Increased to separate sections */
    content: "";
}

/* Mobile Contact */
@media (max-width: 600px) {
    .contact-content {
        max-width: 90%;
        padding: 0 15px;
    }

    .contact-text-overlay p {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 6px;
        transform: scaleY(1.3);
    }

    .contact-text-overlay br {
        margin-bottom: 20px;
    }

    .contact-text-overlay {
        gap: 4px;
    }
}