/* =========================================
   BSS VILLA – LUXURY BUTTON SYSTEM
   ========================================= */

/* BASE BUTTON */
.btn-gold,
.btn-outline,
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------- GOLD BUTTON ---------------- */
.btn-gold {
  background: #c9a24d;
  color: #000;
  border: 1px solid #c9a24d;
  box-shadow: 0 0 0 rgba(201, 162, 77, 0);
}

/* Hover: glow + lift */
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(201, 162, 77, 0.45),
    0 0 40px rgba(201, 162, 77, 0.25);
}

/* Shine effect */
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-20deg);
}

/* Animate shine on hover */
.btn-gold:hover::after {
  left: 125%;
  transition: left 0.75s ease;
}

/* ---------------- OUTLINE BUTTON ---------------- */
.btn-outline {
  background: transparent;
  color: #c9a24d;
  border: 1px solid #c9a24d;
}

/* Hover: fill + glow */
.btn-outline:hover {
  background: #c9a24d;
  color: #000;
  transform: translateY(-3px);
  box-shadow:
    0 0 18px rgba(201, 162, 77, 0.35),
    0 0 35px rgba(201, 162, 77, 0.2);
}

/* ---------------- NAVBAR BUTTON ---------------- */
.nav-btn {
  border: 1px solid #c9a24d;
  color: #c9a24d;
  padding: 9px 20px;
  font-size: 12px;
}

/* Hover: subtle glow only */
.nav-btn:hover {
  background: #c9a24d;
  color: #000;
  box-shadow: 0 0 15px rgba(201, 162, 77, 0.4);
}

/* ---------------- CLICK FEEDBACK ---------------- */
.btn-gold:active,
.btn-outline:active,
.nav-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
