/*
Theme Name: Intranet Saint-Lambert
Theme URI: https://saint-lambert.ca
Author: Ville de Saint-Lambert
Author URI: https://saint-lambert.ca
Description: Theme WordPress personnalise pour l'intranet municipal de Saint-Lambert
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: intranet-stlambert
Tags: intranet, municipal, custom
*/

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Styling pour le contenu des departements */
.prose {
    max-width: none;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.75;
}

.prose ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.prose ul li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    border-radius: 0.375rem;
    color: #475569;
    transition: all 0.2s;
}

.prose ul li:hover {
    background: #eff6ff;
    border-left-color: #2563eb;
    transform: translateX(4px);
}

.prose ul li strong {
    color: #1e293b;
    font-weight: 600;
}

.prose ol {
    list-style: none;
    counter-reset: item;
    margin: 1rem 0;
    padding: 0;
}

.prose ol li {
    counter-increment: item;
    padding: 0.75rem 1rem 0.75rem 3rem;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    border-radius: 0.375rem;
    position: relative;
    color: #475569;
}

.prose ol li:before {
    content: counter(item);
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    background: #3b82f6;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.prose strong {
    font-weight: 600;
    color: #1e293b;
}

/* Tailwind CSS sera charge via CDN */
