/* ========== ContactUsPage.kt ========== */

/* fillMaxSize + Arrangement.Center + CenterHorizontally. */
.contact-page-shell {
    min-height: calc(100vh - 64px); /* full height minus TopBar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    box-sizing: border-box;
}

/* Column(spacedBy implicit, CenterHorizontally) with 16dp padding. */
.contact-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 400px;
    text-align: center;
}

/* ContactEmailIcon sits above the title — 32dp gap matches Spacer(32dp) before the button. */
.contact-page-content svg {
    margin-bottom: 8px;
    opacity: 0.7;
}

/* "Have questions or feedback?" — titleLarge. */
.contact-page-title {
    color: #2e2c28;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* "We'd love to hear from you…" — bodyMedium, onSurfaceVariant. */
.contact-page-body {
    color: rgba(46, 44, 40, 0.7);
    font-size: 14px;
    margin: 0 0 24px; /* matches Spacer(32dp) minus the 8dp gap already on the column */
}


/* "support@yogaaicoach.com" — bodySmall, onSurfaceVariant. */
.contact-email-address {
    color: rgba(46, 44, 40, 0.6);
    font-size: 12px;
    margin: 8px 0 0;
}
