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

body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background: #1D1D1D;
    color: #EAEAEA;
    text-align: center;
}

/* HEADER */
.header-top {
    background: #111;
    color: #FFD700;
    padding: 25px;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

/* TÉLÉPHONE CLIGNOTANT */
.phone {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-top: 10px;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.5; }
}

/* MENU */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #222;
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    background: #444;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid #FFD700;
    width: 200px;
    text-align: center;
}
nav a:hover {
    transform: scale(1.1);
    background: #FFD700;
    color: black;
}

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

/* TITRES */
h2 {
    color: #FFD700;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

/* TEXTES */
p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    padding: 10px;
}

/* IMAGE BANNIÈRE */
.image-banner {
    width: 90%;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.image-banner img {
    width: 100%;
    border-radius: 15px;
}

/* FOOTER */
footer {
    background: #111;
    color: #FFD700;
    padding: 25px;
    text-align: center;
    font-size: 18px;
    margin-top: 50px;
}