Accueil » Recettes sucréés
Table rustique sous un pommier en fleurs - Recettes sucrées

Découvrez ici une sélection de recettes sucrées mettant à l’honneur les fruits des vergers picards : tartes rustiques, clafoutis moelleux, compotes parfumées ou encore confitures maison…

Ces préparations traditionnelles, parfois revisitées, sont pensées pour valoriser les variétés anciennes et transmettre des savoir-faire simples, chaleureux et conviviaux.

.asvft-carrousel { position: relative; overflow: hidden; max-width: 100%; margin: 2em auto; padding: 1em; background: #f8faf7; border: 1px solid #c8d8c0; border-radius: 10px; } .asvft-piste { display: flex; transition: transform 0.5s ease; gap: 1em; } .asvft-slide { position: relative; min-width: 280px; max-width: 280px; flex: 0 0 auto; border: 2px solid #6b8e6b; border-radius: 12px; background: #f1f8ee; box-shadow: 2px 2px 8px rgba(0,0,0,0.1); overflow: hidden; display: flex; flex-direction: column; } .asvft-slide a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; } .asvft-slide-image { height: 160px; background-size: cover; background-position: center; border-bottom: 1px solid #d8e3d4; } .asvft-slide-contenu { padding: 0.8em; flex-grow: 1; } .asvft-slide-contenu h3 { margin: 0 0 0.5em 0; font-size: 1.1em; color: #2d4a2d; } .asvft-slide-contenu p { font-size: 0.9em; color: #3e5a3e; margin: 0; } .asvft-bouton-modifier-container { position: absolute; top: 10px; right: 10px; z-index: 2; } .asvft-bouton-modifier { display: inline-block; padding: 0.4em 0.8em; background-color: rgba(143, 188, 143, 0.9); border: 1px solid #6b8e6b; border-radius: 6px; text-align: center; font-size: 0.85em; color: #fff; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.2); } .asvft-bouton-modifier:hover { background-color: rgba(107, 142, 107, 0.9); transform: translateY(-1px); } .asvft-nav { position: absolute; top: 50%; transform: translateY(-50%); background: #e9f3e5; border: 1px solid #a8c0a0; border-radius: 50%; width: 2.2em; height: 2.2em; font-size: 1.5em; cursor: pointer; z-index: 2; transition: background 0.3s; color: #4a6b4a; } .asvft-nav:hover { background: #d8e8d2; } .asvft-nav.gauche { left: 0.5em; } .asvft-nav.droite { right: 0.5em; } document.addEventListener("DOMContentLoaded", function() { const carrousel = document.getElementById("carrousel_6943b94d93c0c"); const piste = carrousel.querySelector(".asvft-piste"); const slide = carrousel.querySelector(".asvft-slide"); const gauche = carrousel.querySelector(".asvft-nav.gauche"); const droite = carrousel.querySelector(".asvft-nav.droite"); let index = 0; const total = carrousel.querySelectorAll(".asvft-slide").length; const slideWidth = slide.offsetWidth + 16; function afficherSlide(i) { index = i; piste.style.transform = `translateX(-${index * slideWidth}px)`; } gauche.addEventListener("click", () => { index = (index - 1 + total) % total; afficherSlide(index); }); droite.addEventListener("click", () => { index = (index + 1) % total; afficherSlide(index); }); setInterval(() => { index = (index + 1) % total; afficherSlide(index); }, 4000); });
Poirier en fleur
Le printemps est le moyen qu’a la nature de dire : Il est temps de recommencer.
— Phileas Lebesgue
L’arbre ne peut se souvenir de l’hiver, car il a la sagesse du printemps.
— Jean-Pierre Lefebvre
Chaque arbre est une promesse de renouveau.
— Gabriel Martin
.spring-quote-container { display: flex; flex-direction: column; align-items: center; max-width: 100%; margin: 0 auto; font-family: 'Georgia', serif; background-color: #f9f7f0; padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .spring-image-wrapper { width: 100%; max-width: 600px; margin-bottom: 25px; } .spring-image { width: 100%; height: auto; border-radius: 10px; object-fit: cover; box-shadow: 0 3px 10px rgba(0,0,0,0.2); } .spring-quote-wrapper { text-align: center; max-width: 800px; } .spring-quote { font-size: 1.4rem; line-height: 1.6; color: #3a3a3a; margin: 0; padding: 0; font-style: italic; display: none; transition: opacity 0.5s ease-in-out; } .spring-quote.active { display: block; } .highlight { color: #d4a017; font-weight: bold; } .spring-quote footer { font-size: 1.1rem; color: #666; font-style: normal; } @media (min-width: 768px) { .spring-quote-container { flex-direction: row; align-items: center; padding: 30px; } .spring-image-wrapper { flex: 1; margin-bottom: 0; margin-right: 30px; } .spring-quote-wrapper { flex: 1; text-align: left; } } document.addEventListener("DOMContentLoaded", function() { const slides = document.querySelectorAll('.carrousel-slide'); let currentIndex = 0; function showSlide(index) { slides.forEach((slide, i) => { slide.classList.remove('active'); if (i === index) { slide.classList.add('active'); } }); } showSlide(currentIndex); setInterval(() => { currentIndex = (currentIndex + 1) % slides.length; showSlide(currentIndex); }, 6000); });
/* STRUCTURE PRINCIPALE */ .asvft-verger-container { background: url('https://asvftpicardie.fr/wp-content/uploads/2025/04/wood_pattern.webp'); border: 1px solid #c0a080; border-radius: 8px; padding: 2em; margin: 1em auto; max-width: 1200px; } .asvft-verger-grille { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8em; } /* CARTES */ .asvft-carte-recette { display: flex; flex-direction: column; height: 100%; background: #fffdf9; border: 1px solid #d4b483; border-radius: 6px; overflow: hidden; transition: all 0.3s ease; } .asvft-carte-recette:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } /* IMAGE (avec défaut fonctionnel) */ .asvft-carte-image { height: 200px; background-size: cover; background-position: center; position: relative; border-bottom: 1px solid #d4b483; flex-shrink: 0; background-color: #f1f8ee; /* Couleur de fond si image manquante */ } /* BADGES */ .asvft-carte-badge-arbre { position: absolute; bottom: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; max-width: calc(100% - 24px); } .asvft-badge-arbre { background: rgba(92, 58, 33, 0.9); color: #f3e9d9; padding: 4px 12px; border-radius: 12px; font-size: 0.78em; font-family: 'Courier New', monospace; } /* CONTENU AVEC PATTERN BOIS BIEN VISIBLE */ .asvft-carte-contenu { display: flex; flex-direction: column; flex-grow: 1; position: relative; background-attachment: local; background-blend-mode: overlay; background-color: #fffdf9; } .asvft-carte-texte-container { padding: 1.4em; flex-grow: 1; position: relative; z-index: 1; min-height: 180px; display: flex; flex-direction: column; } .asvft-carte-contenu h3 { color: #5c3a21; font-size: 1.2em; margin: 0 0 0.8em 0; line-height: 1.3; min-height: 3.2em; } .asvft-carte-description-wrapper { flex-grow: 1; } .asvft-carte-description { color: #6a4e32; font-size: 0.9em; line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 4.5em; } /* INFOS */ .asvft-carte-infos { padding: 1em 1.4em; margin-top: auto; border-top: 1px dashed #d9c8ae; background: #fffdf9; display: flex; justify-content: space-between; align-items: center; position: relative; } /* RESPONSIVE */ @media (max-width: 768px) { .asvft-verger-grille { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } } @media (max-width: 480px) { .asvft-verger-container { padding: 1em; } .asvft-carte-image { height: 180px; } .asvft-carte-texte-container { min-height: 160px; } .asvft-carte-contenu h3 { min-height: 2.8em; } }

 

 

Retour en haut