/*
Theme Name: Ferme de Fabas Child Theme
Theme URI: https://fermedefabas.com
Description: Thème enfant immersif pour le parc animalier Ferme de Fabas. Optimisé pour Kadence et Elementor.
Author: Gemini
Author URI: https://fermedefabas.com
Template: kadence
Version: 1.0.0
License: GNU General Public License v2 or later
*/

/* --- Identité Visuelle --- */
:root {
    --primary-green: #2e5d3b; /* Vert forêt profond */
    --nature-beige: #f5f0e6;  /* Sable / Beige doux */
    --pure-white: #ffffff;
    --text-dark: #1a1a1a;
}

/* Fond de page et texte par défaut */
body {
    background-color: var(--nature-beige);
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* Boutons Elementor personnalisés pour la Ferme */
.elementor-button {
    background-color: var(--primary-green) !important;
    border-radius: 8px !important; /* Look moderne, pas trop rond ni trop carré */
    padding: 15px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.elementor-button:hover {
    background-color: #244a2f !important; /* Un vert un peu plus sombre au survol */
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Titres immersifs */
h1, h2, h3 {
    color: var(--primary-green);
    font-weight: 800;
    letter-spacing: -0.03em;
}