/* ===================================================
   ARABIAN GRILLED — PREMIUM SPACING, ANIMATIONS & ENHANCEMENTS
   Fixes: Excess whitespace | Menu card image labels | 3D/Float effects
=================================================== */

/* ==============================
   SECTION SPACING FIX
============================== */
.section {
  padding: 4.5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  margin-bottom: 0.25rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-divider {
  margin: 0.6rem 0 0;
}

.section-desc {
  margin-top: 0.75rem;
}

.specials.section,
.gallery.section,
.menu.section {
  padding: 4rem 0;
}

.reviews.section,
.cta.section {
  padding: 4.5rem 0;
}

.about.section {
  padding: 5rem 0;
}

.contact.section {
  padding: 5rem 0;
}

/* About grid tighter */
.about-grid {
  gap: 3rem;
}

.about-stats {
  margin-top: 1rem;
}

.reviews-grid {
  gap: 1.25rem;
}

.menu-grid {
  gap: 1.5rem;
}

.container {
  max-width: 1200px;
}

.footer {
  padding-top: 3.5rem;
}

.hero {
  margin-top: 0;
}

/* ==============================
   MENU CARD DISH LABEL ON IMAGE
============================== */
.menu-card-img {
  position: relative;
  overflow: hidden;
}

.menu-card-dish-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #f0d060;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 20px 12px 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  transform: translateY(0);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ==============================
   MENU CARD ORDER BUTTON
============================== */
.menu-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0a0a0a;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.menu-order-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(212,175,55,0.5);
}

/* ==============================
   3D FLOATING HERO TEXT EFFECT
============================== */
.hero-title {
  transform-style: preserve-3d;
  text-shadow:
    0 1px 0 #c0992c,
    0 2px 0 #b8882a,
    0 3px 0 #a87828,
    0 4px 0 #906820,
    0 5px 8px rgba(0,0,0,0.7),
    0 0 40px rgba(212,175,55,0.3);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    text-shadow:
      0 1px 0 #c0992c,
      0 2px 0 #b8882a,
      0 3px 0 #a87828,
      0 5px 8px rgba(0,0,0,0.7),
      0 0 40px rgba(212,175,55,0.3);
    transform: translateY(0px);
  }
  50% {
    text-shadow:
      0 2px 0 #c0992c,
      0 4px 0 #b8882a,
      0 6px 0 #a87828,
      0 10px 16px rgba(0,0,0,0.6),
      0 0 60px rgba(212,175,55,0.5);
    transform: translateY(-6px);
  }
}

/* ==============================
   HERO ARABIC 3D FLOAT
============================== */
.hero-arabic {
  animation: arabicFloat 5s ease-in-out infinite;
  display: inline-block;
}

@keyframes arabicFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}

/* ==============================
   SECTION TITLE SHIMMER
============================== */
.section-title {
  background: linear-gradient(
    90deg,
    #e8d9c0 0%,
    #e8d9c0 35%,
    #d4af37 50%,
    #f0d060 55%,
    #e8d9c0 65%,
    #e8d9c0 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

.section-title .gold {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #d4af37, #f0d060, #d4af37);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerText 2s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ==============================
   GALLERY ITEMS — ZOOM & GLOW
============================== */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.1);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 30px rgba(212,175,55,0.2), 0 8px 30px rgba(0,0,0,0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.8));
}

.gallery-overlay span {
  color: #f0e8d0;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ==============================
   FLIP CARD 3D ENHANCEMENT
============================== */
.flip-card {
  perspective: 1200px;
}

.flip-card-inner {
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-front img {
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-front img {
  transform: scale(1.06);
}

/* ==============================
   STAT CARDS FLOAT ANIMATION
============================== */
.stat-card:nth-child(1) { animation: statFloat 3s ease-in-out 0s infinite; }
.stat-card:nth-child(2) { animation: statFloat 3s ease-in-out 0.5s infinite; }
.stat-card:nth-child(3) { animation: statFloat 3s ease-in-out 1s infinite; }

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ==============================
   PROMO TICKER STYLING FIX
============================== */
.promo-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #1a1200, #0d0900, #1a1200);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 6px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.78rem;
  color: #d4af37;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================
   ABOUT IMAGE — GLOW BORDER
============================== */
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #d4af37, #e86c2c, #d4af37);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-img-frame:hover::before {
  opacity: 0.5;
}

/* ==============================
   REVIEW CARDS — HOVER GLOW
============================== */
.review-card {
  transition: all 0.4s ease;
  border: 1px solid rgba(212,175,55,0.1);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.08);
}

/* ==============================
   CONTACT CARDS — PULSE
============================== */
.contact-icon {
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(212,175,55,0.3)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(212,175,55,0.7)); }
}

/* ==============================
   CTA 3D ORB GLOW
============================== */
.orb-ring {
  border-color: rgba(212,175,55,0.4);
}

.orb-core {
  background: radial-gradient(circle, #d4af37 0%, #a87820 100%);
  box-shadow: 0 0 30px rgba(212,175,55,0.6), 0 0 60px rgba(212,175,55,0.3);
}

/* ==============================
   NAV LIVE BADGE PULSE
============================== */
.nav-live-badge {
  animation: liveBadgePulse 2s ease-in-out infinite;
}

@keyframes liveBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,200,100,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(37,200,100,0); }
}

/* ==============================
   FAB BUTTONS FLOAT
============================== */
.fab {
  animation: fabFloat 3s ease-in-out infinite;
}

.fab:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==============================
   SCROLL PROGRESS BAR
============================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #e86c2c, #f0d060);
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* ==============================
   MENU CARD ENHANCED
============================== */
.menu-card {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  will-change: transform;
}

.menu-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 0 25px rgba(212,175,55,0.12);
}

.menu-card-img img {
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

/* ==============================
   HERO BG — ACTUAL FOOD IMAGE
============================== */
.hero-bg {
  background-image: url('https://media-assets.swiggy.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,w_1600/r1h6soalxs7e2hia5ff4');
  background-size: cover;
  background-position: center;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .specials.section,
  .gallery.section,
  .menu.section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .hero-title { animation: none; }
  .stat-card { animation: none; }
}
