@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: #EAEAEA;
    text-align: center;
}

/* HEADER */
.header-top {
    background: rgba(0, 0, 0, 0.8);
    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: rgba(0, 0, 0, 0.7);
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.7);
    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 AVEC FILIGRANE */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* 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;
}

/* FOOTER */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 25px;
    text-align: center;
    font-size: 18px;
    margin-top: 50px;
}