/* MODERN CREABOIS 2026 
   Thème : Bois Noble & Clarté 
*/

:root {
    --bois-sombre: #340c0b;
    --bois-moyen: #8b4513;
    --bois-clair: #a0522d;
    --creme-atelier: #fdfaf7;
    --blanc-pur: #ffffff;
    --ombre-douce: 0 10px 30px rgba(0,0,0,0.08);
}

/* 1. Reset & Fond */
body {
    font-family: 'Montserrat', sans-serif !important; /* Police moderne pour le texte */
    background-color: #f8f9fa !important;
    color: #333 !important;
}

/* 2. Titres Elégants */
h1, h2, h3, .navbar-brand {
    font-family: 'Merriweather', serif !important;
    color: var(--bois-sombre) !important;
    font-weight: 700 !important;
}

/* 3. Navbar Modernisée */
#menu {
    background: var(--blanc-pur) !important;
    box-shadow: var(--ombre-douce) !important;
    border: none !important;
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.navbar-nav li a {
    color: var(--bois-sombre) !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* 4. Cartes de Services (Index) */
.service-single {
    background: var(--blanc-pur);
    border-radius: 15px !important;
    padding: 40px 20px !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-single:hover {
    transform: translateY(-12px);
    box-shadow: var(--ombre-douce);
}

/* 5. Boutons "Atelier" */
.project-view, .service-btn, .btn-creabois {
    background-color: var(--bois-moyen) !important;
    border: none !important;
    border-radius: 50px !important; /* Forme pilule moderne */
    padding: 12px 30px !important;
    color: white !important;
    font-weight: 600 !important;
    transition: background 0.3s !important;
}

.project-view:hover, .service-btn:hover {
    background-color: var(--bois-clair) !important;
    text-decoration: none !important;
}

/* 6. Galeries (Meubles, Cuisines, Agencements) */
.tz-gallery .row > div {
    padding: 10px;
}

.tz-gallery img {
    border-radius: 8px;
    transition: transform 0.5s ease, filter 0.5s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tz-gallery img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}