/* --- BASE & FOND ACIER BROSSÉ --- */
body { 
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0d0d0d;
    /* Effet brossé industriel en pur CSS */
    background-image: url("../img/cloture_background.webp");
	background-repeat: repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
}

/* Zone du titre et du slogan avec l'image de fond */
.header-content {
	padding-top: 25px;
	padding-bottom: 25px;
	background: url(../img/header-content.jpg) center bottom;
}

/* Style du texte (Titre et Paragraphe) en orange */
.header-content p, .header-content h1 {
	text-align: center;
	color: #e88800;
}

/* Style pour l'image arrondie (si vous en avez une dans le header) */
.header-content .img-radius {
  border-radius: 7px;
  margin-bottom: 25px;
  width: 100%;
  max-width: 283px;
}

/* --- CADRE PRINCIPAL (CONTENT) --- */
.main-container {
    max-width: 900px;
    width: 95%;
    margin: 40px 10px;
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    /* Ta signature Orange et Noir */
    border-top: 10px solid #e67e22; 
    border-bottom: 5px solid #222;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* --- TYPOGRAPHIE --- */
h1 { color: #222; font-size: 2.2em; text-transform: uppercase; margin-top: 0; text-align: center; }
h2 { color: #e67e22; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
p { line-height: 1.7; color: #444; font-size: 1.1em; }
strong { color: #e67e22; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
.card { background: #f9f9f9; padding: 20px; border-left: 4px solid #222; border-radius: 3px; }

/* --- BOUTON DE SOUMISSION --- */
.cta-box { text-align: center; margin: 40px 0; }
.cta-button {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 20px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 900;
    font-size: 1.4em;
    text-transform: uppercase;
    border-bottom: 5px solid #d35400;
    transition: 0.3s transform;
}
.cta-button:hover { transform: scale(1.05); background: #d35400; }

/* --- FOOTER --- */
footer { text-align: center; margin-top: 40px; color: #888; font-size: 0.9em; border-top: 1px solid #eee; padding-top: 20px; }
footer a { color: #e67e22; text-decoration: none; font-weight: bold; }