/* Faith Daily Word — Front-End Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Login ── */
.fdw-login-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.fdw-login-card {
  background: linear-gradient(160deg, #0d1b2a, #1a1a3e);
  color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.fdw-login-icon { font-size: 50px; margin-bottom: 16px; }
.fdw-login-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: 2px;
}
.fdw-login-card p { opacity: .7; font-size: 14px; margin: 0 0 24px; }
.fdw-login-card input[type="password"] {
  width: 100%; padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
  box-sizing: border-box;
  transition: border .2s;
}
.fdw-login-card input:focus { border-color: rgba(255,255,255,.4); outline: none; }
.fdw-login-card button {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #c9a84c, #e8c472);
  color: #0d1b2a;
  border: none;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform .15s, opacity .15s;
}
.fdw-login-card button:hover { transform: translateY(-2px); opacity: .92; }
.fdw-login-error { color: #ff8888; font-size: 13px; margin: -8px 0 14px; }

/* ── Dashboard ── */
.fdw-front-wrap {
  font-family: 'EB Garamond', serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* Hero */
.fdw-front-hero {
  background: linear-gradient(160deg, #0d1b2a 0%, #1a1a3e 50%, #1a2e1a 100%);
  color: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.fdw-front-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.15) 0%, transparent 65%);
}
.fdw-front-cross {
  font-size: 52px;
  display: block;
  margin-bottom: 12px;
  position: relative;
}
.fdw-front-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  margin: 0 0 8px;
  color: #f5e6ba;
  position: relative;
  letter-spacing: 1px;
}
.fdw-hero-sub { opacity: .65; font-size: 15px; margin: 0; position: relative; }
.fdw-logout-link {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-family: sans-serif;
  text-decoration: none;
}
.fdw-logout-link:hover { color: rgba(255,255,255,.9); }

/* Sections */
.fdw-front-section { margin-bottom: 36px; }
.fdw-section-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: #1a1a3e;
  margin: 0 0 18px;
  letter-spacing: .5px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0ede6;
}

/* Schedule cards */
.fdw-front-schedule {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.fdw-sched-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  border: 1.5px solid #e8e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.fdw-sched-icon { font-size: 24px; }
.fdw-sched-card strong { font-size: 12px; font-family: sans-serif; color: #333; }
.fdw-sched-time { font-size: 11px; color: #888; font-family: sans-serif; }

/* Faith goals */
.fdw-faith-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fdw-faith-card-wide { grid-column: 1 / -1; }
.fdw-faith-card {
  background: linear-gradient(135deg, #fdf8ee, #fff8f0);
  border: 1.5px solid #edd;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.fdw-faith-icon { font-size: 32px; margin-bottom: 8px; }
.fdw-faith-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: #5a3e1b;
  margin: 0 0 8px;
  letter-spacing: .5px;
}
.fdw-faith-card p { font-size: 15px; color: #666; margin: 0; line-height: 1.6; }

/* Loans */
.fdw-loans { display: flex; flex-direction: column; gap: 14px; }
.fdw-loan-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1.5px solid #e0e8f0;
}
.fdw-loan-header {
  display: flex;
  justify-content: space-between;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.fdw-loan-bal { color: #c55; }
.fdw-loan-bar-wrap { background: #eef0f8; border-radius: 99px; height: 10px; overflow: hidden; }
.fdw-loan-bar { height: 10px; background: linear-gradient(90deg, #2c7a3e, #4ab86a); border-radius: 99px; transition: width 1s; }
.fdw-loan-footer { font-family: sans-serif; font-size: 11px; color: #888; margin-top: 6px; }
.fdw-total-card {
  background: linear-gradient(135deg, #1a1a3e, #2c3e7a);
  color: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* Message cards */
.fdw-msg-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1.5px solid #e8e8f0;
  margin-bottom: 12px;
}
.fdw-msg-meta { display: flex; justify-content: space-between; font-family: sans-serif; font-size: 12px; color: #888; margin-bottom: 8px; }
.fdw-msg-card summary { cursor: pointer; font-size: 15px; font-weight: 600; color: #1a1a3e; }
.fdw-msg-body { margin-top: 14px; padding: 16px; background: #fafafe; border-radius: 8px; font-size: 16px; line-height: 1.85; }

/* Responsive */
@media (max-width: 600px) {
  .fdw-front-schedule { grid-template-columns: repeat(3, 1fr); }
  .fdw-faith-goals { grid-template-columns: 1fr; }
  .fdw-front-hero { padding: 36px 20px; }
  .fdw-front-hero h1 { font-size: 22px; }
}

/* ── Siblings grid ── */
.fdw-sibs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.fdw-sib-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  border: 1.5px solid #e8e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.fdw-sib-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #e8c472);
  color: #1a1a3e;
  font-size: 20px;
  font-weight: 800;
  font-family: sans-serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.fdw-sib-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #1a1a3e;
  font-weight: 600;
  margin-bottom: 4px;
}
.fdw-sib-status { font-size: 11px; color: #888; font-family: sans-serif; }

/* ── Wedding card ── */
.fdw-wedding-card {
  background: linear-gradient(135deg, #0d1b2a, #2c3e7a);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fdw-wedding-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.2) 0%, transparent 65%);
}
.fdw-wedding-icon { font-size: 44px; display: block; margin-bottom: 12px; position: relative; }
.fdw-wedding-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #f5e6ba;
  margin: 0 0 6px;
  position: relative;
  letter-spacing: 1px;
}
.fdw-wedding-card p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0 0 16px; position: relative; }
.fdw-wedding-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: #f5e6ba;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  position: relative;
}
