@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(45deg, #ff6f61, #ffcc00);
    color: #222;
}

/* HEADER */
.header-top {
    background: #2c3e50;
    color: #ffffff;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* TÉLÉPHONE QUI CLIGNOTE */
.blink {
    animation: blink-animation 1s infinite;
    font-weight: bold;
    color: #ff4500;
}
@keyframes blink-animation {
    50% { opacity: 0; }
}

/* MENU COLORÉ */
nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: #ff4500;
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    background: #ffcc00;
    border-radius: 10px;
    transition: 0.3s;
}
nav a:hover {
    background: #ff6f61;
}

/* CONTENU PRINCIPAL */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* IMAGES */
.image-container {
    width: 90%;
    margin: 20px auto;
}
.image-container img {
    width: 100%;
    border-radius: 5px;
}

/* FOOTER */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
}