@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;800&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #050505;
  color: white;
  font-family: 'Outfit', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Cinematic Grain and Vignette */
body::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
  opacity: 0.08;
  pointer-events: none;
  z-index: 10;
}
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.85) 100%);
  z-index: 9;
  pointer-events: none;
}

.center-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 15;
}

.main-title {
  font-size: 5rem;
  letter-spacing: 0px; 
  margin: 0;
  margin-top: 80px; 
  font-weight: 800;
  text-transform: uppercase;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9));
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}



.main-title span {
  position: relative;
  color: transparent;
  /* Thin glass wall reflection */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  display: inline-block;
}

/* Diagonal Front Glass Reflection Overlay */
.main-title span::before {
  content: attr(data-char);
  position: absolute;
  top: 0; left: 0;
  color: transparent;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 40%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  z-index: 3;
}

/* Authentic Amber Whiskey with Liquid Wave Physics & Foam Highlight */
.liq-amber {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" preserveAspectRatio="none"><path d="M0,150 C75,120 75,180 150,150 C225,120 225,180 300,150 L300,300 L0,300 Z" fill="%238a5a19" opacity="0.8"/><path d="M0,160 C75,190 75,130 150,160 C225,190 225,130 300,160 L300,300 L0,300 Z" fill="%23d68e22"/><path d="M0,160 C75,190 75,130 150,160 C225,190 225,130 300,160" fill="none" stroke="%23ffeab3" stroke-width="4" opacity="0.9"/></svg>') repeat-x;
  background-size: 300px 200%;
  -webkit-background-clip: text;
  background-clip: text;
  /* Smooth ease-in-out fill progressing left-to-right based on span delay */
  animation: wave-motion 1.5s linear infinite, fill-up 8s ease-in-out infinite;
}



@keyframes wave-motion {
  from { background-position-x: 0px; }
  to { background-position-x: 300px; }
}

@keyframes fill-up {
  0%, 15% { background-position-y: 0%; } /* Empty */
  40%, 85% { background-position-y: 100%; } /* Full */
  100% { background-position-y: 0%; } /* Drains */
}

.subtitle {
  color: #c4c4c4;
  font-size: 1.05rem;
  letter-spacing: 4px;
  margin: 1rem 0 3rem 0;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.btn-enter {
  position: relative;
  background: rgba(10, 6, 2, 0.4);
  color: #fff;
  border: 1px solid rgba(226, 181, 88, 0.5);
  text-decoration: none;
  font-weight: 600;
  padding: 1.2rem 3.5rem;
  border-radius: 50px; /* Pill-shaped capsule */
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.8), 0 5px 15px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

/* The liquid fill */
.btn-enter::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #b8860b 0%, #E2B558 100%);
  border-radius: 0 50px 50px 0; /* Creates the curved wave edge */
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* The sweep shine */
.btn-enter::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: none;
  z-index: 1;
}

.btn-enter span {
  position: relative;
  z-index: 2; /* Keeps text above liquid */
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.btn-enter i {
  font-size: 1.3rem;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover States */
.btn-enter:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.8), 0 15px 30px rgba(226, 181, 88, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-enter:hover::before {
  width: 100%;
}

.btn-enter:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.btn-enter:hover span {
  color: #000;
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
  font-weight: 800;
}

.btn-enter:hover i {
  opacity: 1;
  transform: rotate(-15deg);
}

.subtitle {
  color: #777;
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}

.btn-enter {
  background-color: #E2B558; /* Golden yellow */
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(226, 181, 88, 0.2);
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 181, 88, 0.4);
  background-color: #f1c363;
}

.footer-pill {
  position: absolute;
  bottom: 40px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-pill:hover {
  background-color: #222;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.footer-pill i {
  color: #E1306C; /* Instagram pink/red */
  font-size: 1.1rem;
}

.footer-pill span {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-pill:hover span {
  color: #fff;
}
