/**
* 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.
*/
/* ===== Base section ===== */
.bs-infos-pratiques {
  margin-bottom:30px;
}

.bs-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title */
.bs-section-title {
  color: #292dff;
  font-size: 2.6rem;
  /*text-align: center;*/
  margin-bottom: 30px;
  position: relative;
}


/* Grid */
.bs-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Cards */
.bs-info-card {
  background: linear-gradient(145deg, #ffffff, #f1f3ff);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s ease;
}

/* Hover float + shadow */
.bs-hover-float:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Card Titles */
.bs-info-card h3 {
  font-size: 1.6rem;
  color: #292dff;
  margin-bottom: 12px;
}

/* Links */
.bs-info-card a {
  color: #3fa639;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bs-info-card a:hover {
  text-decoration: underline;
}

/* Map styling */
.bs-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.bs-map:hover {
  transform: scale(1.02);
}

/* Horaires tableau */
.bs-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  color: #333;
}

.bs-hours-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.bs-hours-table td:first-child {
  font-weight: 600;
  color: #292dff;
  width: 30%;
}
/*image contact*/

.bs-card-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}

.bs-card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bs-card-image img:hover {
  transform: scale(1.05);
}


/* ======================== */
/* ===== RESPONSIVE ======= */
/* ======================== */

@media (max-width: 1024px) {
  .bs-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bs-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bs-section-title {
    font-size: 2.2rem;
  }

  .bs-section-title::after {
    width: 50px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .bs-section-title {
    font-size: 1.9rem;
  }

  .bs-info-card h3 {
    font-size: 1.4rem;
  }

  .bs-hours-table td {
    padding: 8px 10px;
    font-size: 0.95rem;
  }
}
