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

body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background: url('images/background-antique.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #F5F5F5;
    text-align: center;
}

/* HEADER */
.header-top {
    background: rgba(30, 30, 30, 0.9);
    color: #FFD700;
    padding: 30px;
    font-size: 28px;
    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 MODERNE */
nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: rgba(40, 40, 40, 0.9);
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 18px 35px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid #FFD700;
    width: 240px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(255, 215, 0, 0.3);
}
nav a:hover {
    transform: scale(1.1);
    background: #FFD700;
    color: black;
}

/* CONTAINER PRINCIPAL */
.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

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

/* TEXTES */
p {
    font-size: 20px;
    line-height: 2;
    text-align: justify;
    padding: 15px;
}

/* FOOTER */
footer {
    background: rgba(30, 30, 30, 0.9);
    color: #FFD700;
    padding: 30px;
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
}