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

/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #343a40; /* Couleur foncée */
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .titre-contact {
    flex-grow: 1;
}

header .titre-principal {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px; /* Ajout de marge bas */
}

header .telephone-clignotant {
    font-size: 2rem;
    font-weight: bold;
    color: #f00; /* Rouge clignotant */
    animation: clignoter 1s infinite alternate;
}

@keyframes clignoter {
    from { opacity: 1; }
    to { opacity: 0; }
}

nav.menu {
    text-align: left;
    margin-left: 20px;
}

nav.menu ul {
    list-style-type: none;
}

nav.menu ul li {
    display: inline;
    margin-right: 20px;
}

nav.menu ul li a {
    color: #fff; /* Texte blanc */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

nav.menu ul li a:hover {
    color: #ccc; /* Légère teinte grise au survol */
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

section img.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

iframe {
    border: none;
    width: 100%;
}

footer {
    background-color: #343a40; /* Couleur foncée */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
