/* services.css — Services Overview Section */

.services-overview {
  background-color: var(--brand-cream);
  padding: 120px 0 140px;
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Section Header --- */
.services-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-intro-text {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  text-align: center;
  line-height: 1.7;
  margin-top: 10px;
}

/* Serving Style Banner (Buffet vs Plated) */

.serving-style-banner {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--brand-green);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 80px;
}

.serving-style-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 44px 48px;
}

.serving-style-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.serving-style-icon svg {
  width: 100%;
  height: 100%;
}

.serving-style-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--brand-white);
  margin-bottom: 10px;
}

.serving-style-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.65;
  font-weight: 300;
}

.serving-style-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 8px;
  position: relative;
}

.serving-style-divider::before,
.serving-style-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(50% - 20px);
  background: rgba(255, 255, 255, 0.15);
}

.serving-style-divider::before {
  top: 0;
}
.serving-style-divider::after {
  bottom: 0;
}

/* Services Full Grid (10 services) */

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Individual Service Tile --- */
.service-tile {
  background: var(--brand-white);
  border-radius: 28px;
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(18, 38, 32, 0.09);
}

.service-tile-featured {
  grid-column: 2 / 3;
  background: var(--brand-green);
}

.service-tile-featured .service-tile-title,
.service-tile-featured .service-tile-desc {
  color: var(--brand-white);
}

.service-tile-featured .service-tile-icon {
  color: rgba(255, 255, 255, 0.7);
}

.service-tile-featured .cta-button {
  background: var(--brand-white);
  color: var(--brand-green);
  align-self: flex-start;
}

.service-tile-featured .cta-button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon */
.service-tile-icon {
  width: 40px;
  height: 40px;
  color: var(--brand-green);
  margin-bottom: 24px;
  opacity: 0.75;
}

.service-tile-icon svg {
  width: 100%;
  height: 100%;
}

/* Title */
.service-tile-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--brand-green);
  margin-bottom: 14px;
  line-height: 1.2;
}

/* Description */
.service-tile-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

/* ============================================
   Mobile Responsiveness
   ============================================ */

@media (max-width: 992px) {
  .serving-style-banner {
    flex-direction: column;
  }

  .serving-style-divider {
    padding: 12px 0;
    flex-direction: row;
    height: auto;
  }

  .serving-style-divider::before,
  .serving-style-divider::after {
    top: 50%;
    left: unset;
    transform: translateY(-50%);
    width: calc(50% - 20px);
    height: 1px;
  }

  .serving-style-divider::before {
    left: 0;
  }
  .serving-style-divider::after {
    right: 0;
    left: unset;
  }

  .services-grid-full {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .service-tile-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .service-tile-featured {
    grid-column: 1 / -1;
  }

  .serving-style-card {
    padding: 32px 28px;
    gap: 18px;
  }
}
