/*
Theme Name: Laika Starter
Theme URI: https://laika-design.fr
Description: Thème WordPress moderne et réutilisable pour Laika Design
Version: 1.0.0
Author: Laika Design
Author URI: https://laika-design.fr
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: laika-starter
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   VARIABLES CSS
   ============================================ */

:root {
    /* Couleurs */
    --color-rouge: #FF0000;
    --color-orange: #FF6600;
    --color-bleu: #0066FF;
    --color-vert: #006633;
    --color-noir: #000000;
    --color-blanc: #FFFFFF;
    --color-gris-clair: #F5F5F5;

    /* Typographie */
    --font-heading: 'PP Neue Machina', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'TT Commons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-noir);
    background: var(--color-blanc);
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   STRUCTURE GLOBALE
   ============================================ */

/* Header - pas de marge */
.site-header {
    margin: 0;
    padding: 0;
}

/* Content wrapper - pas de marge */
.site-content {
    margin: 0;
    padding: 0;
}

/* Sections - pas de marge par défaut */
section {
    margin: 0;
    padding: 0;
}

/* Hero - fullscreen, collé au header */
.laika-hero {
    margin: 0;
    padding: 0;
}

/* Footer - pas de marge */
.site-footer {
    margin: 0;
    padding: 0;
}
