/**
* 2007-2026 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2026 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.bs-faq {

  padding: 20px;
}

.bs-section-title {
  color: #292dff;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.bs-faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ item */
.bs-faq-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.bs-faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bs-faq-question {
  background-color: #fff;
  padding: 18px 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: #444;
  transition: background 0.3s ease;
}

.bs-faq-question:hover {
  background-color: #f0f0ff;
}

.bs-faq-icon {
  font-size: 1.5rem;
  color: #3fa639;
  transition: transform 0.3s ease;
}

.bs-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.bs-faq-answer ul {
  margin-left: 20px;
  list-style: disc;
}

.bs-faq-item.active .bs-faq-answer {
  max-height: 1000px; /* assez pour le contenu */
  padding: 15px 25px 20px 25px;
}

.bs-faq-item.active .bs-faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media(max-width:768px){
  .bs-section-title { font-size: 2rem; }
  .bs-faq-question { font-size: 1rem; }
  .bs-faq-answer { font-size: 0.95rem; }
}





/* ===== SECTION VIDEO ===== */
.bs-video-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  background-color: #000;
}

/* Video */
.bs-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Overlay sombre */
.bs-video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

/* Contenu texte */
.bs-video-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.bs-video-overlay h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
}

.bs-video-overlay p {
  font-size: 1.2rem;
  max-width: 720px;
  line-height: 1.6;
  color: #e8e8e8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bs-video-overlay h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .bs-video-section {
    height: 60vh;
  }

  .bs-video-overlay h2 {
    font-size: 2.1rem;
  }

  .bs-video-overlay p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .bs-video-section {
    height: 55vh;
  }

  .bs-video-overlay h2 {
    font-size: 1.8rem;
  }

  .bs-video-overlay p {
    font-size: 0.95rem;
  }
}
