/* member-portal.css — Volet A/B (site agence = espace membre).
 * Chrome minimal partagé : splash publique `/` + en-tête de l'espace membre.
 * Palette ivoire/or cohérente avec client-resources.css (thème membre).
 * No-inline : toutes les règles vivent ici. */

:root {
  --mp-bg:        #0d0b08;
  --mp-bg-soft:   #16130d;
  --mp-border:    rgba(200, 168, 104, 0.22);
  --mp-ink:       #f5e9d4;
  --mp-ink-soft:  rgba(245, 233, 212, 0.66);
  --mp-gold:      #c8a868;
  --mp-gold-hi:   #e0c483;
}

/* ── Splash publique ──────────────────────────────────────────── */
body.mp-splash {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(200,168,104,0.10), transparent 70%),
    linear-gradient(135deg, var(--mp-bg) 0%, var(--mp-bg-soft) 100%);
  color: var(--mp-ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.mp-splash-card {
  text-align: center;
  padding: 48px 40px;
  max-width: 460px;
}

.mp-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 26px;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(200,168,104,0.28));
}

.mp-splash-card .mp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--mp-gold);
  margin: 0 0 12px;
}

.mp-splash-card h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.7rem;
  line-height: 1.1;
  margin: 0 0 14px;
}

.mp-splash-card p {
  color: var(--mp-ink-soft);
  line-height: 1.6;
  margin: 0 0 30px;
  font-size: 15px;
}

.mp-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mp-gold) 0%, var(--mp-gold-hi) 100%);
  color: #1a1408;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 20px rgba(200,168,104,0.25);
}
.mp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,168,104,0.38); }
.mp-btn:active { transform: translateY(0); }

.mp-splash-foot {
  margin-top: 34px;
  font-size: 12px;
  color: rgba(245,233,212,0.4);
}
.mp-splash-foot a { color: var(--mp-ink-soft); }

/* ── En-tête espace membre (page ressources) ──────────────────── */
.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: var(--mp-bg-soft);
  border-bottom: 1px solid var(--mp-border);
}
.mp-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mp-ink);
  text-decoration: none;
  font-weight: 600;
}
.mp-header__brand img { width: 30px; height: 30px; }
.mp-header__nav { display: flex; align-items: center; gap: 20px; }
.mp-header__nav a {
  color: var(--mp-ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.mp-header__nav a:hover { color: var(--mp-gold); }

body.mp-member {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--mp-bg) 0%, #0a0806 100%);
  color: var(--mp-ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
