@import url("https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap");

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffdf6;
  color: #333;
  text-align: center;
}

.logo {
  max-width: 150px;
  margin: 1em auto;
  display: block;
}

h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: 1em;
}

.actions a {
  padding: 0.6em 1.2em;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  max-width: 300px;
  margin: 0 auto;
}

.btn-principal {
  background-color: #ffbfb4;
  color: black;
}

.btn-principal:hover {
  background-color: #fde7e3;
}

.btn-secondaire {
  background-color: #ffe0b5;
  color: black;
}

.btn-secondaire:hover {
  background-color: #fcd5ac;
}

.recette-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  margin: 1em auto 2em;
  padding: 0 1em;
}

.recette-btn {
  display: inline-block;
  background-color: #b1d193;
  color: black;
  text-decoration: none;
  padding: 0.8em 1.4em;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.recette-btn:hover {
  background-color: #d9e5cd;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6em;
  }

  .actions {
    gap: 0.3em;
  }

  .recette-btn {
    font-size: 1em;
    padding: 0.6em 1.2em;
  }
}
.fiche-info table {
  width: 100%;
  max-width: 500px;
  margin: 1em auto;
  border-collapse: collapse;
  background-color: #f8edeb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.fiche-info th, .fiche-info td {
  text-align: left;
  padding: 0.6em 1em;
  border-bottom: 1px solid #ddd;
}

.fiche-info tr:nth-child(even) {
  background-color: #fff8f6;
}

.fiche-info th {
  font-weight: bold;
  color: #444;
  width: 40%;
}

.quantite-adjust {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.quantite-adjust input {
  width: 60px;
  text-align: center;
  font-size: 1em;
  padding: 0.3em;
}

.quantite-adjust button {
  background-color: var(--accent-vert, #d8e2dc);
  border: none;
  padding: 0.4em 0.7em;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.2s;
}

.quantite-adjust button:hover {
  background-color: var(--accent-rose, #fec5bb);
}
/* Import Google Fonts */
/* Heading */
h1{
 transform:translatex(0px) translatey(0px);
 font-family:'Bubblegum Sans', display;
 letter-spacing:0.5px;
 box-shadow:none;
 border-style:none;
}

/* Principal */
.actions .btn-principal{
 border-style:solid;
}

/* Secondaire */
.actions .btn-secondaire{
 border-width:0px;
}

/* Link */
.recette-list a{
 border-style:solid;
 border-color:#bfb4b4;
 box-shadow:4px 3px 3px 0px #000000;
}

/* Logo */
img{
 box-shadow:6px 6px 10px 0px #333333;
}

@media (min-width:601px){

 /* Heading */
 h1{
  font-size:43px;
 }
 
}