/* =========================
   Reset et base
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html {
    height: 100%;
    font-size: 20px;
    color: #0B0B0B;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    font-weight: bold;
    transition: 0.15s color ease;
    color: #F1ECF1;
}
a:hover {
    color: #B9B9B9;
}

/* =========================
   Header
========================= */
header {
    background-color: #071A33;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    color: #ECEBEB;
}

/* =========================
   Navigation
========================= */
nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 5px 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* =========================
   Sections et contenu
========================= */
section {
    padding: 20px 10px;
    margin-bottom: 20px;
    text-align: center;
}

h1 {
    text-align: center;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 28px;
}

h2 {
    text-align: center;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-style: italic;
    font-size: 20px;
}

.contents {
    padding: 0 5%;
    width: 100%;
    min-height: 100%;
    background-color: #f4f4f4;
    text-align: center;
    color: #434343;
}

.contents > article {
    max-width: 90%;
    margin: 0 auto 20px auto;
}

/* =========================
   Prestations / Cards
========================= */
.prestations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.prestation {
    background-color: #fff;
    padding: 25px;
    margin: 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.prestation h3 {
    color: #333;
    margin-bottom: 10px;
}

/* =========================
   Galleries
========================= */
.gallery, .gab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gallery img, .gab img {
    width: 100%;
    max-width: 250px;
    object-fit: cover;
    border-radius:
}		
.arrondie{
	-moz-border-radius: 10x;
	-webkit-border-radius: 10px;
}
