/* ══════════════════════════════════════════
   activ.css — Styles spécifiques page Activités
   Complète style.css (variables, nav, pres, contact partagés)
══════════════════════════════════════════ */

/* ── Lien actif nav ── */
.nav-active {
  color: var(--copper) !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--copper);
}

/* ── Section corps ── */
.page-corps {
  position: relative;
  background: var(--violet-dark);
  padding: 200px 60px 160px;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  margin-bottom: var(--overlap);
  z-index: 2;
}

/* ── Intro texte + image ── */
.corps-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.corps-intro-text { display: flex; flex-direction: column; gap: 0; }

.corps-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(245,243,239,0.7);
  margin-bottom: 20px;
}

.corps-intro-image { display: flex; justify-content: center; }

.corps-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(245,243,239,0.04);
  border: 1px dashed rgba(160,82,45,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(245,243,239,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.corps-image-placeholder span {
  font-size: 0.65rem;
  color: rgba(160,82,45,0.5);
  font-style: italic;
}

/* ── Titre avant cartes ── */
.corps-cards-title {
  margin-bottom: 40px;
}

/* ── Grille de cartes ── */
.corps-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

/* ── Lien dans les cartes ── */
.corps-card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: color 0.2s;
}
.corps-card-link:hover { color: var(--copper-light); }

.corps-card-link--violet { color: var(--violet-light); }
.corps-card-link--violet:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .corps-intro { grid-template-columns: 1fr; gap: 48px; }
  .page-corps { padding: 160px 30px 120px; }
}

/* ── Pres hauteur réduite (50vh) ── */
.section-pres {
  min-height: 0 !important;
  height: 50vh !important;
  padding: 60px 60px 40px !important;
}

.pres-placeholder {
  font-style: italic;
  color: var(--white);
  font-size: 0.95rem;
  border-left: 2px solid rgba(160,82,45,0.3);
  padding-left: 14px;
  margin-top: 10px;
}

/* ── Titre pres page ── */
.pres-title-page {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--white);
  margin-top: 130px;
  margin-bottom: 16px;
}
.pres-title-page .highlight { color: var(--copper); display: inline; }
.pres-title-page .highlight--violet { color: var(--violet-light); display: inline; }
.pres-title-page .highlight--blue { color: var(--blue); display: inline; }
.pres-title-page .highlight--green { color: var(--green); display: inline; }

.pres-title .highlight { color: var(--copper); display: block; }
.highlight--violet { color: var(--violet-light); }

/* ── Contact chevauchement ── */
.section-contact {
  margin-top: var(--overlap);
}
