/* ═══════════════════════════════════════════════════════════
   Landing — tuveuxboirequoi.fr
   ═══════════════════════════════════════════════════════════ */

/* ── Page ─────────────────────────────────────────────────── */
.lp {
  min-height: 100svh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: clip;
}

.lp-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.lp-blob--a {
  width: 480px; height: 480px;
  background: rgba(155,48,255,0.13);
  top: -160px; left: -160px;
  animation: ba 14s ease-in-out infinite alternate;
}
.lp-blob--b {
  width: 360px; height: 360px;
  background: rgba(255,45,120,0.08);
  bottom: -80px; right: -80px;
  animation: bb 11s ease-in-out infinite alternate;
}
@keyframes ba { to { transform: translate(50px, 40px) scale(1.1); } }
@keyframes bb { to { transform: translate(-35px, -25px) scale(1.08); } }

/* ── Main ─────────────────────────────────────────────────── */
.lp-main {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 8vh, 4.5rem) 1.25rem clamp(1.5rem, 4vh, 2.5rem);
}

/* ── Logo ─────────────────────────────────────────────────── */
.lp-logo {
  width: clamp(80px, 20vw, 120px);
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(155,48,255,0.5));
  animation: float 5s ease-in-out infinite;
  margin-bottom: 1rem;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Badge statut ─────────────────────────────────────────── */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 99px;
  padding: 0.25rem 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.lp-badge--open  { background: rgba(0,230,118,0.08);  border: 1px solid rgba(0,230,118,0.22);  color: var(--success); }
.lp-badge--closed{ background: rgba(255,61,61,0.08);   border: 1px solid rgba(255,61,61,0.22);   color: var(--danger); }

.lp-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-badge--open  .lp-badge__dot { background: var(--success); animation: pulse-dot 1.8s ease infinite; }
.lp-badge--closed .lp-badge__dot { background: var(--danger); }
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(0,230,118,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); }
}

/* ── Titre ────────────────────────────────────────────────── */
.lp-title {
  font-size: clamp(2rem, 9vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.lp-sub {
  font-size: clamp(0.85rem, 2.8vw, 0.98rem);
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* ── CTA ──────────────────────────────────────────────────── */
.lp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 360px;
  padding: 0.9rem 1.5rem;
  background: var(--gradient);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 3.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(155,48,255,0.35);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-bottom: 1.5rem;
}
.lp-cta:hover { filter: brightness(1.1); box-shadow: 0 6px 32px rgba(155,48,255,0.5); transform: translateY(-2px); color: #fff; }
.lp-cta:active { transform: translateY(0); }
.lp-cta__arrow { margin-left: auto; opacity: 0.75; transition: transform 0.2s; }
.lp-cta:hover .lp-cta__arrow { transform: translateX(4px); }
.lp-cta--off {
  opacity: 0.5; cursor: default; pointer-events: none;
  background: rgba(136,136,136,0.12);
  box-shadow: none; border: 1px solid rgba(136,136,136,0.18);
  color: var(--text-muted);
}

/* ── Avantages ────────────────────────────────────────────── */
.lp-perks {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.lp-perk {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  text-align: center;
}
.lp-perk__icon {
  font-size: 1.35rem;
  line-height: 1;
}
.lp-perk div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.lp-perk strong {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.lp-perk span {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.lp-perk__divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── Recherche autre ville ─────────────────────────────────── */
.lp-search-wrap {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.lp-search-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
  font-weight: 600;
}

.lp-search {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  height: 44px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-search:focus-within {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(155,48,255,0.1);
}
.lp-search > span { padding: 0 0.65rem; font-size: 0.9rem; flex-shrink: 0; }
.lp-search input {
  flex: 1; background: transparent; border: none; outline: none;
  box-shadow: none; color: var(--text); font-family: var(--font-body);
  font-size: max(16px, 0.9rem); padding: 0; height: 100%;
  -webkit-appearance: none;
}
.lp-search input::placeholder { color: var(--text-dim); }
.lp-search button {
  background: var(--violet); border: none; color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem;
  padding: 0 0.9rem; height: 100%; cursor: pointer; transition: background 0.15s;
  flex-shrink: 0;
}
.lp-search button:hover { background: var(--pink); }

#city-msg {
  font-family: var(--font-heading); font-size: 0.8rem;
  font-weight: 700; min-height: 1.2em; letter-spacing: 0.02em;
}
#city-msg.success { color: var(--cyan); }
#city-msg.error   { color: var(--pink); }

/* ── Suivre commande ──────────────────────────────────────── */
.lp-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 360px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 10px;
  transition: all 0.2s;
}
.lp-track:hover {
  color: var(--violet);
  border-color: rgba(155,48,255,0.4);
  background: rgba(155,48,255,0.06);
}

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer {
  position: relative; z-index: 1;
  text-align: center; padding: 1rem;
  color: var(--text-dim); font-size: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (min-width: 640px) {
  .lp-cta, .lp-perks, .lp-search-wrap, .lp-track { max-width: 420px; }
}

@media (max-width: 375px) {
  .lp-logo  { width: 76px; }
  .lp-title { font-size: 1.85rem; }
  .lp-sub   { font-size: 0.82rem; margin-bottom: 1.25rem; }
  .lp-cta   { padding: 0.8rem 1rem; font-size: 0.9rem; }
  .lp-perk strong { font-size: 0.68rem; }
  .lp-perk span   { font-size: 0.62rem; }
}
