:root {
    --gold: #ffde59;
    --dark: #000000;
    --white: #FFFFFF;
    --gray-light: #f5f5f5;
    --text-dark: #000000;
    --text-gray:#1a1a1a;
}

/* --- Global --- */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

.text-justify {
  text-align: justify !important;
}
.text-warning {
    --bs-text-opacity: 1;
    color: var(--gold) !important;
}

/* --- Header --- */
header {
	background-color: var(--dark);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header .nav-link {
	color: var(--gold) !important;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
}

header .nav-link::after {
	content: '';
	display: block;
	height: 3px;
	width: 0;
	background: var(--gold);
	transition: width 0.3s;
	position: absolute;
	bottom: 0;
	left: 0;
}

header .nav-link:hover::after {
	width: 100%;
}

navbar-toggler {
	border: none;
}

navbar-toggler .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  display: block;
  box-shadow: 0 7px 0 0 var(--gold), 0 14px 0 0 var(--gold);
}

navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-collapse {
  background-color: var(--dark);
}

.dropdown-menu {
	background-color: var(--dark);
	border: none;
}

.dropdown-item {
	color: var(--gold) !important;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	color: var(--dark) !important;
	background-color: var(--gold) !important;
	box-shadow: 0 0 10px var(--gold);
}

.nav-item.dropdown>.nav-link::after {
	display: none;
}

nav.breadcrumb {
	padding-left: 10px;
	margin-right: 0px !important; 
	margin-left: 0px !important;
	margin-bottom: 0px !important;
}

ol.breadcrumb {
	margin: 0;
	padding-top: 5px;
	padding-bottom: 5px;
}

nav.breadcrumb  a {
	text-decoration: none;
    color: #FFD700;
    transition: color 0.3s;	
}

/* Current page */
.breadcrumb li.active {
    color: #333;
    font-weight: bold;
}

/* --- Footer --- */
footer {
	background-color: #000000;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 20px;
}

footer h5 {
	color: var(--gold);
	font-weight: 600;
}

footer a {
	color: #fff;
	transition: all 0.3s ease;
}

footer a:hover {
	color: var(--gold);
	text-decoration: none;
	text-shadow: 0 0 8px var(--gold);
}

footer .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between; /* répartit les colonnes */
	gap: 30px;
}

footer .col-md-3 {
	flex: 1 1 22%; /* 4 colonnes égales avec un peu de marge */
	min-width: 220px; /* évite que les colonnes deviennent trop petites */
}


/* --- Buttons --- */
.btn-gold, .btn-outline-gold {
	font-weight: 600 !important;
	border-radius: 8px !important;
	padding: 12px 25px !important;
	text-decoration: none !important;
	display: inline-block !important;
	transition: all 0.3s ease !important;
}

.text-gold {
	color: var(--gold) !important;
	text-align: left !important;
	padding-left: 5px !important;
}

.btn-gold {
	background-color: var(--gold) !important;
	color: var(--dark) !important;
	background-image: none  !important;
}

.btn-gold:hover {
	background-color: #d9991e;
	color: #fff;
	background-image: none  !important;
}

.btn-outline-gold {
	background-color: transparent;
	border: 2px solid var(--gold);
	color: var(--gold);
}

.btn-outline-gold:hover {
	background-color: var(--gold);
	color: #000;
}

h2,h3 {
	margin-bottom: 20px;
}

/* --- Section Titles --- */
h2 {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	margin-top : 10px;
	gap: 10px;
}

h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--gold);
	margin: 15px auto 0;
	border-radius: 2px;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
}

ul.check, ul.check1, ul.faq {
	margin: 15px 0 0 20px;
    list-style: none;
    padding: 0;
}


ul.check li {
	margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #FFFFFF;
}

ul.check1 li {
	margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #FFFFFF;
}

ul.check li::before {
	content: "\f058"; /* code unicode Font Awesome */
    font-family: "Font Awesome 6 Free"; /* police FA */
    font-weight: 900; /* nécessaire pour style Solid */
    color: var(--gold);
    display: inline-block; /* assure l'affichage sur tous les navigateurs */
    line-height: 1; /* pour centrer verticalement avec le texte */
    margin-right: 4px;
}

ul.check1 li::before {
	content: "\f058"; /* code unicode Font Awesome */
    font-family: "Font Awesome 6 Free"; /* police FA */
    font-weight: 900; /* nécessaire pour style Solid */
    color: var(--gold);
    display: inline-block; /* assure l'affichage sur tous les navigateurs */
    line-height: 1; /* pour centrer verticalement avec le texte */
    margin-right: 4px;
}


ul li h3, ul li h4, ul li h5 {
	font-size: 1.0rem;
	font-weight: 400;
	display: inline;
	line-height: 1.7;
    margin: 0;
    padding: 0;
	font-family: 'Roboto', sans-serif;
}

ul.faq li strong {
	color: var(--gold);
}

ul.faq li em {
	color: #FFFFFF;
	margin-right: 10px;
	margin-left:  10px;
}

ol.check {
	margin: 15px 0 0 20px;
    padding: 0;
}
ol.check li {
	margin-left : 30px;
	margin-bottom: 10px;
    position: relative;
    padding-left: 2px;
    color: #FFFFFF;
}

/* --- Cards --- */
section {
	padding-bottom: 10px;
}
section h2 {
	padding-top: 10px;
}

section img {
	max-height: 400px; /* limite la hauteur de l'image */
	width: auto; /* garde les proportions */
	display: block;
	margin: 0 auto; /* centre l'image verticalement si nécessaire */
}

section p.title {
	font-size: 1.4rem;
	margin-bottom: 40px;
	color: #eee;
}

section.dark {
	background: var(--dark);
}

section.dark p {
	color: var(--white);
}

section.dark h3 {
	color: var(--white);
}

section.dark ul li {
	color: var(--white);
}

section.gray {
	background: var(--text-gray);
}

section.gray p {
	color: var(--white);
}

section.gray h3 {
	color: var(--white);
}

section.gray ul li {
	color: var(--white);
}

section .hero {
	padding: 80px 20px;
}

.section-buttons {
    display: flex;
    flex-wrap: wrap;       /* pour que les boutons passent à la ligne sur mobile */
    justify-content: center; /* centre horizontalement */
    gap: 12px;             /* espace entre les boutons */
    margin-top: 20px;      /* espace par rapport au texte */
}

div.container h2 {
	color: var(--gold);
}


.card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.1);
	margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	position: relative;
	background-color: var(--gold);
	padding: 20px;
}


.card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img {
	height: 220px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 12px 12px 0 0;
}

.card:hover img {
	transform: scale(1.05);
}

.card i {
	color: var(--dark);
    margin-right: 10px;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-body {
	padding: 25px;
}

.card-body p,.card p {
	font-size: 0.95rem;
	color: var(--text-gray) !important;
}

.card-body h3, .card h3 {
	color: var(--dark) !important; 
}

.zone img {
	max-height: 400px;
	width: auto; /* garde les proportions */
	display: block;
	margin: 0 auto; /* centre l'image verticalement si nécessaire */
}

.btn {
	font-weight: 600;
	border-radius: 8px;
	padding: 15px 30px;
	margin: 5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-light {
	background-color: var(--gold); /* doré */
	color: #222;
}

.btn-light:hover {
	background-color: var(--gold);
	color: #000;
}

.btn-dark {
	background-color: #000; /* noir profond */
	color: #ffde59;
}

.btn-dark:hover {
	background-color: #111;
	color: #fff;
}

.contact-info {
    list-style: none;
    padding: 0;
    line-height: 1.6;
}

.contact-info li a {
    color: #FFD700;
    text-decoration: none;
}

.contact-info li a:hover {
    text-decoration: underline;
}

form.contact-form {
	background: #1a1a1a;
	padding: 5px;
}

form a {
	color: #FFD700;
    text-decoration: none;
}

.contact-form label {
  top: 1rem;
  left: 1rem;
  color: #FFFFFF;
  font-size: 0.8rem;
  pointer-events: none;
  transition: 0.3s ease all;
  padding: 0 0.25rem;
}

.contact-form .ui-selectonemenu-label {
	font-size: 0.8rem;
}

/* --- Fade-in Animation --- */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.img-fluid {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

a {
    text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
    
.grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
/* ====== Cleanor style noir & doré ====== */
#tarteaucitronAlertBig {
  background: #111 !important;
  color: #fff !important;
  border-top: 3px solid var(--gold);
  font-family: 'Poppins', sans-serif;
}

#tarteaucitronAlertBig button {
  background: var(--gold) !important;
  color: #000 !important;
  border-radius: 5px;
  font-weight: 600;
  border: none;
}

#tarteaucitron #tarteaucitronServicesTitle {
  color: var(--gold) !important;
}

@media ( max-width : 992px) {
	footer .col-md-3 {
		flex: 1 1 45%; /* 2 colonnes par ligne sur tablette */
	}
}

@media ( max-width : 576px) {
	footer .col-md-3 {
		flex: 1 1 100%; /* 1 colonne par ligne sur mobile */
	}
}

@media (max-width: 767px) {
	section .hero {
    padding: 60px 15px; /* ajusté pour mobile */
  }
  section .hero h1, section .hero h2 {
  	margin-top :10px;
    font-size: 1.8rem; /* réduire un peu pour mobile */
  }
  section .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  section .hero .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}