/**
* 2007-2025 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-2025 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.
*/
.accueil-container {
  position: relative;
  background-color: #f7eee5;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.accueil-container img.logo {
  max-width: 642px;
  height: auto;
  z-index: 2;
  position: relative;
}

.accueil-container p {
  margin-top: 20px;
  font-size: 1.5em;
  color: #2c2666;
  z-index: 2;
  position: relative;
}

/* SVG déco générique */
.svg-deco {
  position: absolute;
  width: 300px;
  opacity: 0.2;
  z-index: 1;
}

/* SVG1 - Gauche */
.svg1 {
  top: 120px;
  left: -40px;
  transform: rotate(-10deg) scale(1.05);
  opacity: 0.22;
}

/* SVG2 - Droite */
.svg2 {
  top: 47px;
  right: -10px;
  transform: rotate(-15deg) scale(1.05);
  opacity: 0.25;
}

/* Image PNG déco */
.img-deco {
  position: absolute;
  width: 220px;
  opacity: 0.5;
  z-index: 1;
  bottom: 42px;
  right: 497px;
  transform: rotate(-6deg);
}

/* Responsive design */
@media (max-width: 600px) {
  .accueil-container {
    padding: 40px 10px;
  }

  .accueil-container p {
    font-size: 1.2em;
  }

  .svg-deco {
    width: 180px;
  }

  .img-deco {
    width: 140px;
  }
}



@media (max-width: 768px) {
  .accueil-container img.logo {
    max-width: 100%;
  }
}



