/* PAGE 3 – STYLE MODERNE & PROFESSIONNEL */

/* GENERAL */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

h1, h2 {
    font-weight: 600;
    letter-spacing: 1px;
}

/* TOP BAR */
.topbar {
    background: #0a0a0a;
    padding: 10px 25px;
    text-align: right;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}

.menu a:hover,
.menu .active {
    color: #bfbfbf;
}

/* INTRO SECTION */
.intro {
    text-align: center;
    padding: 100px 20px;
}

.intro h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    color: #d4d4d4;
}

/* À PROPOS SECTION */
.apropos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 8%;
    align-items: center;
}

.apropos h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.apropos p {
    color: #cfcfcf;
    font-size: 16px;
}

.flyer {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgba(255,255,255,0.08);
    transition: 0.3s;
}

.flyer:hover {
    transform: scale(1.02);
}

/* CONTACT SECTION */
.contact {
    padding: 80px 8%;
    background: #0a0a0a;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info p {
    font-size: 16px;
    color: #e0e0e0;
}

.formulaire input,
.formulaire textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
}

.formulaire button {
    width: 100%;
    padding: 14px;
    background: #222f46;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.formulaire button:hover {
    background: #2f3d5a;
}

/* MAP */
.map iframe {
    margin-top: 50px;
    filter: grayscale(40%);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid #222;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .apropos,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}
