﻿/* Kimogains Fitness - High Energy Dark Mode Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Bebas Neue', cursive, sans-serif;
  --font-body: 'Outfit', sans-serif;

  --color-bg-dark: #0B0F17;
  --color-bg-alt: #070A0F;
  --color-card: #131924;
  --color-card-border: #1F2937;
  --color-card-hover: #1A2232;
  
  --color-lime: #CCFF00;
  --color-lime-glow: rgba(204, 255, 0, 0.35);
  --color-lime-dark: #A3E635;
  
  --color-text-main: #F8FAFC;
  --color-text-muted: #94A3B8;
  --color-text-dim: #64748B;

  --whatsapp-green: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  overflow-x: hidden;
}

/* Custom Electric Lime Dark Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #0B0F17;
}
::-webkit-scrollbar-thumb {
  background: #CCFF00;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #E2FF66;
}

/* Accessibility Focus Ring */
*:focus-visible {
  outline: 2px solid #CCFF00 !important;
  outline-offset: 3px !important;
}


/* Typography Overrides */
.font-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.font-body {
  font-family: var(--font-body);
}

/* Glowing Neon Elements */
.glow-lime {
  box-shadow: 0 0 25px var(--color-lime-glow);
}

.glow-lime-sm {
  box-shadow: 0 0 12px var(--color-lime-glow);
}

.glow-whatsapp {
  box-shadow: 0 0 20px var(--whatsapp-glow);
}

.text-glow-lime {
  text-shadow: 0 0 15px var(--color-lime-glow);
}

/* Gradient Texts & Borders */
.gradient-text-lime {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--color-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header Glassmorphism */
.nav-glass {
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animated Neon CTA Buttons */
.btn-lime {
  background-color: var(--color-lime);
  color: #000000;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-lime:hover {
  background-color: #D8FF33;
  box-shadow: 0 0 30px var(--color-lime-glow);
  transform: translateY(-2px);
}

.btn-lime:active {
  transform: translateY(0);
}

.btn-outline-lime {
  border: 2px solid var(--color-lime);
  color: var(--color-lime);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-lime:hover {
  background: rgba(204, 255, 0, 0.1);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  box-shadow: 0 0 25px var(--whatsapp-glow);
  transform: translateY(-2px);
}

/* Card Hover & Image Zoom Animations */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-effect:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 255, 0, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 20px rgba(204, 255, 0, 0.15);
}

.img-zoom-hover {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-effect:hover .img-zoom-hover {
  transform: scale(1.06);
}

/* Interactive Drag Before/After Slider */
.image-comparison-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.slider-before-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 10;
  border-right: 2px solid var(--color-lime);
  box-shadow: 2px 0 10px rgba(204, 255, 0, 0.5);
}

.slider-before-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background-color: var(--color-lime);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 0 15px var(--color-lime-glow);
  pointer-events: none;
}

/* Wizard Radio Selection Cards */
.radio-card-input:checked + .radio-card-content {
  border-color: var(--color-lime);
  background-color: rgba(204, 255, 0, 0.08);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.15);
}
.radio-card-input:checked + .radio-card-content .radio-card-icon {
  color: var(--color-lime);
}
.radio-card-input:checked + .radio-card-content .radio-card-badge {
  background-color: var(--color-lime);
  color: #000000;
}

/* BMR Calculator Range Inputs */
input[type="range"] {
  accent-color: var(--color-lime);
}

/* FAQ Accordion Styling */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-lime);
}

/* Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(204, 255, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
  }
}

.pulse-badge {
  animation: pulse-ring 2.5s infinite;
}

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

.animate-float {
  animation: bounce-subtle 3s ease-in-out infinite;
}

.tab-btn.active {
  background-color: var(--color-lime);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 0 15px var(--color-lime-glow);
}

/* Radio Card Interactive Selection Styling */
.radio-card-badge {
  background-color: rgba(31, 41, 55, 0.8);
  color: #94a3b8;
  border: 1px solid rgba(51, 65, 85, 0.8);
  transition: all 0.25s ease;
}

.radio-card-input:checked + .radio-card-content {
  border-color: #CCFF00 !important;
  background-color: rgba(204, 255, 0, 0.08) !important;
  box-shadow: 0 0 25px rgba(204, 255, 0, 0.15);
}

.radio-card-input:checked + .radio-card-content .radio-card-badge {
  background-color: #CCFF00 !important;
  color: #000000 !important;
  border-color: #CCFF00 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 12px rgba(204, 255, 0, 0.4);
}

.badge-selected {
  display: none;
}

.radio-card-input:checked + .radio-card-content .badge-unselected {
  display: none !important;
}

.radio-card-input:checked + .radio-card-content .badge-selected {
  display: inline-block !important;
}



/* ===========================
   FRANK CUTOUT IMAGE STYLES
   =========================== */

/* Hero Full-Height Cutout — Desktop Only */
.frank-cutout-hero {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 95%;
  max-height: 820px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  z-index: 5;
  pointer-events: none;
  /* Subtle lime-tinted drop shadow to blend with brand palette */
  filter: drop-shadow(-12px 0px 40px rgba(204, 255, 0, 0.18)) drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
  /* Fade bottom edge into background */
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 12%, black 100%);
  mask-image: linear-gradient(to top, transparent 0%, black 12%, black 100%);
  transition: filter 0.3s ease;
}

/* Semi-transparent Watermark Accent Behind Package Card */
.frank-watermark {
  position: absolute;
  bottom: -20px;
  right: -60px;
  height: 110%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  filter: drop-shadow(0 0 30px rgba(204, 255, 0, 0.1));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%),
                      linear-gradient(to left, transparent 0%, black 30%);
  mask-image: linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%),
              linear-gradient(to left, transparent 0%, black 30%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

/* About Section Frank Portrait */
.frank-about-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6)) drop-shadow(-4px 0 15px rgba(204, 255, 0, 0.12));
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
    line-height: 0.95;
  }
  .frank-cutout-hero {
    display: none; /* Hide hero cutout on mobile to avoid crowding */
  }
  .frank-watermark {
    display: none; /* Hide watermark on mobile */
  }
}

/* ===========================
   PRICING PACKAGES UI
   =========================== */

/* Large price number — Bebas Neue, glows on card hover */
.price-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #ffffff;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.card-hover-effect:hover .price-tag {
  color: #CCFF00;
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

/* Capacity / scarcity pill badge */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #CCFF00;
}

/* Package icon wrapper */
.pkg-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCFF00;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.card-hover-effect:hover .pkg-icon {
  background: rgba(204, 255, 0, 0.16);
}

/* Featured package card — lime ring treatment */
.pkg-card-featured {
  background: #0d1117;
  border: 2px solid #CCFF00;
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.08), 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Price unit label */
.price-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* Animated value underline on featured card */
.pkg-card-featured .price-tag {
  color: #CCFF00;
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
}

/* ===========================
   HERO SPOTLIGHT CARD STYLES
   =========================== */

.hero-spotlight-card {
  position: relative;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(204, 255, 0, 0.12), 0 20px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.2), 0 30px 60px rgba(0, 0, 0, 0.8);
}

.hero-spotlight-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-bottom: 2px solid rgba(204, 255, 0, 0.3);
}

.hero-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: scale 0.5s ease;
}

.hero-spotlight-card:hover .hero-spotlight-img {
  scale: 1.04;
}

.hero-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.25) 55%, transparent 100%);
}


