/* overview.css – FitFuel Digital Plans Overview */

:root {
  --primary-color: #2D6A4F;
  --accent-color: #6A8161;
  --light-bg: #FFF0CC;
  --highlight-bg: #E8F5E9;
  --btn-bg: #2D6A4F;
  --btn-hover: #52B788;
  --text-color: #333333;
  --bg-color: #FDFDFD;
  --font-family: 'Poppins', sans-serif;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-family);
  color: var(--text-color);
  background: var(--light-bg);
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.site-header {
  background: var(--bg-color);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}
.main-nav a {
  margin-left: 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}
.btn-nav {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 1.5rem;
}

/* Hero */
.hero {
  background: var(--highlight-bg);
  text-align: center;
  padding: 3rem 1rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.125rem;
}

/* Why FitFuel */
.why-fitfuel h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature {
  max-width: 250px;
  text-align: center;
}
.feature i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--primary-color);
}
.feature h3 {
  margin-bottom: 0.5rem;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
}
.plan-card {
  background: var(--bg-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.plan-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.plan-card h3 {
  margin: 1rem;
  color: var(--primary-color);
}
.plan-card p {
  flex-grow: 1;
  margin: 0 1rem 1rem;
}
.btn-primary {
  display: inline-block;
  background: var(--btn-bg);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin: 1rem;
  text-align: center;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: var(--btn-hover);
}

/* How It Works */
.how-it-works {
  text-align: center;
  margin: 4rem 0 2rem;
}
.how-it-works h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  max-width: 180px;
}
.step i {
  font-size: 2rem;
  color: var(--accent-color);
}
.step p {
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: var(--highlight-bg);
  padding: 3rem 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.testimonials h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.testimonial-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.testimonial {
  min-width: 250px;
  background: var(--bg-color);
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.testimonial p {
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

/* Consultation CTA */
.consult-cta {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-color);
  border-radius: 8px;
  margin-bottom: 2rem;
}
.consult-cta h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.btn-secondary {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background: var(--btn-bg);
}

/* Footer */
.site-footer {
  background: var(--bg-color);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
}
.site-footer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .features-grid, .steps {
    flex-direction: column;
    align-items: center;
  }
}