/*
 * Robin.fm Email Styles
 * These styles are auto-inlined by premailer-rails
 *
 * Brand Colors:
 * - Primary Yellow: #FFCC00
 * - Gunmetal Dark: #2A2B35
 * - Body Text: #4B5563
 * - Muted Text: #6B7280
 * - Light Text: #9CA3AF
 */

/* Base email styles */
body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.email-wrapper {
  background-color: #f4f4f5;
}

.email-container {
  max-width: 600px;
  width: 100%;
}

/* Header */
.email-header {
  background-color: #2A2B35;
  border-radius: 8px 8px 0 0;
  padding: 24px 32px;
  text-align: center;
}

.email-logo {
  display: block;
  margin: 0 auto;
}

.email-brand {
  color: #FFCC00;
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0 0 0;
  letter-spacing: -0.5px;
}

/* Yellow accent bar */
.email-accent {
  background-color: #FFCC00;
  height: 4px;
}

/* Content */
.email-content {
  background-color: #ffffff;
  padding: 40px 32px;
}

/* Footer */
.email-footer {
  background-color: #2A2B35;
  border-radius: 0 0 8px 8px;
  padding: 24px 32px;
  text-align: center;
}

.email-footer-text {
  color: #9CA3AF;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.email-footer-subtext {
  color: #6B7280;
  font-size: 12px;
  margin: 12px 0 0 0;
}

/* Typography */
.email-heading {
  color: #2A2B35;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.email-text {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.email-text-muted {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 24px 0 0 0;
}

.email-text-small {
  color: #9CA3AF;
  font-size: 13px;
  line-height: 1.6;
  margin: 24px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.email-highlight {
  color: #2A2B35;
  font-weight: 600;
}

/* Buttons */
.email-button-wrapper {
  margin: 32px 0;
}

.email-button {
  background-color: #FFCC00;
  border-radius: 6px;
}

.email-button a,
a.email-button-link {
  display: inline-block;
  padding: 14px 28px;
  color: #2A2B35;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

/* Callouts/Notices */
.email-notice {
  background-color: #FEF3C7;
  border-left: 4px solid #FFCC00;
  border-radius: 4px;
  padding: 16px;
  margin: 24px 0;
}

.email-notice-text {
  color: #92400E;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Links */
.email-link {
  color: #6B7280;
  word-break: break-all;
}

/* Utility */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}
