/* Custom styles for Capital Fitness */
:root {
  --primary: #0f172a;
  --accent: #f97316;
  --accent-dark: #ea580c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background-color: #f97316;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #ea580c;
  transform: translateY(-1px);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f97316;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.mobile-menu.open {
  max-height: 400px;
}

/* Pricing highlight */
.pricing-popular {
  border: 2px solid #f97316;
  position: relative;
}

.pricing-popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

/* Form focus */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Footer */
footer a:hover {
  color: #f97316;
}
