/* ============================================================
   LEMON TREE RESTAURANT — css/services.css
   Styles for services.html only.
   ============================================================ */

/* Service cards grid — 2 columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: #fff;
  border: 2px solid var(--lemon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Service photo — fixed height, covers any image */
.service-card-img {
  height: 200px;
}

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Feature list with checkmark */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Checkmark image */
.service-feature-check {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  /* Green tint */
  /* filter: invert(28%) sepia(68%) saturate(500%) hue-rotate(90deg); */
}

/* CTA band at bottom of services page */
.services-cta {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.services-cta h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--lemon);
  margin-bottom: 10px;
}

.services-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.services-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 180px; }
  .services-cta { padding: 36px 20px; }
}
