/* =========== ABOUT SECTION =========== */
.about-one {
  position: relative;
  display: block;
  padding: 60px 0 80px;
  z-index: 1;
}

.about-one__image-wrapper {
    text-align: center;
    padding: 20px;
}

.about-one__main-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-one__btn-box .about-one__btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #000;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-one__btn-box .about-one__btn:hover {
    background-color: #000;
    color: #fff;
}


.video-popup {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #B9121B;
  color: white;
  display: flex; /* flex au lieu de inline-flex */
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  font-size: 24px;
  z-index: 1;
  line-height: 1; /* important pour centrer l'icône */
}

.video-popup i {
  display: block; /* pour que l'icône soit un bloc et centré */
  line-height: 1;
}

.video-popup::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.7);
  animation: pulse-ring 2s infinite;
  z-index: 0;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

.video-popup:hover,
.video-popup:focus {
  background-color: #B9121B;
  box-shadow: 0 6px 12px rgba(204, 0, 0, 0.7);
  transform: scale(1.1);
  outline: none;
}

.video-popup:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(204, 0, 0, 0.7);
}


/* =========== PAGES ABOUTS =========== */
.page-header__inner {
  text-align: center;
}

.page-header__inner h2 {
  color: white;
  margin-bottom: 10px;
}

/* Cette partie manquait */
.thm-breadcrumb__inner {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.thm-breadcrumb {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.thm-breadcrumb li a {
  color: white;
  text-decoration: none;
}

.thm-breadcrumb li span {
  color: white;
}

.thm-breadcrumb li i.fas.fa-home {
  margin-right: 5px;
}
