/*
Theme Name: Build Momentum Child
Template: convertify-theme
Description: Child theme for Build Momentum SaaS landing page
Author: Build Momentum
Version: 1.0.0
Text Domain: build-momentum-child
*/

/* Build Momentum Brand Colors */
:root {
  --bm-primary: #4f46e5;
  --bm-primary-hover: #4338ca;
  --bm-secondary: #6366f1;
  --bm-accent: #10b981;
  --bm-text-dark: #1f2937;
  --bm-text-light: #6b7280;
  --bm-bg-light: #f9fafb;
  --bm-bg-card: #ffffff;
  --bm-border: #e5e7eb;
}

/* Hero Section */
.bm-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f9fafb 100%);
  padding: 80px 20px;
  text-align: center;
}

.bm-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bm-text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.bm-hero .highlight {
  background: linear-gradient(135deg, var(--bm-primary), var(--bm-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.bm-btn-primary {
  background: var(--bm-primary);
  color: white !important;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 10px;
  transition: all 0.3s ease;
}

.bm-btn-primary:hover {
  background: var(--bm-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
  color: white !important;
}

.bm-btn-secondary {
  background: white;
  color: var(--bm-primary) !important;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 10px;
  border: 2px solid var(--bm-border);
  transition: all 0.3s ease;
}

.bm-btn-secondary:hover {
  border-color: var(--bm-primary);
  color: var(--bm-primary) !important;
}

/* Section Layouts */
.bm-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bm-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Pricing Cards */
.bm-pricing-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
  overflow: visible; /* Allow badge to show outside card */
}

.bm-pricing-card.featured {
  border: 3px solid var(--bm-primary);
  transform: scale(1.05);
}

.bm-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bm-primary);
  margin: 20px 0;
}

.bm-pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bm-accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Footer */
.bm-footer {
  background: #1f2937;
  color: white;
  padding: 60px 20px 30px;
}

.bm-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.bm-footer a:hover {
  color: white;
}

/* Smooth Animations */
a[href*='app.getbuildmomentum.com']:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.3) !important;
}

.bm-btn-primary:active {
  transform: translateY(0) scale(0.98);
}

/* Gradient text animations */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.highlight {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

/* Allow badges to show on pricing cards */
.bm-card.bm-pricing-card {
  overflow: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bm-hero h1 {
    font-size: 2rem;
  }

  .bm-grid {
    grid-template-columns: 1fr;
  }

  .bm-pricing-card.featured {
    transform: scale(1);
  }

  .bm-btn-primary,
  .bm-btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bm-hero h1 {
    font-size: 1.75rem;
  }

  .bm-price {
    font-size: 2.5rem;
  }
}
