/* ==========================================
   AURUM — Advanced Effects & 3D Interactions
   ========================================== */

/* ——— Hide system cursor on hover-capable devices ——— */
@media (hover: hover) {
  *, a, button, [role="button"], .btn, input, select { cursor: none !important; }
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.au-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: transform 0.15s var(--ease), opacity 0.3s, background 0.3s;
}

.au-cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 169, 110, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.35s var(--ease), opacity 0.3s;
}

body.cursor-hover .au-cursor {
  transform: translate(-50%, -50%) scale(1.6);
  background: var(--gold);
}

body.cursor-hover .au-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(201, 169, 110, 0.35);
}

body.cursor-active .au-cursor {
  transform: translate(-50%, -50%) scale(0.55);
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.au-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.7);
}

/* =============================================
   GOLD SHIMMER TEXT
   ============================================= */
@keyframes auShimmer {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}

.au-shimmer {
  background: linear-gradient(
    100deg,
    var(--gold-dark)  0%,
    var(--gold)       22%,
    #FFF8E7           45%,
    var(--gold-light) 55%,
    var(--gold)       78%,
    var(--gold-dark)  100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: auShimmer 4.5s linear infinite;
  display: inline;
}

/* =============================================
   AMBIENT ORBS IN HERO
   ============================================= */
.au-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0;
  pointer-events: none;
  animation:
    auOrbIn  1.8s ease forwards,
    auOrbFloat var(--orb-dur, 9s) ease-in-out infinite alternate;
}

@keyframes auOrbIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: var(--orb-opacity, 0.12); transform: scale(1); }
}

@keyframes auOrbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(var(--orb-tx, 28px), var(--orb-ty, -22px)) scale(1.1); }
}

/* =============================================
   3D DISH CARD TILT
   ============================================= */
.dish-card-wrap {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Shine sweep on card image hover */
.dish-card-img {
  overflow: hidden;
  position: relative;
}

.dish-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent  20%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent  80%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.dish-card-wrap:hover .dish-card-img::after {
  transform: translateX(120%);
}

/* Stagger text on card hover */
.dish-card-body .dish-card-category,
.dish-card-body .dish-card-title,
.dish-card-body .dish-card-desc {
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.dish-card-wrap:hover .dish-card-category {
  transform: translateX(5px);
  color: var(--gold);
}

.dish-card-wrap:hover .dish-card-title {
  transform: translateX(5px);
  transition-delay: 0.05s;
}

.dish-card-wrap:hover .dish-card-desc {
  transform: translateX(5px);
  transition-delay: 0.1s;
}

/* =============================================
   FEATURED DISH 3D
   ============================================= */
.featured-dish-img {
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-dish-img img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.featured-dish:hover .featured-dish-img img {
  transform: scale(1.06);
}

/* =============================================
   CATEGORY CARDS 3D HOVER
   ============================================= */
.cat-card {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.45s var(--ease) !important;
}

.cat-card:hover {
  transform: translateY(-10px) rotateX(6deg) rotateY(-3deg) scale(1.05) !important;
  box-shadow:
    0 22px 52px rgba(28, 25, 23, 0.18),
    0  0  28px rgba(201, 169, 110, 0.18) !important;
}

/* =============================================
   GALLERY STAGGER ENTRANCE
   ============================================= */
.gallery-item {
  transform: translateY(28px) scale(0.96);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.au-visible {
  transform: translateY(0) scale(1);
}

.gallery-item img {
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.gallery-item:hover img {
  transform: scale(1.14) !important;
}

.gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 9, 8, 0.88) 0%,
    rgba(10, 9, 8, 0.1)  55%,
    transparent          100%
  ) !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease) !important;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =============================================
   TESTIMONIAL CARDS
   ============================================= */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s var(--ease) !important;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow:
    0 24px 56px rgba(28, 25, 23, 0.14),
    0  0  36px rgba(201, 169, 110, 0.1) !important;
}

/* =============================================
   AWARD BADGES 3D POP
   ============================================= */
.award-badge {
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s var(--ease) !important;
}

.award-badge:hover {
  transform: scale(1.08) rotateZ(-3deg) !important;
  box-shadow: 0 6px 22px rgba(201, 169, 110, 0.38) !important;
}

/* =============================================
   BUTTON GLOW & MAGNETIC PLACEHOLDER
   ============================================= */
.btn-primary {
  transition: all var(--t) var(--ease), box-shadow 0.4s var(--ease) !important;
}

.btn-primary:hover {
  box-shadow:
    0 10px 36px rgba(201, 169, 110, 0.55),
    0  0   0   0 transparent !important;
  transform: translateY(-2px) !important;
}

/* =============================================
   BTN-ADD ROTATE 90° + GLOW
   ============================================= */
.btn-add {
  transition: background 0.25s var(--ease),
              transform  0.3s  cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s  var(--ease) !important;
}

.btn-add:hover {
  transform: scale(1.2) rotate(90deg) !important;
  background: var(--gold) !important;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.5) !important;
}

/* =============================================
   SOCIAL BUTTONS 3D
   ============================================= */
.social-btn {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.social-btn:hover {
  background: var(--gold) !important;
  color: white !important;
  transform: scale(1.22) rotate(10deg) translateY(-3px) !important;
}

/* =============================================
   CART BADGE POP
   ============================================= */
@keyframes auBadgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.7); }
  65%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}

.cart-badge.au-pop {
  animation: auBadgePop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   FLOATING PROMO CARD
   ============================================= */
@keyframes auPromoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.promo-float {
  animation: auPromoFloat 4.2s ease-in-out infinite;
}

/* =============================================
   HERO STATS GLOW ON HOVER
   ============================================= */
.hero-stats {
  cursor: default;
}

.hero-stats .hero-stat-value {
  transition: text-shadow 0.4s var(--ease);
}

.hero-stats:hover .hero-stat-value {
  text-shadow: 0 0 28px rgba(201, 169, 110, 0.65);
}

/* =============================================
   FOOTER LINK SLIDE UNDERLINE
   ============================================= */
.footer-link {
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.footer-link:hover::after {
  width: 100%;
}

/* =============================================
   DELIVERY BANNER INNER GLOW
   ============================================= */
.delivery-banner {
  transition: box-shadow 0.6s var(--ease);
}

.delivery-banner:hover {
  box-shadow:
    0 0 80px rgba(201, 169, 110, 0.06) inset,
    var(--shadow-xl);
}

/* =============================================
   HERO SCROLL INDICATOR ENHANCED
   ============================================= */
.hero-scroll-line {
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent
  ) !important;
  animation: auScrollLine 2.2s ease-in-out infinite;
}

@keyframes auScrollLine {
  0%   { transform: scaleY(1)    translateY(-20%); opacity: 0.3; }
  50%  { transform: scaleY(1.3)  translateY(10%);  opacity: 0.7; }
  100% { transform: scaleY(1)    translateY(-20%); opacity: 0.3; }
}
