/* Couleurs personnalisées */
:root {
  --color-primary: #B5F0EE;
  --color-secondary: #FFDB58;
  --color-accent: #E8A48D;
}

.bg-cover-meal {
  background-image: url('../imgs/test1.webp');
}

.bg-cover-season {
  background-image: url('../imgs/banner-foods.webp');
  margin: 0;
  background-size: cover;
  background-position: center;
  height: 800px;
}

.grid {
  margin: 0 auto;
  max-width: 1200px; /* adjust the value to your needs */
  width: 90%; /* adjust the value to your needs */
}

.big-emoji {
  font-size: 50px; /* Définissez ici la taille souhaitée */
}

/* ombre texte page home */
.shadow-text {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
}


/* Admin Menu Styles */
.admin-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-menu li {
  display: inline-block;
  margin-right: 10px;
}

.admin-menu li a {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #f0f0f0;
  color: #333;
}

.admin-menu li a:hover {
  background-color: #ddd;
}

/* Styles personnalisés */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.container {
  animation: fadeIn 1s ease-in-out;
}

section {
  animation: slideInLeft 1s ease-in-out;
}

#buttonY {
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
padding: 4px 24px;
width: auto;
height: 40px;
background: #FFDB58;
border: 3px solid #253E5C; /* Couleur de la bordure et épaisseur */
box-shadow: 4px 4px 0px #253E5C;
border-radius: 5px;
font-size : 16px;
font-weight: bold;
}

#buttonY {
  transition: box-shadow 0.2s ease-in-out;
}
#buttonY:hover {
  box-shadow: none;
}

#buttonF {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 24px;
  width: auto;
  height: 40px;
  background: #B5F0EE; /* Couleur de fond */
  border: 3px solid #127681; /* Couleur de la bordure et épaisseur */
  box-shadow: 4px 4px 0px #127681; /* Couleur de l'ombre */
  border-radius: 5px;
  font-size : 16px;
  font-weight: bold;
  transition: box-shadow 0.2s ease-in-out; /* Transition */
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}



#buttonF:hover {
  box-shadow: none;
}
