/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

 /* Recipe Post Card */
.lpv-recipes-grid a.recipe-thumbnail {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.lpv-recipes-grid a.recipe-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.lpv-recipes-grid a.recipe-thumbnail:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.1);
}

.lpv-recipes-grid p.recipe-subtitle {
	font-size: 14px;
	color: var(--theme-palette-color-1);
}

/* Blog Post Card */

.wp-block-post:nth-child(even) .lpv-post-card {
  flex-direction: row-reverse;
}

.lpv-post-card {
  display: flex !important;
  flex-direction: row;
  gap: 2rem !important;
  align-items: center !important;
}


/* Background texture for the whole site */
body {
  background-image: url('http://la-popotte-vagabonde.local/wp-content/uploads/2025/07/paper.png');
  /* background-image: url('http://la-popotte-vagabonde.local/wp-content/uploads/2025/07/fabric_plaid.webp'); */
  background-repeat: repeat;
  /* Turn down their 'opacity' by blending them into
     the background color */
  background-color: rgba(255,255,255,0.4);
  background-blend-mode: lighten;
}