/*
Theme Name: Norauto Garage
Theme URI: https://example.com/norauto-garage-theme
Author: VotreNom
Author URI: https://example.com
Description: Thème WordPress minimal pour un garage automobile, inspiré de la charte graphique Norauto (bleu foncé et jaune), sans reproduction directe.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: norauto-garage
Tags: garage, automobile, minimal, responsive
*/

/* --- Variables globales --- */
:root {
    --color-primary: #003b5c;   /* Bleu Norauto approximatif */
    --color-accent:  #fdc600;   /* Jaune Norauto approximatif */
    --color-light:   #f5f5f5;
    --font-base:     'Open Sans', sans-serif;
}

/* --- Reset et base --- */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-base);
    background: var(--color-light);
    color: #333;
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}
a:hover,
a:focus {
    color: var(--color-accent);
}

/* --- Header --- */
header.site-header{
    background: var(--color-primary);
    color:#fff;
    padding:1rem 2rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}
.site-title{
    font-size:1.5rem;
    font-weight:700;
    margin:0;
}
nav.primary-nav a{
    color:#fff;
    margin-left:1rem;
    font-weight:600;
}
nav.primary-nav a:hover{
    color:var(--color-accent);
}

/* --- Buttons --- */
.btn-primary{
    background:var(--color-accent);
    color:#000;
    padding:0.5rem 1rem;
    border:none;
    border-radius:4px;
    cursor:pointer;
}
.btn-primary:hover{
    opacity:0.9;
}

/* --- Footer --- */
footer.site-footer{
    background: var(--color-primary);
    color:#fff;
    text-align:center;
    padding:1rem;
    font-size:0.9rem;
}

/* --- Content --- */
.container{
    max-width:1200px;
    margin:0 auto;
    padding:1rem 2rem;
}
