body {
  margin: 0;
  background: #000;
  color: #e9c68b;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;

  /* Background image */
  background: url('../assets/bar-full-cropped.jpg') center/cover no-repeat #000;
  position: relative;
  overflow: hidden;
}

/* Overlay for readability */
.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}

.logo,
.tagline,
.btn {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease both;
}

/* Stagger the animations */
.logo   { animation-delay: .2s; }
.tagline{ animation-delay: .5s; }
.btn    { animation-delay: .8s; }

.logo {
  max-width: 320px;
  width: 60%;
  height: auto;

  /* Soft golden glow */
  filter: drop-shadow(0 0 8px rgba(233,198,139,0.6))
          drop-shadow(0 0 16px rgba(233,198,139,0.3));
}

.tagline {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #e9c68b;

  /* Subtle golden glow */
  text-shadow: 0 0 8px rgba(233,198,139,0.6),
               0 0 14px rgba(233,198,139,0.4);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  margin-top: 1rem;
  border: 2px solid #e9c68b;
  border-radius: 999px;
  color: #e9c68b;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;

  /* Glow + translucent background */
  background: rgba(0,0,0,0.35);
  box-shadow: 0 0 12px rgba(233,198,139,0.4);
}

/* Hover: glow + one-time bounce */
.btn:hover {
  background: #e9c68b;
  color: #000;
  box-shadow: 0 0 18px rgba(233,198,139,0.8);
  animation: bounce 0.6s ease forwards;
}

/* Fade-in + slide-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bounce effect */
@keyframes bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.08); }
  60%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
