/* Ekkleiios Marketing Site Styles */

:root {
  --primary-color: #4f46e5;
  --secondary-color: #06b6d4;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p.lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.feature-card {
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-card {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
  transform: scale(1.05);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card .price-period {
  font-size: 1rem;
  color: #64748b;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 80px 0;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 40px 0 20px;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
}

