/*
Theme Name: TFT Canvas
Theme URI: https://tftvisuals.fr
Author: TFT Visuals
Author URI: https://tftvisuals.fr
Description: Thème custom pour TFT Visuals. Base minimale et propre, conçue pour être étendue itérativement (Customizer, blocs Kadence, CPT).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tft-canvas
Tags: custom
*/

/* === Reset minimal === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1c1c1c;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* === Conteneur === */
.site { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }
/* === Vidéo de fond du hero === */
.tft-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
