/*
Theme Name: Meury Fleurs Theme
Theme URI: https://meury-fleurs.com
Author: Meury Studio
Author URI: https://meury-fleurs.com
Description: Thème sur-mesure pour le blog Meury-Fleurs, conçu pour s'intégrer de manière invisible avec le frontend Astro principal. Intègre TailwindCSS via CDN et les polices Google Fonts.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meury-fleurs
*/

/* 
Note: L'essentiel du style est géré par Tailwind CSS injecté dans le header.php.
Ce fichier sert principalement à l'identification du thème par le coeur WordPress.
*/

.bg-grain {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   STYLES SPECIFIQUES DES ARTICLES (The Content)
   ========================================================================== */

/* Encart Graphique pour l'Introduction (Premier paragraphe de l'article) */
.prose > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #386641;
    background-color: #F8FAFC;
    border-left: 4px solid #6A994E;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Style des Tableaux dans les articles */
.prose table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.prose thead {
    background-color: #6A994E;
    color: white;
}

.prose th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.prose td {
    padding: 1rem;
    border-bottom: 1px solid #D9E4DD;
    color: #475569;
}

.prose tbody tr:nth-child(even) {
    background-color: #F8FAFC;
}

.prose tbody tr:hover {
    background-color: #F1F5F9;
}
