/* Falcon Parkway Fitness - Custom Styles */
/* Brand Colors: Red & Black */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Custom color variables */
:root {
  --falcon-black: #0a0a0a;
  --falcon-red: #dc2626;
  --falcon-red-dark: #b91c1c;
  --falcon-dark: #141414;
  --falcon-light: #f8fafc;
}

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.6) 100%);
}

/* Subtle hover lift for cards */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Red accent underline for headings */
.accent-underline {
  position: relative;
  display: inline-block;
}
.accent-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--falcon-red);
  border-radius: 2px;
}

/* Animated fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu animation */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open {
  max-height: 500px;
}

/* Pricing card highlight */
.pricing-popular {
  border: 2px solid var(--falcon-red);
  position: relative;
}
.pricing-popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--falcon-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Form input focus styles */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--falcon-red) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Button pulse animation for CTAs */
@keyframes subtle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}
.btn-pulse {
  animation: subtle-pulse 3s infinite;
}

/* Google Maps responsive container */
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
