/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Homepage Styles */

.hero-gradient {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  min-height: 100vh;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-block;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-block;
  border: 2px solid #2563eb;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #f0f9ff;
}

.step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-1 { background-color: #dbeafe; color: #2563eb; }
.step-2 { background-color: #dcfce7; color: #16a34a; }
.step-3 { background-color: #f3e8ff; color: #9333ea; }
.step-4 { background-color: #fed7aa; color: #ea580c; }

.emoji { font-size: 3rem; }

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Force sticky footer layout */
body {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
}

main {
  flex: 1 0 auto !important;
}

footer {
  flex-shrink: 0 !important;
}
