/* Définition des variables de couleurs et polices */
:root {
    --primary-color: #0d6efd; /* Bleu Bootstrap pour l'accent */
    --dark-color: #212529;    /* Gris foncé pour la nav et le footer */
    --light-color: #f8f9fa;   /* Gris clair pour les sections */
    --font-family-headings: 'Montserrat', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-family-body);
    padding-top: 56px; /* Pour éviter que le contenu ne soit caché sous la navbar fixe */
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: var(--font-family-headings);
    font-weight: 700;
}

/* Section Héro */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('bg2.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
}

.hero-section h1 {
    font-weight: 700;
}

/* Boutons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7; /* Un bleu légèrement plus foncé */
    border-color: #0b5ed7;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}


/* Cartes de service */
.services-section .card {
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Section Pourquoi nous */
.why-us-section {
    padding: 80px 0;
}

.why-us-section ul {
    list-style: none;
    padding-left: 0;
}

.why-us-section ul li {
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-bottom: 1rem;
}

.why-us-section ul li::before {
    content: '✓'; /* Symbole de coche */
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
}