/*reset.css*/

/* Utiliser border-box partout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Supprimer uniquement la marge extérieure de la page */
body {
  min-height: 100vh;
  margin: 0;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

/* Empêcher les médias de dépasser leur conteneur */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Utiliser la même police que le reste de la page */
button,
input,
textarea,
select {
  font: inherit;
}

/* Autoriser seulement le redimensionnement vertical */
textarea {
  resize: vertical;
}

/*  end reset css */

h1 {
  text-align: center;
}

.pricing-container {
  margin-inline: auto;
  max-width: 70%;
  border: 2px solid black;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 2rem;
}

.pricing-container::after {
  content: "";
  width: 250px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 250px;
  padding: 1rem 2rem;
  border: 2px solid black;
  border-radius: 8px;
  background-color: #f7f7f7;
}

.pricing-card > p {
  color: #452c1c;
  font-weight: 600;
  font-size: 1.3;
}

.status-green {
  color: green;
}

.status-red {
  color: red;
}

.basic-plan {
  background-color: #f3f4f6; /* gris clair neutre */
}

.pro-plan {
  background-color: aliceblue;
}

.premium-plan {
  background-color: #fff4cc; /* doré clair */
}

button {
  background: hsl(44, 87%, 57%);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
}

button:focus-visible {
  outline: 2px solid #452c1c;
  outline-offset: 2px;
}

button:hover {
  background: hsl(44, 87%, 47%);
}
