/* ========= BASE (desktop / tablet) ========= */

.contact-page-container {
    min-height: calc(100vh - 260px);
}

.contact-title {
    font-family: 'Suisse Intl Mono', monospace;
    font-weight: 400;
    font-size: 56px;
    letter-spacing: -0.15em;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
}

.contact-subtitle {
    font-family: 'Suisse Intl', sans-serif;
    font-size: 20px;
    color: #f3f3f3;
    text-align: center;
    letter-spacing: -0.03em;
    margin-top: 8px;
    opacity: 0.9;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
}

/* shared input / textarea style */
.contact-field-style {
    backdrop-filter: blur(0px);
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 400;
    letter-spacing: -0.03em;
}

/* submit button */
.contact-submit-btn {
    background-color: #f3f3f3;
    font-family: 'Suisse Intl Mono', monospace;
    font-weight: 400;
    padding: 11px 30px;
    text-transform: lowercase;
    letter-spacing: -0.2em;
    border: none;
    cursor: pointer;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
}

/* feedback messages */
.contact-feedback {
    font-family: 'Suisse Intl Mono', monospace;
    font-size: 26px;
    letter-spacing: -0.1cm;
    text-align: center;
    margin-top: 20px;
}

.contact-feedback.success {
    color: #f3f3f3;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
}

.contact-feedback.error {
    color: #ff6b6b;
    /* Light red for errors */
}

/* ========= MOBILE TWEAKS ========= */

@media (max-width: 768px) {

    /* give a bit more breathing room from header,
     and keep it feeling centred */
    .contact-page-container {
        padding-top: 76px !important;
        padding-bottom: auto;
    }

    /* shrink title + relax letter-spacing so it doesn’t touch edges */
    .contact-title {
        font-size: 40px;
        letter-spacing: -0.10em;
        line-height: 1.1;
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
        filter: blur(0px);
    }

    /* labels: slightly smaller on phone */
    .contact-form label {
        font-size: 18px;
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0);
        filter: blur(0px);
        /* was 26px via Tailwind utility */
    }

    /* inputs + textarea: a bit shorter and smaller font */
    .contact-field {
        padding: 10px 14px;
        /* override px-5 py-3 feel */
        font-size: 15px;
        /* instead of text-lg (~18px) */
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
        filter: blur(0px);
    }

    .contact-field-style {
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0);
        filter: blur(0px);
    }

    textarea.contact-field {
        min-height: 150px;
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0);
        filter: blur(0px);
    }

    /* button a bit smaller too */
    .contact-submit-btn {
        padding: 9px 22px;
        font-size: 15px;
        letter-spacing: -0.1em;
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0);
        filter: blur(0px);
    }

    .contact-subtitle {
        font-size: 16px;
        text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
        text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
        filter: blur(0px);
    }

    .contact-feedback {
        font-size: 18px;
        /* smaller for SE-sized screens */
        letter-spacing: -0.05em;
        margin-top: 16px;
        padding: 0 12px;
        /* prevents text touching edges */
        line-height: 1.4;
    }
}
