/* ====== Reset de base ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
img { display: block; max-width: 100%; }

/* ====== Thème ====== */
:root{
  --bg-gray: #f1f2f4;     /* fond gris léger (sobre, pro) */
  --ink: #0d1b2a;         /* texte principal */
  --muted: #6b7786;       /* texte atténué */
  --black: #000000;       /* barre du haut */
  --btn-bg: #111111;      /* boutons */
  --btn-bg-hover: #1f1f1f;
  --btn-text: #ffffff;
}

/* ====== Layout global ====== */
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background: var(--bg-gray);
  color: var(--ink);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ====== Barre de navigation (noire) ====== */
/* +15% d’ampleur : padding augmenté, logo plus haut, boutons plus grands */
.navbar{
  background: var(--black);
  border-bottom: 1px solid #111;
}
.nav-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;        /* ↑ était 10px 16px */
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo{
  height: 42px;             /* ↑ était 36px */
  width: auto;
}
.brand-name{
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 1.05rem;       /* un peu plus grand */
}

/* Actions (boutons à droite) */
.nav-actions{
  margin-left: auto;
  display: inline-flex;
  gap: 12px;
}
.btn{
  display: inline-block;
  padding: 12px 18px;       /* ↑ était 10px 14px — meilleure tolérance longueur texte */
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;       /* un poil plus grand */
  border: 1px solid #2a2a2a;
  transition: background .15s ease, transform .02s ease;
  line-height: 1;
}
.btn:hover{ background: var(--btn-bg-hover); }
.btn:active{ transform: translateY(1px); }

/* ====== Section d’accueil ====== */
.hero{
  flex: 1;                          /* occupe l’espace entre header et footer */
  display: flex;
  align-items: center;               /* centrage vertical */
  justify-content: center;           /* centrage horizontal */
  padding: 32px 16px;
  text-align: center;
}

.hero-inner{
  max-width: 900px;
}

.hero-title{
  font-size: clamp(38px, 7vw, 64px); /* plus gros */
  font-weight: 1000;
  letter-spacing: .2px;
  margin-bottom: 16px;
}

.tagline{
  font-size: clamp(18px, 3vw, 28px); /* plus gros */
  color: var(--muted);
}


/* ====== Pied de page ====== */
.footer{
  border-top: 1px solid #e1e6ec;
  background: #ffffff;
  color: #4b5563;
  text-align: center;
  padding: 16px 16px;
  font-weight: 600;
}

/* ====== Responsive ====== */
@media (max-width: 700px){
  .brand-name{ display:none; }   /* on garde le logo, on cache le nom pour gagner de la place */
  .btn{ padding: 11px 16px; }    /* s’adapte un peu sur mobile */
}