/*
Theme Name: Beaver Builder Child Theme
Theme URI: https://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: https://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here...Remember to change the Version number above! */ 

/* HEADER */

#header-list p::before {
  content: "";
  display: inline-block;
  background-image: url("https://www.vosagences-triplegarantie.be/wp-content/uploads/2025/06/picto.png"); /* Remplace par ton image */
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  vertical-align: middle;
}

#header-list{
	width: 70%;
  	margin-left: auto; /* Aligne le bloc à droite */
  	text-align: left; /* Facultatif : garde le contenu aligné à gauche */	
}

@media (max-width: 480px) {

	#header-list{
		width: 80%;
  		margin: 0 auto; /* Aligne le bloc à droite */
  		text-align: left; /* Facultatif : garde le contenu aligné à gauche */	
		margin-top: 25px;
	}
	
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-header.visible {
  transform: translateY(0);
}

/* CHIFFRES */

#bloc-chiffres span{
	color: #C72A21;
	font-size: 50px;
	font-family: "Noto Serif", serif;
	text-transform: none;
}

/* AGENCES */

.agency-section {
  position: relative;  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.image-container {
  flex: 1 1 50%;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.info-card {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  padding-top: 40px;
	 padding-bottom: 40px;
	 padding-left: 40px; 
	padding-right: 40px;
  border-radius: 6px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
  max-width: 450px;
	display: flex;
    flex-direction: column;
}

.info-card h2 {
  	font-family: Poppins, sans-serif;
	font-weight: 300;
    font-size: 20px;
  text-transform: uppercase;
  color: #151947;
	margin-top: 0;
	letter-spacing: 1.45px;
	line-height: 34px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
	font-family: Poppins, sans-serif;
	font-weight: 300;
    font-size: 14px;
	line-height: 24px;
	color: #151947B3;
	letter-spacing: 1px;
}

.info-item a{
	color: #151947B3 !important;
	text-decoration: none;
}

.info-item i {
  font-size: 14px;
  color: #d00000;
  margin-right: 0.8rem;
  line-height: 1.5;
	font-weight: 900;
	width: 2rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #d00000;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
	font-weight: 300;
    font-size: 14px;
  transition: background-color 0.3s ease;
	text-align: center;
	letter-spacing: 0.75px;
}

.cta-button:hover {
  color: white !important;
	text-decoration: none;
}


/* VIDEO */

#video-list p::before {
  content: "";
  display: inline-block;
  background-image: url("https://www.vosagences-triplegarantie.be/wp-content/uploads/2025/06/picto.png"); /* Remplace par ton image */
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
  
	#row-avec-cle > .fl-row-content-wrap{
		background-image: none;
		background-color: #F5F5F5;
		min-height: auto;
		margin-top: 60px;
	}
	
	#row-avec-cle > .fl-row-content-wrap h2{
		font-size: 28px;
	}
	
	.agency-section {
    flex-direction: column;
    padding: 1rem;
  }

  .info-card {
    position: static;
    margin-top: 1rem;
    width: 100%;
    max-width: none;
  }

  .image-container {
    width: 100%;
  }
}