/* Import de la police Nokian */
@font-face {
  font-family: "Nokian";
  src: url("Nokian.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page */
body {
  font-family: Arial, sans-serif;
  color: white;
  height: 100vh;
  overflow: hidden;
}

/* Bandeau supérieur */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 48px;
}

.right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.green-line {
  width: 50px;
  height: 4px;
  background: #7cc242;
  border-radius: 2px;
}

.coop {
  font-family: "Nokian", sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
}

/* Image de fond */
.hero {
  width: 100%;
  height: 100vh;
  background: url("NT_Surpass_AS01_BRoll_4K.jpg") center/cover no-repeat;
}

/* Choix */
.choices {
  position: absolute;
  bottom: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
}

/* Cartes */
.choice {
  width: 400px;
  height: 250px;
  background: white;
  border: 3px solid #7cc242;
  border-radius: 8px;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.choice h2 {
  color: black;
  font-size: 22px;
  font-weight: bold;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: black;
  color: white;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 1000px) {
  .choices {
    flex-direction: column;
    gap: 30px;
    bottom: 40px;
  }

  .choice {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}
