*{
    margin: 0; 
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
}
figure {
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
}
figure > img {
    width: 100%;
    filter: brightness(0.7); 
}
figure > div {
    position: absolute;
    Text-align: center; 
    width: 100%; 
    height: 100px;
    top: 33.33%;  
    
}
figure > div > h1{
    font-size: 70px;
    font-weight: 600;
    color: 	white;
    font-family: "Lucida Handwriting", cursive;
    text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.4),
     1px -1px 0 rgba(0, 0, 0, 0.4),
    -1px  1px 0 rgba(0, 0, 0, 0.4),
     1px  1px 0 rgba(0, 0, 0, 0.4);
    animation: glow 1.5s ease-in-out infinite alternate;
}
figure > div > p{
    font-size: 35px; 
    color: #e1f0f8; 
    font-weight: 700;
    text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;  
    /* 
     text-shadow:
    -2px -2px 0 black,
    2px -2px 0 black,
    -2px 2px 0 black,
    2px 2px 0 black,
    0 -2px 0 black,
    0 2px 0 black,
    -2px 0 0 black,
    2px 0 0 black;
    */
}
@keyframes glow {
  from {
    text-shadow: 0 0 5px #00f, 0 0 10px #00f;
  }
  to {
    text-shadow: 0 0 10px #0ff, 0 0 15px #0ff;
  }
}
figure > div > a{
    font-size: 30px;
    color: #17858a;
}
html{
	background: linear-gradient(135deg, #f9f9f9 0%, #e6f0ff 100%); 
}
header ul{
    list-style-type: none;
    display: flex;
    justify-content: space-around; 
    width: 400px;   
    margin-top: 30px; 
    margin-right: 30px;  
}
header{
    display: flex; 
    justify-content: space-between;  
}
header div{ 
    margin: 15px;
    text-align: center;
}
footer ul{ 
    list-style-type: none;
    display: flex;
    justify-content: space-around; 
}
h1, h2, h3{
    color: #082e44; 
} 
p{
    color: #333333;  
}
a{ 
    text-decoration : none; 
    color: #082e44; 
    font-size: 18px;
    font-weight: 600;
}
nav a{
    font-size: 22px;
}
a:hover{  
    color:#007381;  
}
#navigationPrincipale > input[type=checkbox], #navigationPrincipale > label{
	display:none;
}
#navigationPrincipale input[type=checkbox]:checked ~ ul{
	display: block;
}  

footer{
    text-align: center;
    background: #ffffff;
}
footer p{
    margin-top: 30px;
    font-size: 10px; 
    padding: 5px;
}

.services-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.link-main {
  display: inline-block;
  margin-top: 20px;
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.link-main:hover {
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

.cta-center {
  text-align: center;
  margin-bottom: 50px;
}

.btn-main {
  background-color: #0056b3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-main:hover {
  background-color: #003d80;
}

.trust-box {
  background-color: #f1f5f9;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.trust-box h3 {
  font-size: 1.75rem;
  margin-bottom: 20px; 
  color: #1e293b;
}

.trust-box ul {
  list-style: none;
  padding: 0;
  font-size: 1.05rem;
  color: #333;
}

.trust-box li {
  margin-bottom: 12px;
}


@media all and (max-width: 1300px){ 
  header > div {
    display: none;
  }
  figure > div > h1{
    font-size: 55px;
  }
  figure > div > p{ 
    font-size: 30px;  
  } 

}
@media all and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  figure > div > h1{
    font-size: 47px;
  }
  figure > div > p{  
    font-size: 25px;   
  } 
}
@media all and (max-width: 768px) { 
  .services-grid {
    grid-template-columns: 1fr;
  }
  figure > div > h1{
    font-size: 30px;
    font-weight: 600;
  }
  figure > div > p{ 
    font-size: 13px;   
    font-weight: 700;
  } 
  footer > ul{
    display: grid;
  }
  footer > ul > li{
    padding: 10px 0 10px 0;
  }
  #navigationPrincipale > label{
		position: absolute;
		top:0px; 
		right:0px;
		display:block; 
		margin: 20px 40px;
		width:60px;
		height:60px;
	}
  header {
    display : block; 
  } 
  #navigationPrincipale ul{    
		display:none;
    width: 100%; 
    margin: 10px 0 10px 0;
	} 
	#navigationPrincipale ul li, #navigationPrincipale ul li a{
		width: 100%;
		text-align: center; 
    padding: 10px 0 10px 0; 
	}
	#navigationPrincipale li:hover ul{
		display:none; 
	}
} 



* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; line-height:1.6; color:#333; background:#f9f9f9; }
.container { width:90%; max-width:1000px; margin:0 auto; }

/* HEADER */
.site-header { background:#fff; box-shadow:0 2px 4px rgba(0,0,0,0.1); }
.site-header .container { display:flex; justify-content:space-between; align-items:center; padding:1rem 0; }
.site-header h1 { font-size:1.5rem; color:#333; }
.site-header nav ul { list-style:none; display:flex; gap:1rem; }
.site-header nav a {
  color:#333; text-decoration:none; padding:.5rem .75rem;
}
.site-header nav a.active,
.site-header nav a:hover {
  background:#0074D9; color:#fff; border-radius:4px;
}

/* MAIN */
.contact-page { padding:2rem 0; background:#fff; margin-top:1rem; border-radius:4px; }
.contact-page h2 { margin-bottom:1rem; color:#0074D9; }
.contact-page p { margin-bottom:1rem; }

/* FORM */
.contact-form label { display:block; margin-top:1rem; font-weight:bold; }
.contact-form input,
.contact-form textarea {
  width:100%; padding:.5rem; margin-top:.25rem;
  border:1px solid #ccc; border-radius:4px;
}
.contact-form button {
  margin-top:1.5rem; background:#0074D9; color:#fff;
  border:none; padding:.75rem 1.5rem; font-size:1rem;
  border-radius:4px; cursor:pointer;
}
.contact-form button:hover {
  background:#005fa3;
}

/* INFO CONTACT */
.info-contact { margin-top:2rem; font-size:0.9rem; color:#555; }

/* FOOTER */
.site-footer { text-align:center; padding:1rem 0; background:#fff; margin-top:2rem; font-size:0.9rem; color:#777; }
.site-footer a { color:#0074D9; text-decoration:none; }


.realisations-page h2 {
  color: #0074D9;
  margin-top: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.image-placeholder {
  width: 100%;
  height: 180px;
  background-color: #e0e0e0;
  border: 2px dashed #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.project h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.project p {
  font-size: 0.95rem;
  color: #555;
}



.entreprise-page h2 {
  margin-top: 2rem;
  color: #0074D9;
}

.entreprise-page section {
  margin-bottom: 2rem;
}

.entreprise-page h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #444;
}

.entreprise-page p,
.entreprise-page ul {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.entreprise-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.cta {
  background: #f0f8ff;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #cce0f0;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #0074D9;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  background: #005fa3;
}