:root{
--primary:#0d6efd;
--dark:#111;
--light:#14434b;
--card-shadow:0 5px 15px rgba(0,0,0,0.1);

}body{
font-family: Arial;
margin:0;
background:#14434b;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 5%;
background:#14434b;
box-shadow:var(--card-shadow);
position:sticky;
top:0;
z-index:1000;
}

nav a{
margin-left:20px;
text-decoration:none;
color:white;
font-weight:600;
}

nav a:hover{
color:var(--primary);
}

.hero{
height:30vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h2{
font-size:40px;
}

.btn{
display:inline-block;
margin-top:20px;
background:white;
color:#0d6efd;
padding:40px 60px;
border-radius:30px;
font-size:42px;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
}

.section-title{
  text-align:center;
  margin-top:50px;
  margin-bottom:50px;
  font-size:42px;
  font-weight:bold;
  color:white;
  letter-spacing:1px;
}



/* Au lieu de .card-btn */
.btn1, .btn2, .btn3, .btn4, .btn5 {
  width:100%;
  background:white;
  border:none;
  cursor:pointer;
  text-align:left;
  padding:20px;
}

/* Au lieu de .card-header */
.header1, .header2, .header3, .header4, .header5 {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.social-link{
  margin-left:15px;
}

.social-icon{
  width:32px;
  height:32px;
  vertical-align:middle;
  transition:0.3s;
}

.social-icon:hover{
  transform:scale(1.15);
}


.btn1 h3, .btn2 h3, .btn3 h3, .btn4 h3, .btn5 h3 {
  margin: 0;
  color: #111; /* ou une autre couleur visible */
}

.btn1 p, .btn2 p, .btn3 p, .btn4 p, .btn5 p {
  margin-top: 5px;
  color: #666; /* visible sur fond blanc */
}



.services{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.row1,
.row2{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:30px;
  flex-wrap:wrap;
}

.card{
  background:white;
  width:260px;
  padding:20px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}
.card:hover .service-icon{
  transform:scale(1.08);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.card h3{
  margin:0;
  color:#111;
}

.card p{
  color:#666;
  margin-bottom:20px;
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.card-text{
  flex:1;
}

.logo-icon{
  width:200px;
  height:200px;
  object-fit:contain;
  margin-left:15px;
}

.title-icon{
  width:400px;
  height:200px;
  object-fit:contain;
  margin-left:150px;
}

.service-icon{
  width:60px;
  height:60px;
  object-fit:contain;
  margin-left:5px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
}

.price-table th,
.price-table td{
  border:1px solid #ddd;
  padding:10px;
  text-align:center;
}


table{
width:100%;
background:white;
border-collapse:collapse;
}

td,th{
border:1px solid #ddd;
padding:10px;
}

form{
display:flex;
flex-direction:column;
gap:10px;
max-width:400px;
}

input,textarea{
padding:10px;
}

button{
background:#007BFF;
color:white;
padding:10px;
border:none;
cursor:pointer;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:0 10%;
}

.gallery-img{
width:100%;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.gallery-img:hover{
transform:scale(1.05);
}

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:2000;
}

.lightbox img{
max-width:80%;
max-height:80%;
border-radius:10px;
}




.services-row {
  display: flex;
  justify-content: center; /* centre horizontalement les cards de la ligne */
  gap: 30px; /* espace entre les cards */
  flex-wrap: wrap;
}




@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:10px;
}

.hero h2{
font-size:28px;
}

}






.intro-seo{
  text-align:center;
  color:white;
  padding:40px 20px 10px;
  max-width:950px;
  margin:auto;
}

.intro-seo h1{
  font-size:42px;
  margin-bottom:15px;
}

.intro-seo p{
  font-size:18px;
  line-height:1.6;
}


.inf-loc{
  text-align:center;
  color:white;
  padding:40px 20px 10px;
  max-width:950px;
  margin:auto;
}

.inf-loc h1{
  font-size:42px;
  margin-bottom:15px;
}

.inf-loc p{
  font-size:18px;
  line-height:1.6;
}
