/* === CSS GLOBAL POUR LA PAGE BOUTIQUE RESPONSIVE === */

/* ------------------------ */
/*          MOBILE          */
/* ------------------------ */

/*--------------------------*/

/* ------------------------ */
/*         BANNIERE         */
/* ------------------------ */
@media screen and (max-width: 768px) {

  /* BANNIÈRE */
  .hero {
    background-color: white;
    height: 15dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }

}

/* ------------------------ */
/*         BOUTIQUE         */
/* ------------------------ */
@media screen and (max-width: 768px) {
  .article {
    flex-direction: column;
    text-align: center;
  }

  .article.reverse {
    flex-direction: column;
  }

  .article-content {
    width: 100%;
  }

  .article-content h2 {
    font-size: 2.5rem;
  }
}



/* ------------------------ */
/*         DESKTOP          */
/* ------------------------ */

/*--------------------------*/

/* ------------------------ */
/*         BANNIERE         */
/* ------------------------ */
@media screen and (min-width: 769px) {

  /* BANNIÈRE */
  .hero {
      background-image: url("../images/fond-noir.png");
      height: 18vh;
      position: relative;
  }
}

/* ------------------------ */
/*         BOUTIQUE         */
/* ------------------------ */
@media screen and (min-width: 769px) {

  .article-content h2 {
    font-size: 3rem;
  }
}



/* ------------------------ */
/*          GENERAL         */
/* ------------------------ */

.boutique {
  padding: 2rem;
  max-width: 1350px;
  margin: 0 auto;
}

.article {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  flex-wrap: wrap;

  /* ANIMATION */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); /* Ombre plus marquée */
}

.article.reverse {
  flex-direction: row-reverse;
}

.article-img {
  width: 300px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.article-content {
  flex: 1;
}

.article-content h2 {
  text-transform: uppercase;
  text-align: center;
  color: #ff0000;
  margin-bottom: 1rem;
}

.article-content p {
  font-size: 1.3rem;
  text-align: center;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

#infos {
  font-style: italic;
  font-size: 1rem;
}

#prix {
  font-style: normal;
  font-weight: bolder;
  font-size: 1.8rem;
}

/* Curseur par défaut */

.article-content h2, .article-content p {
  cursor: default;
}

/* Aller à la ligne dans la description */
.article-content p {
  white-space: pre-line;
}

/*-----------------------------*/

/* ACTUS */
.actu-container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actu-container h2 {
    font-size: 4rem;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 0rem;
    text-align: center;
}

.actu-container p {
    font-size: 2rem;
    font-weight: 650;
    line-height: 1.6;
    color: #000000;
}

.back-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #000000;
}

@media screen and (max-width: 768px) {

    .actu-container h2 {
        font-size: 2rem;
    }

    .actu-container p {
        font-size: 1.5rem;
    }
}