﻿/* ============================================================
   Reconnexion Divine — V1.1 Portfolio Card
============================================================ */

.v11-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(49, 87, 213, .13), transparent 34rem),
    linear-gradient(180deg, #f8fbff, #ffffff);
  color: #172033;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.v11-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.v11-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.v11-nav a {
  color: #3157d5;
  text-decoration: none;
  font-weight: 800;
}

.v11-hero,
.v11-card,
.v11-snippet {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(49, 87, 213, .16);
  box-shadow: 0 18px 45px rgba(20, 34, 70, .10);
  border-radius: 28px;
}

.v11-hero {
  padding: 36px;
}

.v11-card {
  padding: 24px;
}

.v11-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid rgba(49, 87, 213, .16);
  color: #3157d5;
  font-weight: 800;
}

.v11-hero h1 {
  margin: 14px 0;
  font-size: clamp(2.1rem, 6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.v11-hero p,
.v11-card p,
.v11-card li {
  color: #63708a;
  line-height: 1.75;
}

.v11-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.v11-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.v11-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .82rem 1rem;
  border-radius: 999px;
  background: #3157d5;
  color: white !important;
  text-decoration: none;
  font-weight: 850;
}

.v11-button.secondary {
  background: #ffffff;
  color: #3157d5 !important;
  border: 1px solid rgba(49,87,213,.16);
}

.v11-project-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(49,87,213,.16);
  box-shadow: 0 20px 50px rgba(20, 34, 70, .14);
}

.v11-project-card-visual {
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(49,87,213,.86), rgba(116,143,255,.7)),
    url("/assets/captures-v1-0/04_fiche_portfolio_v1_0.png");
  background-size: cover;
  background-position: top center;
}

.v11-project-card-body {
  padding: 24px;
}

.v11-project-card h2 {
  margin: 0 0 10px;
  letter-spacing: -.035em;
}

.v11-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.v11-tags span {
  padding: .4rem .65rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #3157d5;
  font-weight: 750;
  font-size: .9rem;
}

.v11-snippet {
  margin-top: 20px;
  padding: 22px;
}

.v11-code {
  white-space: pre-wrap;
  background: #101827;
  color: #eef4ff;
  padding: 18px;
  border-radius: 18px;
  overflow-x: auto;
  font-size: .9rem;
}

.v11-footer {
  margin-top: 34px;
  text-align: center;
  color: #63708a;
  font-size: .94rem;
}

@media (max-width: 820px) {
  .v11-grid {
    grid-template-columns: 1fr;
  }

  .v11-hero {
    padding: 24px;
  }
}