/* =======================================
   SHOWROOM RENOSTYLES — STYLES GLOBAUX
   ======================================= */

/* ------------------------------
   BACKGROUND VIDEO / IMAGE
--------------------------------*/
#bgVideo,
#bgImage {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.35;
  filter: blur(2px) brightness(1.6);
}

#whiteOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  z-index: 2;
  pointer-events: none;   /* 🔥 ne bloque plus les clics */
}

/* ------------------------------
   PAGE SETUP
--------------------------------*/
html, body {
  height: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  background: #fff;
}

body {
  overflow-x: hidden;
}

/* ------------------------------
   ANIMATIONS
--------------------------------*/
.page-enter {
  animation: pageEnter 0.7s ease forwards;
}

@keyframes pageEnter {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.slide-out {
  animation: slideOut 0.7s ease forwards;
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-60px); opacity: 0; }
}

/* ------------------------------
   GLASS BOX
--------------------------------*/
.glass-box {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 45px;
  width: 100%;
  max-width: 1400px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  position: relative;
  z-index: 3;
}

/* ------------------------------
   MENU TILES (INDEX)
--------------------------------*/
.menu-tile {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  transition: .25s ease;
}

.menu-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s ease;
}

.menu-tile:hover img {
  transform: scale(1.08);
}

.menu-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tile-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-size: 1.7rem;
  font-weight: 700;
  padding: 12px 0;
  text-align: center;
  color: #000;
}

/* ------------------------------
   STORE GRID (GAMME-PAGES)
--------------------------------*/
.store-item {
  cursor: pointer;
  transition: .25s ease;
}

.store-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform .3s ease;
}

.store-item:hover img {
  transform: scale(1.06);
}

.store-label {
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

/* ------------------------------
   RETOUR BUTTON
--------------------------------*/
.btn-retour {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.2rem;
  padding: 6px 18px;
  border-radius: 25px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #ccc;
  cursor: pointer;
  transition: .2s ease;
  z-index: 10;
}
.btn-retour:hover {
  background: #fff;
}

.page-layer {
  position: relative;
  z-index: 3;
}

