/* 
 * Natural Building Fitness - Premium Theme Stylesheet
 * Backed by ISSA Certified Science & Organic Weight Loss Nutrition
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Premium Palette Tokens */
  --color-herbal-dark: #122416;
  /* HSL 145, 30%, 15% - Primary Dark Green */
  --color-herbal-medium: #1b3822;
  /* Medium Dark Green */
  --color-herbal-accent: #2e6f40;
  /* Signature organic green */
  --color-herbal-light: #52a167;
  /* Bright botanical accent green */
  --color-canvas-cream: #faf9f5;
  /* Base cream canvas */
  --color-canvas-white: #ffffff;
  /* Pure white for highlights */
  --color-charcoal-black: #111111;
  /* Clean contrast text */
  --color-muted-grey: #666666;
  /* Subtle body descriptors */

  --font-serif: 'Outfit', system-ui, sans-serif;
  /* Rounded Premium Headers */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-canvas-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-herbal-dark);
  border: 2px solid var(--color-canvas-cream);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-herbal-accent);
}

/* Base Body Styles */
body {
  font-family: var(--font-sans);
  background-color: var(--color-canvas-cream);
  color: var(--color-charcoal-black);
  overflow-x: hidden;
}

/* Custom Font classes */
.font-serif-premium {
  font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

.font-sans-premium {
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif !important;
}

/* Lenis Smooth Scroll Recommended Configs */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Premium Typography Utilities */
.heading-gradient {
  background: linear-gradient(135deg, var(--color-herbal-dark) 20%, var(--color-herbal-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.herbal-gradient-bg {
  background: linear-gradient(135deg, var(--color-herbal-dark) 0%, var(--color-herbal-medium) 100%);
}

.cream-card-gradient {
  background: linear-gradient(180deg, var(--color-canvas-white) 0%, rgba(250, 249, 245, 0.8) 100%);
}

/* Glassmorphism Classes */
.glass-header {
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 36, 22, 0.05);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(18, 36, 22, 0.04);
}

.glass-card-dark {
  background: rgba(18, 36, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Floating Animation Elements */
.float-element {
  animation: float 6s ease-in-out infinite;
}

.float-element-delayed {
  animation: float 8s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Premium Button Glows & Effects */
.btn-premium-glow {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px 0 rgba(46, 111, 64, 0.15);
}

.btn-premium-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(46, 111, 64, 0.3);
}

.btn-premium-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  box-shadow: 0 0 12px 4px rgba(82, 161, 103, 0.4);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-premium-glow:active {
  transform: translateY(1px);
}

/* GSAP Pre-animation Opacity Control (Prevents Flash of Unstyled Content) */
.gsap-reveal {
  opacity: 0;
}

/* Video Modal Animation Styles */
.modal-transition {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Custom testimonial slider CSS transitions */
.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Premium Gold Badge & Gold Glowing Styles */
.premium-gold-badge {
  background: rgba(28, 18, 8, 0.8) !important; /* Premium dark gold-brown coffee glass */
  border: 1.5px solid rgba(245, 158, 11, 0.55) !important; /* Gold border */
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2), inset 0 0 10px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.premium-gold-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3), inset 0 0 12px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.7) !important;
}

.gold-glow-text {
  color: #ffe494 !important; /* High brightness warm gold */
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.5), 0 0 15px rgba(245, 158, 11, 0.2);
}

.gold-glow-icon {
  color: #fbbf24 !important;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.65));
}

/* Premium Solid Metallic Gold Navbar Button */
.navbar-gold-btn {
  background: linear-gradient(135deg, #e5ba47 0%, #aa7c11 100%) !important; /* Highly radiant solid gold-bronze metallic gradient */
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #122416 !important; /* Deep forest green text for rich high contrast */
  font-weight: 900 !important;
  box-shadow: 0 4px 12px rgba(170, 124, 17, 0.3), 0 0 8px rgba(170, 124, 17, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar-gold-btn:hover {
  transform: translateY(-1.5px) scale(1.03) !important;
  background: linear-gradient(135deg, #fff099 0%, #e5ba47 100%) !important; /* Ultra-bright gold glow on hover */
  box-shadow: 0 6px 18px rgba(170, 124, 17, 0.55), 0 0 12px rgba(170, 124, 17, 0.3);
  color: #122416 !important;
}

.navbar-gold-btn i {
  color: #122416 !important; /* Solid dark green icon */
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.4)) !important;
}

/* Premium Neon & Color Motion Styles for Wall of Fame */
.neon-pulse-green {
  animation: neonGreenPulse 1.8s infinite alternate;
}
.neon-pulse-gold {
  animation: neonGoldPulse 1.8s infinite alternate;
}

@keyframes neonGreenPulse {
  0% {
    box-shadow: 0 0 6px rgba(82, 161, 103, 0.3), inset 0 0 4px rgba(82, 161, 103, 0.15);
    border-color: rgba(82, 161, 103, 0.4) !important;
  }
  100% {
    box-shadow: 0 0 16px rgba(82, 161, 103, 0.7), inset 0 0 8px rgba(82, 161, 103, 0.3);
    border-color: rgba(82, 161, 103, 0.9) !important;
  }
}

@keyframes neonGoldPulse {
  0% {
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.3), inset 0 0 4px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4) !important;
  }
  100% {
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.7), inset 0 0 8px rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.9) !important;
  }
}

.neon-text-green {
  color: #52a167 !important;
  text-shadow: 0 0 6px rgba(82, 161, 103, 0.5), 0 0 12px rgba(82, 161, 103, 0.25);
}

.neon-text-gold {
  color: #fbbf24 !important;
  text-shadow: 0 0 6px rgba(245, 158, 11, 0.6), 0 0 12px rgba(245, 158, 11, 0.3);
}

/* Color Shifting Gradient Motion Border for Portfolio Photos */
.gradient-motion-border {
  position: relative;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(45deg, #1b3822, #2e6f40, #52a167, #fbbf24, #aa7c11, #1b3822);
  background-size: 300% 300%;
  animation: gradientShift 6s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(18, 36, 22, 0.15);
  transition: transform 0.4s ease;
}

.gradient-motion-border:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 20px 45px rgba(46, 111, 64, 0.25), 0 0 25px rgba(245, 158, 11, 0.2);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================================
   REVIEW MARQUEE — Infinite auto-scroll quote cards
   ============================================================ */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-card {
  /* min-height so all cards are same size for clean scroll */
  min-height: 220px;
}

/* ============================================================
   AWARD ACHIEVEMENT BUTTON — Wall of Fame CTA
   ============================================================ */
.award-btn-wrap {
  position: relative;
  display: inline-block;
}

/* Subtle soft glow behind */
.award-btn-wrap::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 9999px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.35) 0%, transparent 70%);
  animation: awardGlowPulse 2s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes awardGlowPulse {
  from { opacity: 0.4; transform: scale(0.95); }
  to   { opacity: 0.9; transform: scale(1.05); }
}

.award-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1c1205 0%, #2d1e08 40%, #1a1004 100%);
  border: 2px solid rgba(245,158,11,0.7);
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.15),
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  overflow: hidden;
}

/* Shine sweep on hover */
.award-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.award-btn:hover::before {
  left: 130%;
}

.award-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.3),
    0 14px 44px rgba(0,0,0,0.55),
    0 0 32px rgba(245,158,11,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.award-btn-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, #fbbf24 0%, #aa7c11 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(245,158,11,0.6), 0 0 28px rgba(245,158,11,0.2);
  flex-shrink: 0;
  animation: iconPulse 2.2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
  from { box-shadow: 0 0 10px rgba(245,158,11,0.55), 0 0 20px rgba(245,158,11,0.15); }
  to   { box-shadow: 0 0 20px rgba(245,158,11,0.85), 0 0 40px rgba(245,158,11,0.35); }
}

.award-btn-icon-wrap i {
  font-size: 26px;
  color: #1a1004;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.3));
}

.award-btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.award-btn-eyebrow {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fbbf24;
  text-shadow: 0 0 8px rgba(245,158,11,0.7);
}

.award-btn-label {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe494;
  text-shadow: 0 0 10px rgba(245,158,11,0.5), 0 0 20px rgba(245,158,11,0.2);
  white-space: nowrap;
}

.award-btn-sub {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,228,148,0.6);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.award-btn-arrow {
  font-size: 20px;
  color: #fbbf24;
  margin-left: 4px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(245,158,11,0.6));
}

.award-btn:hover .award-btn-arrow {
  transform: translateX(5px);
}