/* =====================================================
   premium.css — GSAP Premium Enhancements
   Custom Cursor · Gradient orbs · Particle hero
   Animated gradient card hover · Magnetic CTA
   ===================================================== */

/* ── Safety: footer always visible ── */
footer .footer-brand,
footer .footer-col {
  opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════
   HERO VIDEO BACKGROUND
   ═══════════════════════════════════════════════════ */

/* Video layer sits ABOVE the image slider */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 3;
  overflow: hidden;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-video-wrap.fading-out { opacity: 0; pointer-events: none; }
.hero-video-wrap.hidden     { display: none; }

#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay on top of video — keeps text legible */
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(139,0,0,0.72) 0%,
    rgba(193,18,31,0.45) 50%,
    rgba(0,0,0,0.25) 100%
  );
}

/* Progress bar — thin line at bottom of hero showing video duration */
.hero-video-progress {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  height: 3px;
  background: rgba(255,255,255,0.12);
}
.hero-video-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red-dark, #8B0000), #FFD89B, var(--red-light, #E63946));
  background-size: 200%;
  animation: progressGlow 2s linear infinite alternate;
  transition: width 0.2s linear;
}
@keyframes progressGlow {
  from { background-position: 0%; filter: brightness(1); }
  to   { background-position: 100%; filter: brightness(1.3); }
}

/* Slide controls appear above video layer */
.hero-controls { z-index: 11 !important; }
.hero-content  { z-index: 11 !important; }
.hero-scroll   { z-index: 11 !important; }
#hero-particles { z-index: 4 !important; }
.hero-orb      { z-index: 4 !important; }
.hero-overlay  { z-index: 5 !important; }

/* Slider hidden behind video initially — revealed when video ends */
.hero-slider { opacity: 0; transition: opacity 1.2s ease; }
.hero-slider.visible { opacity: 1; }

/* Skip button */
#hero-video-skip {
  position: absolute; bottom: 24px; right: 28px; z-index: 12;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 99px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
#hero-video-skip:hover {
  background: rgba(255,255,255,0.22);
  color: white; transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════ */

/* Hide default cursor site-wide (desktop only) */
@media (hover: hover) and (pointer: fine) {
  *,
  *:hover {
    cursor: none !important;
  }
}

/* Cursor dot — snaps to mouse */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red, #C1121F);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease,
              background 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 0 10px rgba(193,18,31,0.6);
  will-change: transform;
}

/* Cursor ring — lags behind (GSAP handles movement) */
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(193,18,31,0.7);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.3s ease,
              background 0.3s ease,
              opacity 0.3s ease;
  will-change: transform;
  mix-blend-mode: normal;
}

/* ── Hover states ── */

/* On links & buttons */
body.cursor-hover #cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
body.cursor-hover #cursor-ring {
  width: 52px; height: 52px;
  border-color: rgba(193,18,31,0.9);
  background: rgba(193,18,31,0.08);
  backdrop-filter: blur(2px);
}

/* On cards */
body.cursor-card #cursor-dot {
  width: 8px; height: 8px;
  background: #FFD89B;
  box-shadow: 0 0 14px rgba(255,216,155,0.8);
}
body.cursor-card #cursor-ring {
  width: 64px; height: 64px;
  border-color: rgba(255,216,155,0.6);
  background: rgba(255,216,155,0.06);
}

/* On text */
body.cursor-text #cursor-dot {
  width: 4px; height: 28px;
  border-radius: 2px;
  background: var(--red, #C1121F);
}
body.cursor-text #cursor-ring {
  width: 44px; height: 44px;
  border-color: rgba(193,18,31,0.4);
  opacity: 0.5;
}

/* Clicking feedback */
body.cursor-click #cursor-dot {
  transform: translate(-50%, -50%) scale(0.6);
  background: #FFD89B;
}
body.cursor-click #cursor-ring {
  width: 60px; height: 60px;
  border-color: rgba(255,216,155,0.8);
  background: rgba(255,216,155,0.1);
}

/* Magnetic state (near a button) */
body.cursor-magnetic #cursor-ring {
  width: 70px; height: 70px;
  border-width: 1.5px;
  border-color: rgba(193,18,31,0.5);
  background: rgba(193,18,31,0.05);
}

/* Hero section — white themed cursor */
#hero .hero-content:hover ~ #cursor-dot,
.cursor-hero #cursor-dot {
  background: rgba(255,255,255,0.9);
}
.cursor-hero #cursor-ring {
  border-color: rgba(255,255,255,0.6);
}

/* Hide on mobile / touch */
@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ── OLD cursor glow (kept, hidden) ── */
#cursor-glow { display: none; }

/* ═══════════════════════════════════════════════════
   PRELOADER ORBS
   ═══════════════════════════════════════════════════ */
.pre-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: -1;
}
.pre-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,18,31,0.25), transparent 70%);
  top: -100px; right: -100px;
  animation: orbDrift 6s ease-in-out infinite alternate;
}
.pre-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,216,155,0.2), transparent 70%);
  bottom: -80px; left: -80px;
  animation: orbDrift 8s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

/* ═══════════════════════════════════════════════════
   HERO GRADIENT ORBS & PARTICLES
   ═══════════════════════════════════════════════════ */
#hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 2; filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(193,18,31,0.4), transparent 70%);
  top: -200px; right: -100px;
  animation: heroOrbPulse 8s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,216,155,0.25), transparent 70%);
  bottom: 50px; left: 20%;
  animation: heroOrbPulse 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroOrbPulse {
  from { transform: scale(1) translate(0, 0); opacity: 0.6; }
  to   { transform: scale(1.2) translate(30px, -20px); opacity: 1; }
}

/* ── Hero title lines ── */
.hero-title { display: flex; flex-direction: column; gap: 4px; }
.title-line { display: block; overflow: hidden; line-height: 1.15; }
.hero-em {
  font-style: italic; color: #FFD89B;
  background: linear-gradient(135deg, #FFD89B, #ff9a44, #FFD89B);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-em-block { margin-top: -4px; }

/* ── Glass outline button ── */
.btn-glass {
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  color: white !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.8) !important;
  transform: translateY(-3px) !important;
}

/* ── Magnetic Button ── */
.btn-magnetic {
  position: relative; display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.3s ease, background 0.3s ease !important;
}
.btn-magnetic::before {
  content: '';
  position: absolute; inset: -4px; border-radius: inherit;
  background: inherit; opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease, filter 0.4s ease;
  z-index: -1;
}
.btn-magnetic:hover::before { opacity: 0.6; filter: blur(16px); }

/* ── Section gradient orbs ── */
.section-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(100px);
}
.section-orb-red {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(193,18,31,0.08), transparent 70%);
  top: -100px; right: -100px;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
.section-orb-gold {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,216,155,0.15), transparent 70%);
  bottom: -120px; left: -120px;
  animation: orbDrift 14s ease-in-out infinite alternate-reverse;
}

/* ── Gradient Card Hover ── */
.gradient-card { position: relative; overflow: hidden; }
.card-gradient-bg {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none; z-index: 0;
  background: linear-gradient(135deg, #fff5e1, #ffe0e0);
}
.gradient-card > *:not(.card-gradient-bg) { position: relative; z-index: 1; }
.gradient-card:hover .card-gradient-bg { opacity: 1; }
.specialty-card.gradient-card:hover {
  box-shadow: 0 20px 60px rgba(193,18,31,0.18), 0 0 0 1.5px rgba(193,18,31,0.12);
}

/* ── CTA Mesh ── */
.cta-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,216,155,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,80,80,0.1) 0%, transparent 40%);
  animation: meshShift 8s ease-in-out infinite alternate;
}
@keyframes meshShift {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.05); }
}
.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(60px);
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,216,155,0.2), transparent 70%);
  top: -150px; left: 10%;
  animation: orbDrift 10s ease-in-out infinite alternate;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  bottom: -80px; right: 10%;
  animation: orbDrift 12s ease-in-out infinite alternate-reverse;
}
#cta > * { position: relative; z-index: 1; }

/* ── Stat counter ── */
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
  transition: all 0.3s ease;
}
.hero-stat .stat-num { color: var(--white); }
.cta-stat .stat-num { font-size: 2.2rem; color: #FFD89B; line-height: 1; }

/* ── Split heading ── */
.split-heading .word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.split-heading .word { display: inline-block; transform: translateY(110%); opacity: 0; }
.split-heading.animated .word { opacity: 1; }

/* ── About image overlay on hover ── */
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(193,18,31,0) 0%, rgba(193,18,31,0) 60%, rgba(193,18,31,0.25) 100%);
  opacity: 0; transition: opacity 0.5s ease;
  border-radius: inherit; pointer-events: none;
}
.about-img-wrap:hover::after { opacity: 1; }

/* ── Offers animated gradient ── */
#offers {
  background: linear-gradient(135deg, #8B0000 0%, #C1121F 40%, #a01020 70%, #8B0000 100%);
  background-size: 300% 300%;
  animation: offerGradient 8s ease infinite;
}
@keyframes offerGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Testimonial hover ── */
.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(193,18,31,0.15);
}

/* ── Product card shimmer ── */
.product-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 0%, rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 60%, transparent 100%);
  background-size: 300% 300%; opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none; z-index: 10; border-radius: inherit;
}
.product-card:hover::after {
  opacity: 1; animation: shimmerMove 1.2s ease-in-out infinite;
}
@keyframes shimmerMove {
  0%   { background-position: 100% 0%; }
  100% { background-position: -100% 0%; }
}

/* ── Navbar underline glow ── */
.nav-links a.active::after, .nav-links a:hover::after {
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  height: 2px; box-shadow: 0 0 8px rgba(193,18,31,0.6);
}

/* ── YT card border hover ── */
.yt-card {
  border: 2px solid transparent; background-clip: padding-box;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
}
.yt-card:hover { border-color: rgba(255,0,0,0.4) !important; }

/* ── Reel card glow ── */
.custom-reel-card {
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease !important;
}
.custom-reel-card:hover {
  box-shadow: 0 20px 60px rgba(193,18,31,0.3), 0 0 0 1px rgba(193,18,31,0.2) !important;
}

/* ── Specialty link gradient ── */
.specialty-link {
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%;
  background-position: 100%;
  transition: background-position 0.4s ease, gap 0.3s ease !important;
}
.specialty-link:hover { background-position: 0%; }

/* ── Section label pulse ── */
.section-label { animation: none; transition: color 0.3s ease; }
.section-label::before { animation: labelLine 2s ease-in-out infinite alternate; }
@keyframes labelLine {
  from { width: 20px; background: var(--red-dark); }
  to   { width: 36px; background: var(--red-light); }
}

/* ── Footer: NO gradient border line ── */
footer::before { display: none; }

/* ── Open hours strip gradient ── */
#hours-strip {
  background: linear-gradient(90deg, #8B0000, #C1121F, #E63946, #C1121F, #8B0000) !important;
  background-size: 300%;
  animation: hoursGradient 6s linear infinite;
}
@keyframes hoursGradient {
  from { background-position: 0%; }
  to   { background-position: 300%; }
}

/* ── Scroll-down pulse ── */
.hero-scroll::after {
  content: ''; display: block; margin-top: 6px;
  width: 2px; height: 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  border-radius: 99px; animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.5; transform: scaleY(0.6); }
}

/* ── Responsive ── */
@media (hover: none) {
  #cursor-glow, #cursor-dot, #cursor-ring { display: none; }
}
