/**
* 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.
*/
:root {
  --orange: #e6b65c;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.hero {
  min-height: 100vh;
  background: url("https://popcorn.alsace/img/cms/acc1POPCORN.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}


.cta-wrapper {
  width: 100%;
  display: flex;
}


.btn-half {
  width: 50%;
}


.btn-pop {
  border-radius: 150px 150px 0px 0px;
  background: #0b132b;
  border: none;
  /*padding: 24px;*/
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-pop:hover {
  transform: translateY(10px);
  box-shadow: 0 12px 25px rgba(11,19,43,0.35);
}



.btn-content {
    display: flex;
    gap: 20px;
    color: white;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}


.pop1 img {
  width: 100px;
  height: 100px;
  transition: opacity 0.3s ease;
}


.pop2 {
  position: relative;
  margin-top:30px;
}

.pop2 .hover-img {
  margin-top: -30px;
  width: 260px;
  position: absolute;
  left: -135px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pop2 .label {
  font-family: 'Shadows Into Light', cursive;
  font-size: 28px;
  white-space: nowrap;
}


.btn-text {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

span.label {
    color: white;
}
.btn-pop:hover .pop1 img {
  opacity: 0;
}

.btn-pop:hover .hover-img {
  opacity: 1;
  transform: scale(1.05);
}


.link-manuscrit {
  font-family: 'Shadows Into Light', cursive;
  font-size: 20px;
  color: var(--orange);
  text-decoration: none;
  position: relative;
  margin-left: 6px;
}
p.btn-text {
    color: white;
}
.link-manuscrit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.4s ease;
}

.link-manuscrit:hover::after {

  width: 100%;
}
a:hover {
    color: var(--orange);
    text-decoration: none;
}
a:focus, a:hover {
    /* color: #198195; */
    
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
  }
  .btn-half {
    width: 100%;
  }

  .btn-content {
    flex-direction: column;
    text-align: center;
  }
}



span.highlight-question {
    font-size: 20px;
}


#imgvendre {
  width: 260px;
  height: auto;
}
#imghovervendre {
  width: 100px;
  height: 100px;
  left: -269px;
}
span#pop2vendre {
  position: absolute;
  left: -148px;
}