/* ── Refined CTA Button ── */
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.hero-cta a {
  text-decoration: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-family: var(--font-mono), monospace;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn:hover {
  color: #0d0d0d;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn .cta-lobster {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.cta-btn:hover .cta-lobster {
  transform: rotate(-10deg);
}

.cta-btn .cta-sparkle {
  display: none;
}

/* Fix: give hero-content bottom padding so centered content doesn't overlap scroll */
.hero-content {
  padding-bottom: 6rem !important;
}

@media (max-width: 480px) {
  .hero-cta {
    margin-top: 2rem;
  }
  .cta-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-content {
    padding-bottom: 5rem !important;
  }
}

/* ── Two CTA buttons side by side ── */
.hero-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta a {
  display: block;
}

.cta-btn--secondary {
  border-color: rgba(201, 162, 39, 0.45);
  color: rgba(201, 162, 39, 0.75);
}

.cta-btn--secondary:hover {
  border-color: var(--gold);
  color: #0d0d0d;
}

.cta-btn--secondary svg {
  transition: transform 0.25s ease;
}

.cta-btn--secondary:hover svg {
  transform: rotate(-5deg) scale(1.1);
}

@media (max-width: 520px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta a,
  .cta-btn,
  .cta-btn--secondary {
    width: 100%;
    justify-content: center;
  }
}
