/*
Theme Name: GlobALL
Theme URI: https://globall.org
Author: Missions Publiques
Author URI: https://www.missionspubliques.org
Description: Front door for GlobALL — human, editorial, calm, participatory, dialogue-centered. Aligned with the Missions Publiques visual identity. Bilingual-ready (EN launch).
Version: 0.1.0
License: GNU Affero General Public License v3.0
License URI: https://www.gnu.org/licenses/agpl-3.0.html
Text Domain: globall
*/

:root {
  /* Calm, editorial, dialogue-centered. Refine against missionspubliques.org during M5. */
  --globall-bg: #ffffff;
  --globall-surface: #f6f7f9;
  --globall-text: #1a1a2e;
  --globall-muted: #5b6472;
  --globall-accent: #1d6f6f;     /* deliberation / trust */
  --globall-accent-2: #c2553a;   /* warmth / action */
  --globall-radius: 14px;
  --globall-max: 1080px;
  --globall-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--globall-font); color: var(--globall-text); background: var(--globall-bg); line-height: 1.6; }
.globall-wrap { max-width: var(--globall-max); margin: 0 auto; padding: 0 1.25rem; }

.globall-hero { padding: 5rem 0 3rem; text-align: center; }
.globall-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; margin: 0 0 1rem; }
.globall-hero p { font-size: 1.2rem; color: var(--globall-muted); max-width: 40ch; margin: 0 auto; }

/* The three pathways */
.globall-pathways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding: 2rem 0 5rem; }
@media (max-width: 760px) { .globall-pathways { grid-template-columns: 1fr; } }
.globall-card {
  background: var(--globall-surface); border-radius: var(--globall-radius);
  padding: 1.75rem; text-decoration: none; color: inherit; display: block;
  border: 1px solid #e7eaef; transition: transform .15s ease, box-shadow .15s ease;
}
.globall-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20,20,40,.08); }
.globall-card h3 { margin: .25rem 0 .5rem; font-size: 1.3rem; }
.globall-card p { margin: 0; color: var(--globall-muted); }
.globall-card .arrow { color: var(--globall-accent); font-weight: 600; margin-top: 1rem; display: inline-block; }
