/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --primary: #E04F5F; /* Rouge/Rose - Action */
    --secondary: #2C3E50; /* Bleu Nuit - Sérieux */
    --bg-light: #f0f2f5; /* Fond clair */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    background-image: radial-gradient(#dce0e6 1px, transparent 1px);
    background-size: 20px 20px; /* Effet pointillé discret */
    color: var(--secondary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary) !important;
}
.navbar-brand span { color: var(--primary); }
.nav-link { color: var(--secondary) !important; font-weight: 600; }
.btn-devis {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}
.btn-devis:hover { background-color: #c03947; }

/* Hero Section */
.hero {
    background: var(--secondary);
    color: white;
    padding: 80px 20px;
    text-align: center;
}
.hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
.hero span { color: var(--primary); }

/* Services */
.services { padding: 50px 20px; max-width: 1200px; margin: 0 auto; }
.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary);
    margin-bottom: 20px;
}
.service-card h3 { color: var(--secondary); }

/* Galerie Automatique */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}
.gallery-item img:hover { transform: scale(1.02); }

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}