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

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #eee;
    color: #333;
}

/* HEADER */
.header-top {
    background: #222;
    color: #ffcc00;
    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: #ff6600;
}
@keyframes blink-animation {
    50% { opacity: 0; }
}

/* MENU DANS DES TRIANGLES */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #444;
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    background: #666;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
nav a:hover {
    background: #ff6600;
    transform: scale(1.1);
}

/* CONTENU PRINCIPAL */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    text-align: center;
    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: 10px;
}

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