/* ----- Mise en page générale ----- */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content_boutique_physique {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 100%;

  min-height: calc(100vh - 120px);

  margin: 0 auto;
  padding: 1rem;

  gap: 2rem;

  overflow: hidden; /* sécurité */
}

.fond-boutique-physique {
  background-image: url("../images/fonds/fond_boutique_physique.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

/* ----- Style "Affiche sur un mur" pour l'article ----- */
.hero {
  background: rgba(247, 241, 211, 0.88); /* plus transparent */
  color: #2a1f0f;

  padding: 1.4rem 1.8rem;   /* réduit */
  max-width: 420px;         /* beaucoup plus léger visuellement */

  border: 1px solid rgba(214, 201, 162, 0.8);

  border-radius: 6px;

  box-shadow:
    0 4px 14px rgba(0,0,0,0.35),
    -6px 6px 0 rgba(0,0,0,0.12); /* moins lourd */

  transform: rotate(-0.6deg); /* presque droit */

  position: relative;

  backdrop-filter: blur(1px); /* optionnel mais joli sur fond chargé */
}

/* Effet de papier déchiré */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 6px,
    rgba(0,0,0,0.03) 6px 7px
  );
  pointer-events: none;
}

/* Bande adhésive au-dessus */
.hero::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 140px;
  height: 32px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  backdrop-filter: blur(1px);
  border-radius: 4px;
}

/* Texte */
.hero p {
  font-size: 1rem;
  line-height: 1.5;
}

/* ----- Lien Salle d'Art ----- */
.lien-salle-art {
  color: #7a2cff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lien-salle-art:hover {
  color: #b388ff;
  text-shadow: 0 0 8px rgba(179,136,255,0.6);
}

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

/* TABLETTE */
@media (max-width: 900px) {

  .content_boutique_physique {
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .hero {
    transform: rotate(0deg); /* on enlève l'effet penché sur petit écran */
    max-width: 80%;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .content_boutique_physique {
	flex-direction: column;
    margin: 1rem auto;
    padding: 1rem;
    gap: 1.2rem;
  }

  .hero {
    padding: 1.5rem;
    box-shadow:
      0 4px 12px rgba(0,0,0,0.4),
      -6px 6px 0 rgba(0,0,0,0.12);
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* bande adhésive plus petite */
  .hero::after {
    width: 100px;
    height: 26px;
    top: -14px;
  }
}