/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ====== FOND DE PAGE ====== */
body {
    position: relative;
    z-index: 1;
    color: white; /* texte lisible */
    background: url("images/Toits_bourges.jpg") no-repeat center center fixed;
    background-size: cover;
}

/* Voile sombre pour lisibilité */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* 45% de noir */
    z-index: -1;
}

/* ====== TITRES ====== */
h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ====== SECTIONS ====== */
.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(0,0,0,0.35); /* léger fond pour lisibilité */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ====== LISTES ====== */
.services {
    list-style: none;
    padding-left: 0;
}

.services li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.services li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700; /* doré */
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 700px) {
    h1 {
        font-size: 1.8rem;
    }
    .section {
        margin: 20px;
        padding: 20px;
    }
}
