/* ============================================
   La Galerie Le Club — Page d'attente
   ============================================ */

:root {
  --gold-light: #fdf0bf;
  --gold: #f3cf63;
  --gold-deep: #c9982f;
  --red: #e2241a;
  --red-deep: #9c1610;
  --black: #060504;
  --black-soft: #120f0c;
  --black-card: rgba(255, 255, 255, 0.04);
  --border-gold: rgba(243, 207, 99, 0.25);
  --font-script: 'Great Vibes', cursive;
  --font-display: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gold-light);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ============================================
   Background — animated gradient base
   ============================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, #1a1208 0%, var(--black) 55%, #000 100%);
  z-index: -3;
}

/* Moving spotlights, like club lights sweeping the room */
.spotlight {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.spotlight-1 {
  width: 60vmax;
  height: 60vmax;
  top: -20vmax;
  left: -15vmax;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: drift1 22s ease-in-out infinite alternate;
}

.spotlight-2 {
  width: 50vmax;
  height: 50vmax;
  bottom: -18vmax;
  right: -12vmax;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  animation: drift2 26s ease-in-out infinite alternate;
}

.spotlight-3 {
  width: 40vmax;
  height: 40vmax;
  top: 30%;
  right: 20%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.18;
  animation: drift3 30s ease-in-out infinite alternate;
}

@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10vw, 8vh) scale(1.15); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8vw, -10vh) scale(1.2); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(-6vw, 6vh) scale(1.1); }
}

/* Film grain / texture overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Particle canvas */
#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   Layout
   ============================================ */
.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(0.75rem, 2.5vh, 1.5rem) 1.25rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 760px;
}

/* ============================================
   Logo / Brand
   ============================================ */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: clamp(110px, 22vmin, 180px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(243, 207, 99, 0.25));
}

@keyframes shine {
  to { background-position: 200% center; }
}

.brand-tagline {
  margin-top: clamp(0.4rem, 1.5vh, 0.9rem);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 240, 191, 0.65);
  font-weight: 300;
}

/* ============================================
   Divider
   ============================================ */
.divider {
  width: 100%;
  max-width: 220px;
  margin: clamp(0.7rem, 2.5vh, 1.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider span {
  display: block;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: draw 1.6s ease forwards 0.4s;
  position: relative;
}

.divider span::after {
  content: "\2726";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.9rem;
  background: var(--black);
  padding: 0 0.6rem;
}

@keyframes draw {
  to { width: 100%; }
}

/* ============================================
   Status / Title
   ============================================ */
.status {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 4.5vmin, 2.1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.shimmer {
  background: linear-gradient(100deg, var(--gold-deep) 20%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-deep) 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine 4s linear infinite;
}

/* ============================================
   Description
   ============================================ */
.description {
  margin-top: clamp(0.5rem, 1.8vh, 1rem);
  max-width: 520px;
  font-size: clamp(0.8rem, 2.2vmin, 0.95rem);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(253, 240, 191, 0.78);
}

/* ============================================
   Cocktail animation
   ============================================ */
.cocktail-scene {
  margin-top: clamp(0.4rem, 1.8vh, 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cocktail-svg {
  width: clamp(90px, 16vh, 160px);
  max-width: 40vw;
  filter: drop-shadow(0 14px 32px rgba(243, 207, 99, 0.15));
  overflow: visible;
}

.cocktail-caption {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 240, 191, 0.55);
  font-weight: 300;
}

/* Shaker gently tilts as if pouring */
.shaker {
  transform-origin: 191px 22px;
  animation: shakerTilt 5s ease-in-out infinite;
}

@keyframes shakerTilt {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(4deg); }
}

/* Pour stream flows and fades in sync with the shaker tilt */
.pour-stream {
  stroke-dasharray: 6 4;
  animation: pourFlow 0.6s linear infinite, pourFade 5s ease-in-out infinite;
}

@keyframes pourFlow {
  to { stroke-dashoffset: -10; }
}

@keyframes pourFade {
  0%, 38%   { opacity: 0; }
  45%, 90%  { opacity: 1; }
  97%, 100% { opacity: 0; }
}

/* Ripple where the liquid lands */
.ripple {
  opacity: 0;
  animation: rippleExpand 5s ease-out infinite;
}

@keyframes rippleExpand {
  0%, 80% { opacity: 0; rx: 4px; ry: 2px; }
  85%     { opacity: 0.8; }
  100%    { opacity: 0; rx: 22px; ry: 7px; }
}

/* Liquid fills the glass on load, then settles into a gentle wave */
.liquid-group {
  transform-origin: 120px 160px;
  transform: scaleY(0);
  animation: fillGlass 2.2s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

@keyframes fillGlass {
  to { transform: scaleY(1); }
}

.liquid {
  animation: liquidWave 4s ease-in-out 3.2s infinite;
}

@keyframes liquidWave {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* Bubbles rise through the drink */
.bubble {
  opacity: 0;
  animation: bubbleRise 3s ease-in infinite;
}

.bubble.b1 { animation-delay: 1.6s; }
.bubble.b2 { animation-delay: 2.3s; }
.bubble.b3 { animation-delay: 2.9s; }
.bubble.b4 { animation-delay: 3.5s; }

@keyframes bubbleRise {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.35; }
  100% { transform: translateY(-70px); opacity: 0; }
}

/* Garnish sways gently on its pick */
.garnish {
  transform-origin: 100px 44px;
  animation: garnishSwing 5s ease-in-out infinite;
}

@keyframes garnishSwing {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(3deg); }
}

/* Sparkles twinkle around the glass */
.sparkle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 3s ease-in-out infinite;
}

.sparkle.s1 { animation-delay: 0s; }
.sparkle.s2 { animation-delay: 1s; }
.sparkle.s3 { animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ============================================
   Contact info
   ============================================ */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: clamp(0.6rem, 2vh, 1.2rem);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  background: var(--black-card);
  transition: all 0.3s ease;
}

.contact-item i {
  color: var(--red);
  transition: color 0.3s ease;
}

.contact-item.hours i {
  color: var(--gold);
}

.contact-item:hover {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 0 24px rgba(243, 207, 99, 0.35);
}

.contact-item:hover i {
  color: var(--black);
}

/* ============================================
   Socials
   ============================================ */
.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: clamp(0.5rem, 1.5vh, 1rem);
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s ease;
}

.socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--red));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: -1;
}

.socials a:hover {
  color: var(--black);
  border-color: transparent;
  transform: translateY(-4px);
}

.socials a:hover::before {
  transform: scaleY(1);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  margin-top: clamp(0.6rem, 2vh, 1.2rem);
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(253, 240, 191, 0.35);
  font-weight: 300;
}

/* ============================================
   Entrance animations
   ============================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-anim="1"] { animation-delay: 0.1s; }
[data-anim="2"] { animation-delay: 0.35s; }
[data-anim="3"] { animation-delay: 0.5s; }
[data-anim="4"] { animation-delay: 0.65s; }
[data-anim="5"] { animation-delay: 0.8s; }
[data-anim="6"] { animation-delay: 0.95s; }
[data-anim="7"] { animation-delay: 1.1s; }
[data-anim="8"] { animation-delay: 1.25s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 480px) {
  .notify-form {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 0.9rem;
  }

  .notify-form input {
    width: 100%;
    order: 1;
  }

  .notify-form button {
    order: 2;
    width: 100%;
  }

  .notify-form i {
    order: 0;
  }
}
