.breadcrumb-section {
 
}

.breadcrumb-text {
	text-align: center;
}

.breadcrumb-text h2 {
	font-size: 48px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.breadcrumb-text .breadcrumb-controls a {
	font-size: 16px;
	color: #ffffff;
	margin-right: 15px;
	position: relative;
}

.breadcrumb-text .breadcrumb-controls a:after {
	position: absolute;
	right: -13px;
	top: -2px;
	content: "";
	font-family: "FontAwesome";
	font-size: 16px;
	color: #ffffff;
}

.breadcrumb-text .breadcrumb-controls a i {
	margin-right: 2px;
}

.breadcrumb-text .breadcrumb-controls span {
	font-size: 16px;
	color: #ffffff;
}

.video-bootybuilder {
  width: 100%;
  background-color: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* ratio 16:9 */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.grid-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 30px;
  background-color: #f5f5f5;
}

/* Partie gauche */
.left-grid {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 10p;
}

.grid-item {
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.grid-item h3 {
  font-size: 50pt;
  margin-bottom: 10px;
  color:  black;
  text-align: center;
  font-weight: 800;
}

.grid-item p {
  font-size: 15pt;
  color: black;
  text-align: center;
  font-weight: 500;
}

/* Partie droite */
.right-image {
  flex: 1 1 400px;
  background-image: url('image-transparente.png'); /* 🔄 Change avec ton image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 40px;
  align-items: center;
  justify-content: center;
  background-color: #372310;
}

.overlay-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 800;
}


.overlay-text p {
  text-align: justify;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-section {
    flex-direction: column;
    padding: 20px;
  }

  .left-grid {
    grid-template-columns: 1fr;
  }

  .right-image {
    padding: 20px;
  }
}


.card-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

/* Carte stylée */
.card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card h3 {
  margin: 16px;
  font-size: 1.3rem;
  color: #333;
  text-align: center;
}

.card p {
  margin: 0 16px 16px;
  color: #555;
  text-align: justify;
  flex-grow: 1;
}

.card-btn {
  display: inline-block;
  margin: 0 16px 16px;
  padding: 10px 15px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s ease;
}

.card-btn:hover {
  background-color: #e4381c;
}

/* Small screens (≥ 600px) : 2 cartes */
@media (min-width: 600px) {
  .card-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium & large screens (≥ 900px) : 3 cartes */
@media (min-width: 900px) {
  .card-section {
    grid-template-columns: repeat(3, 1fr);
  }
}


.cta1-section {
	background-color: #e4381c;
	padding: 38px 0;
}

.cta1-section .cta-text {
	float: left;
}

.cta1-section .cta-text h3 {
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.cta1-section .cta-text p {
	color: #ffffff;
	margin-bottom: 0;
}
 .cta1-title{
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
 }

 .col-lg-12 p{
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 1.4rem;
 }

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.button-container {
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: black;
  color: white;
  text-decoration: none; /* Supprime le soulignement */
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e4381c;
}

