/* ------------------------------
   GLOBAL
------------------------------ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #1F3A5F;
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
}


a {
    text-decoration: none;
    color: inherit;
}

/* ------------------------------
   HEADER
------------------------------ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #242854; /* couleur du bandeau "logo" */
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* --- LOGO ---

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px; /* Ajuste la taille ici */
    width: auto;
    display: block;
}

.logo span {
    font-size: 1.6rem;
    font-weight: 700;
}*/

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.6rem;
    font-weight: 700;
}

.logo:hover {
    opacity: 0.9;
}


nav a {
    margin-left: 20px;
    color: white; /* couleur écriture Accueil-Contact */
    font-weight: 600;
    transition: 0.2s;
}

nav a:hover {
    color: #CC0066; /* couleur transformation écriture Accueil-Contact */
}


/* ------------------------------
   BUTTONS
------------------------------ */
.btn {
    background: #CC0066;
    padding: 12px 25px;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: 0.2s;
    border: none;
}

.btn:hover {
    background: #9A004D;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,163,0,0.4);
}

/* ------------------------------
   SERVICES
------------------------------ */
.metiers {
    padding: 60px 40px;
    background: #F2F2F2;
    text-align: center;
}

.grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    padding: 30px;
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

/* ------------------------------
   CTA
------------------------------ */
.cta {
    text-align: center;
    padding: 60px 20px;
}

/* ------------------------------
   CONTACT (VERSION COLONNE)
------------------------------ */
.contact {
    padding: 60px 20px;
}

.contact-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    gap: 30px;
    margin-top: 30px;
}

.info {
    width: 100%;
    background: #F2F2F2; /*  */ 
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

/* --- PAGES SERVICES --- */
.metiers-page {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.metiers-page .intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.metiers-content {
    background: #F2F2F2;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.metiers-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.metiers-content li {
    margin-bottom: 10px;
}

/* ------------------------------
   FOOTER
footer {
    text-align: center;
    padding: 20px;
    background: #242854;
    color: white;
    margin-top: 40px;
}
------------------------------ */


footer {
    padding: 20px;
    background: #242854;
    color: white;
    text-align: center;
    flex-shrink: 0;
    margin-top: 100px;
}
