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

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #111;
    color: #ddd;
    text-align: center;
}

/* HEADER */
.header-top {
    background: #000;
    color: #ffcc00;
    padding: 20px;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.5);
}

/* TÉLÉPHONE CLIGNOTANT */
.phone {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #ffcc00;
    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: #ffcc00;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    background: #333;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    width: 180px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.5);
}
nav a:hover {
    transform: scale(1.1);
    background: #ffcc00;
    color: #000;
}

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

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

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

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

/* FORMULAIRE */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #222;
    color: #ddd;
}
button {
    background: #ffcc00;
    color: #000;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}
button:hover {
    background: #fff;
    color: #000;
}

/* FOOTER */
footer {
    background: #000;
    color: #ffcc00;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    box-shadow: 0px -4px 10px rgba(255, 204, 0, 0.5);
}