/* =========================
   Akkurat LL – Local font
========================= */

@font-face {
  font-family: "AkkuratLL";
  src: url("fonts/AkkuratLL-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AkkuratLL";
  src: url("fonts/AkkuratLL-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "AkkuratLL";
  src: url("fonts/AkkuratLL-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AkkuratLL";
  src: url("fonts/AkkuratLL-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


/* =========================
   Variables
========================= */

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: rgba(0, 0, 0, .78);

  --green: #0b4f3a;
  --radius: 10px;

  --font-main: "AkkuratLL", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100%;
  display: grid;
}


/* =========================
   Hero
========================= */

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.hero__inner {
  width: min(680px, 100%);
  text-align: center;
  display: grid;
  gap: 22px;
}


/* =========================
   Logo (réduit)
========================= */

.logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 auto 6px;
  object-fit: contain;
}


/* =========================
   Manifest (rééquilibré)
========================= */

.manifest {
  display: grid;
  gap: 10px;
}

.manifest p {
  margin: 0;
}

.manifest__title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.manifest__line {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

.manifest__block {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 4px;
}

.manifest__address {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 12px;
}


/* =========================
   Menus links
========================= */

.links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.link {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  text-transform:uppercase;
}

.link:hover {
  opacity: .8;
}


/* =========================
   Buttons (réduits & élégants)
========================= */

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 260px;
  padding: 14px 22px;

  border-radius: var(--radius);
  border: 1.5px solid transparent;

  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;

  text-decoration: none;
  cursor: pointer;

  background: var(--green);
  color: #ffffff;

  transition: opacity .15s ease, transform .15s ease;
}

.btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.btn--secondary {
  background: #ffffff;
  color: #111111;
  border-color: #111111;
}


/* =========================
   Mobile
========================= */

@media (max-width: 520px) {

  .hero {
    padding: 40px 18px;
  }

  .hero__inner {
    gap: 20px;
  }

  .logo {
    width: min(440px, 100%);
  }

  .manifest {
    gap: 8px;
  }

  .manifest__line,
  .manifest__block,
  .manifest__address {
    font-size: 14px;
  }

  .btn {
    min-width: 100%;
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
  }

  .buttons {
    gap: 14px;
  }
}
