@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

body{
 /* padding-top:70px; */
 font-family: "Inter", sans-serif;

}

.slider-img{
  height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: middle;
}

#entete{
  background-color:#efefef;
  min-height: 30px;
  text-align: center;
  color:#FC8436;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  z-index:100;
  position: relative;
  padding-top:5px;
}

nav li{
  position: relative;
  padding: 0 12px;
}

nav li:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background-color: #ddd;
}

nav li a{
  position: relative;
  color: #333;
  transition: color .25s ease;
  font-family: "Inter", sans-serif;
  font-weight:400;
}

nav li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #FC8436;
  transition: width .3s ease;
}

nav li a:hover{
  color: #FC8436;
}

nav li a:hover::after{
  width: 100%;
}

nav li a:hover{
	color:#FC8436;
}

nav li a.active{
  color: #FC8436;
  font-weight: 600;
}

nav li a.active::after{
  width: 100%;
  background-color: #FC8436;
}

.material-symbols-outlined {
  color: #FC8436;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

#som1 .material-symbols-outlined{
  font-variation-settings:
  'FILL' 0,
  'wght' 500,
  'GRAD' 0,
  'opsz' 48
}

/* Section services */
#som1{
  margin-top: 2rem;
}

/* Card */
.service-card{
  border: 1px solid #eee;
  border-radius: 16px;
  transition: all .3s ease;
  background: #fff;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Icone */
.service-icon{
  margin-top: 1.75rem;
  font-size: 48px;
  color: #FC8436;
}

.service-icon span{
  font-size: 48px;
}

/* Titre */
.service-card .card-title{
  margin-top: .75rem;
  font-weight: 600;
}

/* Texte */
.service-card .intro{
  font-size: .95rem;
  color: #666;
}

/* Bouton */
.service-card .btn{
  border-radius: 999px;
  padding: .4rem 1.1rem;
}

/* Responsive */
@media (max-width: 767px){
  .service-card{
    text-align: center;
  }
}

.somz1 h3{
  font-family: "Inter", sans-serif;
  font-weight:400;
  font-size:18px;
  text-align:center;
   color: #FC8436;
}

.somz1 h1{
  font-family: "Inter", sans-serif;
  font-weight:600;
  font-size:24px;
  text-align:center;
   color: #FC8436;
}

.badge {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 137, 0, .15);
    border: 1px solid rgba(255, 137, 0, .35);
    color: #FC8436;
    font-weight: 900;
    font-size: .9rem;
}

.badge .material-symbols-outlined {
  color: #FC8436;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 12
}

.badge-feature{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .45rem .75rem;
  font-size: .85rem;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(252,132,54,.12);
  color: #FC8436;
  margin:4px;
}

.badge-feature .icon-badge{
  font-size: 18px;
  line-height: 1;
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'opsz' 20;
}

.parallax-section{
  position: relative;
  height: 420px;
  background-image: url("../IMG/slide-auto.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

body.page-rubrique .parallax-section{
  height: 300px;
  background-image: url("img/slide-1.jpg");
}

/* Overlay pour lisibilité */
.parallax-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.parallax-overlay{
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.6),
    rgba(0,0,0,.2)
  );
}

/* Contenu */
.parallax-content{
  position: relative;
  max-width: 600px;
}

/* Responsive (désactive parallax mobile) */
@media (max-width: 768px){
  .parallax-section{
    background-attachment: scroll;
    height: auto;
    padding: 4rem 0;
  }
}

.titre-orange{
  font-family: "Inter", sans-serif;
  font-weight:600;
  color: #FC8436;
}

.btn-primary{
	background-color: #FC8436;
	border-color: #FC8436;
}

.btn-primary:hover,
.btn-primary:focus{
  background-color: #FF9A5A; /* orange plus léger */
  border-color: #FF9A5A;
}

/* ====== STRUCTURE GLOBALE FORM CONTACT - DONT SOM ====== */
form fieldset{
  border: none;
  padding: 0;
  margin: 0;
}

form legend{
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
}

/* Groupe */
.editer-groupe{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}

/* Champs pleine largeur */
.editer_texte,
.editer_sujet{
  grid-column: 1 / -1;
}

/* ====== LABELS ====== */
.editer label{
  display: block;
  margin-bottom: .35rem;
  font-weight: 500;
  font-size: .9rem;
  color: #333;
}

/* Obligatoire */
.editer.obligatoire label strong{
  color: #FC8436;
  font-weight: 600;
}

/* ====== INPUTS ====== */
.editer input[type="text"],
.editer textarea{
  width: 100%;
  padding: .55rem .75rem;
  font-size: .95rem;
  border-radius: .5rem;
  border: 1px solid #ced4da;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* Focus */
.editer input:focus,
.editer textarea:focus{
  outline: none;
  border-color: #FC8436;
  box-shadow: 0 0 0 .2rem rgba(252,132,54,.25);
}

/* Textarea */
.editer textarea{
  resize: vertical;
}

/* ====== CIVILITÉ (RADIOS) ====== */
.saisie_civilite fieldset{
  display: flex;
  gap: 1.25rem;
  border: none;
  padding: 0;
}

.saisie_civilite legend{
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.saisie_civilite .choix label{
  display: flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  font-weight: 400;
}

/* Radios modernes */
.saisie_civilite input[type="radio"]{
  accent-color: #FC8436;
  transform: scale(1.1);
}

/* ====== BOUTON SUBMIT ====== */
form button,
form input[type="submit"]{
  margin-top: 1.5rem;
  padding: .6rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  background: #FC8436;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}

form button:hover,
form input[type="submit"]:hover{
  background: #e56f24;
  transform: translateY(-1px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px){
  .editer-groupe{
    grid-template-columns: 1fr;
  }
}

.form-devis-som legend{
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight:600;
  color: #FC8436;
}

/* ==== FOOTER ==== */

footer{
	background:#0B1B3A;
	color:#fff;
	font-family: "Inter", sans-serif;
}

footer h2{
	color:#fff;
	font-family: "Inter", sans-serif;
	font-size:20px;
}

footer h2 span{
	color:#FC8436;
}

.fin-footer{
	border-top:1px solid #fff;
	margin-top:5px;
	padding-top:5px;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-weight:200;
	color: #FC8436;
}

/* ==== ARTICLE ==== */

.page-article main{
	min-height: 400px;
}


#entete-article{
  display: flex;
  align-items: center;        /* centrage vertical */
  justify-content: center;    /* centrage horizontal */

  margin-top: -10px;
  min-height: 200px;

  /* Image + overlay */
  background-image:
    linear-gradient(rgba(11,27,58,.45), rgba(11,27,58,.65)),
    url("img/fond-coeur.png");

  background-size: cover;
  background-position: center;
}

#entete-article #surtitre{
	font-family: "Inter", sans-serif;
	font-weight:200;
	color: #fff;
	font-size:24px;
}

#entete-article #centre{
  text-align: center; 
}

#entete-article h1{
	font-family: "Inter", sans-serif;
	font-weight:500;
	color: #fff;
	font-size:30px;
}

h2.spip{
	font-family: "Inter", sans-serif;
	font-weight:500;
	font-size:20px;
	color: #FC8436;
}

p{
	font-family: "Inter", sans-serif !important;
}

.texte ul{
  list-style: none;
  padding-left: 0;
}

.texte .material-symbols-outlined {
  color: #0B1B3A;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 12
}

.list-icon{
  list-style: none;
  padding-left: 0;
}

.list-icon li{
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
}

.list-icon i{
  color: #FC8436;
  font-size: 1rem;
  margin-top: .2rem;
}

.arbo, .arbo a{
	font-family: "Inter", sans-serif;
	font-weight:300;
	font-size:12px;
	color: #FC8436;
	text-decoration: none;
}

.page-rubrique .parallax-content, .page-article .parallax-content{
  position: relative;
  text-align:center;
  font-family: "Inter", sans-serif;
  width:100% !important;
  max-width:100%
}

.page-rubrique .parallax-content span, .page-article .parallax-content span{
  color: #FC8436;
  font-family: "Inter", sans-serif;
}

.page-rubrique h1{
	color: #FC8436;
  	font-family: "Inter", sans-serif;
	font-weight:500;
	font-size:30px;
	text-align: center
}

.btn-outline-primary{
	border-color:#0B1B3A !important;
	color: #0B1B3A !important;
}

.btn-outline-primary:hover{
	border-color:#0B1B3A !important;
	color: #fff !important;
	background-color: #0B1B3A !important;
}

.pied-seconde-ligne{
	margin-top:5px;
}

.pied-seconde-ligne a{
	margin:5px;
	color: #FC8436;
  	font-family: "Inter", sans-serif;
	font-weight:300;
	text-decoration:none;
	
}

.pied-seconde-ligne .material-symbols-outlined {
  font-size: 20px;          /* ← taille réelle de l’icône */
  line-height: 1;
  vertical-align: middle;
	
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 18
}

.card-som {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card-som.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-devis-som {
  opacity: 0;
  transform: translateX(60px);
}

.card-rub {
  opacity: 0;
  transform: translateX(-60px);
}

body .spip_logo{
	max-width:100% !important;
	height: auto !important;
}