/*
 * Theme Name: LuxGreen
 * Theme URI: https://luxgreen.net
 * Author: LuxGreen Team
 * Author URI: https://luxgreen.net
 * Description: Thème luxe pour luminaires LED extérieurs
 * Version: 1.0.0
 * License: GPL v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: luxgreen
 * Domain Path: /languages
 * Requires at least: 5.0
 * Requires PHP: 7.2
 * WooCommerce: true
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vert-fonce: #1a3a2a;
    --vert: #2d5a3d;
    --or: #c4a35a;
    --or-clair: #d4b86a;
    --noir: #1a1a1a;
    --gris-fonce: #4a4a4a;
    --gris: #888;
    --gris-clair: #e8e8e8;
    --fond-produit: #f5f5f5;
    --blanc: #ffffff;
    --rouge-promo: #e74c3c;
    --vert-stock: #27ae60;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--noir);
    background-color: var(--blanc);
    line-height: 1.6;
}

a {
    color: var(--vert-fonce);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--or);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--noir);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive utility */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
