/* ══════════════════════════════════════
   NAWEL ABBAS — page minimaliste
══════════════════════════════════════ */
:root {
  --bord:    #7c1b34;
  --bord-lt: #a0253f;
  --bord-dk: #5c1226;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box }
html { -webkit-text-size-adjust:100% }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bord);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color:inherit; text-decoration:none }
img { display:block; max-width:100% }

/* ── fond bordeaux avec lumière subtile ── */
body::before {
  content:'';
  position:fixed; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%,   rgba(255,255,255,.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 100%,  rgba(0,0,0,.20)       0%, transparent 55%);
}

/* ══════════════════════════════════════
   CARD — conteneur centré
══════════════════════════════════════ */
.page {
  position: relative; z-index:1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  min-height: 100dvh;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 420px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) both;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px) }
  to   { opacity:1; transform:none }
}

/* ── photo cercle ── */
.card-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.28);
  box-shadow:
    0 0 0 8px rgba(255,255,255,.07),
    0 20px 56px rgba(0,0,0,.35);
  margin-bottom: 28px;
  flex-shrink: 0;
  animation: haloPulse 4s ease-in-out infinite;
}
.card-photo img {
  width:100%; height:100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(0.9);
}
@keyframes haloPulse {
  0%,100% { box-shadow:0 0 0 8px  rgba(255,255,255,.07), 0 20px 56px rgba(0,0,0,.35) }
  50%      { box-shadow:0 0 0 15px rgba(255,255,255,.04), 0 20px 56px rgba(0,0,0,.35) }
}

/* ── nom ── */
.card-name {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.card-name em { font-style:italic; display:block }

/* ── titre ── */
.card-poste {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 16px;
}

/* ── séparateur ── */
.card-sep {
  width: 40px; height: 2px;
  background: rgba(255,255,255,.30);
  margin-bottom: 14px;
}

/* ── sous-titre ── */
.card-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.52);
  letter-spacing: .3px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ── boutons ── */
.card-btns {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  background: #fff;
  color: var(--bord);
  border-radius: 11px;
  font-weight: 700;
  font-size: .92rem;
  transition: background .22s, transform .22s;
}
.btn-primary:hover { background: #f3ede5; transform: translateY(-2px) }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 11px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .22s, transform .22s;
}
.btn-ghost:hover { background: rgba(255,255,255,.20); transform: translateY(-2px) }

/* ── contact mini ── */
.card-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  width: 100%;
}
.card-contact span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .73rem;
  color: rgba(255,255,255,.48);
}
.card-contact svg { flex-shrink:0; opacity:.7 }

/* ══════════════════════════════════════
   DESKTOP — carte légèrement plus grande
══════════════════════════════════════ */
@media (min-width:721px) {
  .card { max-width: 460px }
  .card-photo { width:180px; height:180px }
  .card-btns { flex-direction: row; justify-content:center }
  .btn-primary, .btn-ghost { flex:1 }
}

/* ── très petit écran ── */
@media (max-width:360px) {
  .card-photo { width:130px; height:130px }
  .card-name  { font-size:1.75rem }
}
