/* css/style.css */
html { scroll-behavior: smooth; }
body { background-color: #0a0a0a; color: #f3f3f3; overflow-x: hidden; }

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Menu Card Hover Effect - Glassmorphism */
.glass-card {
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(191, 149, 63, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(191, 149, 63, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px -10px rgba(191, 149, 63, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #bf953f; }

.hide-scroll::-webkit-scrollbar { display: none; }
.hide-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* Navigation Scroll Effect */
.nav-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(191, 149, 63, 0.2);
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Parallax Background */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

/* Smooth Reveal Animation */
.reveal-img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-img.active {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Accordion Styling */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details[open] summary ~ * { animation: sweep .5s ease-in-out; }
@keyframes sweep {
  0% {opacity: 0; transform: translateY(-10px)}
  100% {opacity: 1; transform: translateY(0)}
}

/* ===== WhatsApp Floating + Popup ===== */
.wa-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #0a0a0a;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease;
}
.wa-fab:hover{ transform: translateY(-2px); filter: brightness(1.05); }

.wa-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  z-index: 70;
  display: none;
}
.wa-overlay.active{ display:block; }

.wa-modal{
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 80;
  width: min(420px, calc(100% - 36px));
  background: rgba(18,18,18,.92);
  border: 1px solid rgba(191,149,63,.25);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  overflow: hidden;
  display: none;
}
.wa-modal.active{ display:block; }

.wa-head{
  padding: 14px 16px;
  background: rgba(191,149,63,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wa-title{
  display:flex; gap:10px; align-items:center;
}
.wa-badge{
  width: 34px; height: 34px; border-radius: 10px;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  color:#0a0a0a;
}
.wa-body{ padding: 14px 16px; }
.wa-body label{ display:block; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:#bdbdbd; margin-bottom:6px; }
.wa-body input,.wa-body textarea{
  width:100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 10px 12px;
  color:#fff;
  outline:none;
}
.wa-body textarea{ min-height: 92px; resize: vertical; }

.wa-actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 12px;
}
.wa-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(191,149,63,.35);
  color: #fcf6ba;
  background: transparent;
  transition: .2s ease;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.wa-btn:hover{
  background: rgba(191,149,63,.18);
  border-color: rgba(191,149,63,.65);
}
.wa-primary{
  background: #bf953f;
  color: #0a0a0a;
  border-color: #bf953f;
}
.wa-primary:hover{ filter: brightness(1.05); }

.wa-close{
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}

@keyframes slowZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.18); }
}

.parallax-bg {
  animation: slowZoom 30s ease-in-out infinite alternate;
}