
/* TEST-APNBOIS-1234 */
/*************************************** Décompte Saint-Valentin ********************************************/
:root {
  --bois-dore: #855f13;
  --anthracite: #1e1e1a;
  --rose: #ff7aa8;
  --rose-fonce: #b11b52;
  --creme: #f8edd1;
  --tex: #fff7fb;
  --white:#000000;
}



.val-countdown {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--tex);
  background: linear-gradient(160deg, var(--rose-fonce), #6a0f34 60%, var(--anthracite));
  border-radius: 24px;
  margin: 20px;
  min-height: 40px;
}

.val-countdown::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; opacity: .1;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.35) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 40%, rgba(255,255,255,.25) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.18) 0 2px, transparent 3px);
  background-size: 220px 220px, 260px 260px, 300px 300px;
}

.val-countdown .val-sub-white { color: #f8f9fa; }



.val-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  padding: 20px;
}

.val-title {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
}

.val-sub {
    margin: 0;
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    }



.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 900px);
}

.tile {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  display: grid;
  place-items: center;
}

.num {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
}

.label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  opacity: .9;
}

.cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.2rem;
  border-radius: 16px;
  background:#ffffff1a;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border:1px solid #ffffff35;
}
.cta:hover { background:#ffffff28; }

.snow-canvas, .fx-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cupid {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(28px, 5vw, 48px);
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
}

@media (max-width:720px){
  .grid { grid-template-columns: repeat(2, 1fr); }
}






