/*
Theme Name: TechLab Lite
Theme URI: https://www.techlab-handicap.org
Author: Gemini
Description: Un thème ultra-léger mimant le style de TechLab Handicap. Rapide, accessible et compatible Elementor.
Version: 1.0
Text Domain: techlab-lite
*/

:root {
    --primary-color: #96154A; /* Rouge bordeaux APF/TechLab */
    --secondary-color: #333333; /* Gris foncé texte */
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --footer-bg: #222222;
    --font-main: "Open Sans", Arial, sans-serif; /* Police accessible */
    --container-width: 1140px;
}

/* Reset Minimal */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); color: var(--secondary-color); line-height: 1.6; background: var(--white); font-size: 16px; }
a { color: var(--primary-color); text-decoration: none; transition: 0.3s; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Layout Helper */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.site-logo img { max-height: 60px; width: auto; }
.main-navigation ul { display: flex; list-style: none; gap: 20px; }
.main-navigation ul li a { color: var(--secondary-color); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.main-navigation ul li a:hover { color: var(--primary-color); }

/* Main Content */
.site-main { padding: 40px 0; min-height: 60vh; }
.page-header { margin-bottom: 30px; }
.page-title { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }
.entry-content { font-size: 1.1rem; }
.entry-content h2, .entry-content h3 { color: var(--primary-color); margin-top: 1.5em; margin-bottom: 0.5em; }
.entry-content p { margin-bottom: 1em; }

/* Buttons (Style TechLab) */
button, input[type="submit"], .button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}
button:hover, input[type="submit"]:hover, .button:hover {
    background-color: #7a103c;
    text-decoration: none;
}

/* Footer */
.site-footer { background: var(--footer-bg); color: #ddd; padding: 40px 0; font-size: 0.9rem; margin-top: auto; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-widget h3 { color: var(--white); border-bottom: 2px solid var(--primary-color); display: inline-block; margin-bottom: 15px; padding-bottom: 5px; }
.footer-bottom { border-top: 1px solid #444; padding-top: 20px; text-align: center; font-size: 0.8rem; }